API16

API16:JVersion/getLongVersion

From Joomla! Documentation

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