API16

API16:JVersion/getLongVersion

From Joomla! Documentation

Revision as of 14:37, 24 March 2017 by JoomlaWikiBot (talk | contribs) (clean up)

Description

Method to get the long version information.


{{subst: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;
}


{{subst:SeeAlso:JVersion/getLongVersion}}

Examples

<CodeExamplesForm />