API16:JVersion/getHelpVersion
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to get the help file version.
Description:JVersion/getHelpVersion
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 ''; } }
[Edit See Also] SeeAlso:JVersion/getHelpVersion
Examples
<CodeExamplesForm />
