JBrowser/getAgentString: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 29: | Line 29: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=getAgentString | category=getAgentString | ||
category=JBrowser | category=JBrowser | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 00:19, 25 March 2017
Description
Return the full browser agent string.
<! removed transcluded page call, red link never existed >
Syntax
getAgentString()
Returns
string The browser agent string.
Defined in
libraries/joomla/environment/browser.php
Importing
jimport( 'joomla.environment.browser' );
Source Body
function getAgentString() {
return $this->_agent;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples