API16

API16:JVersion/getLongVersion

From Joomla! Documentation

Revision as of 22:56, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Method to get the long version information. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JVersion/getLongVersion|Edit Descripton...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Method to get the long version information.

[Edit Descripton]

Template:Description:JVersion/getLongVersion

Syntax

getLongVersion()


Returns

string Long format version.

Defined in

libraries/joomla/version.php

Importing

jimport( 'joomla.version' );

Source Body

public function getLongVersion()
{
        return $this->PRODUCT .' '. $this->RELEASE .'.'. $this->DEV_LEVEL .' '
                . $this->DEV_STATUS
                .' [ '.$this->CODENAME .' ] '. $this->RELDATE .' '
                . $this->RELTIME .' '. $this->RELTZ;
}

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

Examples

<CodeExamplesForm />