API16

API16:JVersion/getUserAgent

From Joomla! Documentation

Revision as of 22:56, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Returns the user agent. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Returns the user agent.

[Edit Descripton]

Template:Description:JVersion/getUserAgent

Syntax

getUserAgent($component=null, $mask=false, $add_version=true)
Parameter Name Default Value Description
$component null Name of the component.
$mask false Mask as Mozilla/5.0 or not.
$add_version true Add version afterwards to component.

Returns

string User Agent.

Defined in

libraries/joomla/version.php

Importing

jimport( 'joomla.version' );

Source Body

public function getUserAgent($component = null, $mask = false, $add_version = true)
{
        if ($component === null) {
                $component = 'Framework';
        }

        if ($add_version) {
                $component .= '/'.$this->RELEASE;
        }

        // If masked pretend to look like Mozilla 5.0 but still identify ourselves.
        if ($mask) {
                return 'Mozilla/5.0 '. $this->PRODUCT .'/'. $this->RELEASE . '.'.$this->DEV_LEVEL . ($component ? ' '. $component : '');
        }
        else {
                return $this->PRODUCT .'/'. $this->RELEASE . '.'.$this->DEV_LEVEL . ($component ? ' '. $component : '');
        }
}

[Edit See Also] Template:SeeAlso:JVersion/getUserAgent

Examples

<CodeExamplesForm />