API16:JBrowser/ construct
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
Create a browser instance (constructor).
Description:JBrowser/ construct
Syntax
__construct($userAgent=null, $accept=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $userAgent | null | $userAgent The browser string to parse. |
| $accept | null | $accept The HTTP_ACCEPT settings to use. |
Defined in
libraries/joomla/environment/browser.php
Importing
jimport( 'joomla.environment.browser' );
Source Body
public function __construct($userAgent = null, $accept = null) { $this->match($userAgent, $accept); }
[Edit See Also] SeeAlso:JBrowser/ construct
Examples
<CodeExamplesForm />
