API15

JBrowser/getFeature: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Retrieve the current browser capability. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowi...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Retrieve the current browser capability.
Retrieve the current browser capability.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JBrowser/getFeature|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JBrowser/getFeature}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 39: Line 37:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JBrowser/getFeature|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JBrowser/getFeature}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getFeature
  category=getFeature
  category=JBrowser
  category=JBrowser
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Latest revision as of 00:19, 25 March 2017

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