JVersion/getLongVersion
From Joomla! Documentation
< API16:JVersion
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Method to get the long version information.
Syntax[edit]
getLongVersion()
Returns[edit]
string Long format version.
Defined in[edit]
libraries/joomla/version.php
Importing[edit]
jimport( 'joomla.version' );
Source Body[edit]
public function getLongVersion()
{
return $this->PRODUCT .' '. $this->RELEASE .'.'. $this->DEV_LEVEL .' '
. $this->DEV_STATUS
.' [ '.$this->CODENAME .' ] '. $this->RELDATE .' '
. $this->RELTIME .' '. $this->RELTZ;
}
Examples[edit]
Code Examples[edit]