API16:JVersion/getHelpVersion
From Joomla! Documentation
Description
Method to get the help file version.
Syntax
getHelpVersion()
Returns
string Version suffix for help files.
Defined in
libraries/joomla/version.php
Importing
jimport( 'joomla.version' );
Source Body
public function getHelpVersion()
{
if ($this->RELEASE > '1.0') {
return '.' . str_replace('.', '', $this->RELEASE);
} else {
return '';
}
}
Examples
Code Examples