API15:JBrowser/isBrowser
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Determine if the given browser is the same as the current.
Description:JBrowser/isBrowser
Syntax
isBrowser($browser)
| Parameter Name | Default Value | Description |
|---|---|---|
| $browser | $browser The browser to check. |
Returns
boolean Is the given browser the same as the current?
Defined in
libraries/joomla/environment/browser.php
Importing
jimport( 'joomla.environment.browser' );
Source Body
function isBrowser($browser) { return ($this->_browser === $browser); }
[Edit See Also] SeeAlso:JBrowser/isBrowser
Examples
<CodeExamplesForm />
