API16

API16:JVersion/getLongVersion

From Joomla! Documentation

Revision as of 02:17, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Method to get the long version information.



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;
}



Examples

Code Examples