API16

API16:JBrowser/getFeature

From Joomla! Documentation

Description

Retrieve the current browser capability.


<! removed transcluded page call, red link never existed >

Syntax

getFeature($feature)
Parameter Name Default Value Description
$feature $feature The capability to retrieve.

Returns

string The value of the requested capability.

Defined in

libraries/joomla/environment/browser.php

Importing

jimport( 'joomla.environment.browser' );

Source Body

public function getFeature($feature)
{
        return isset($this->_features[$feature])
                        ? $this->_features[$feature]
                        : null;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples