API15

API15:JBrowser/getFeature

From Joomla! Documentation

Revision as of 00:19, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

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


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

Examples

Code Examples