JVersion/getLongVersion: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Method to get the long version information.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JVersion/getLongVersion|Edit Descripton... |
m clean up |
||
| Line 2: | Line 2: | ||
Method to get the long version information. | Method to get the long version information. | ||
{{Description:JVersion/getLongVersion}} | |||
{{subst:Description:JVersion/getLongVersion}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 31: | Line 29: | ||
</source> | </source> | ||
{{subst:SeeAlso:JVersion/getLongVersion}} | |||
{{SeeAlso:JVersion/getLongVersion}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:37, 24 March 2017
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 />