API16

API16:JVersion/getShortVersion

From Joomla! Documentation

Revision as of 02:17, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Method to get the short version information.



Syntax

getShortVersion()


Returns

string Short version format.

Defined in

libraries/joomla/version.php

Importing

jimport( 'joomla.version' );

Source Body

public function getShortVersion() {
        return $this->RELEASE .'.'. $this->DEV_LEVEL;
}



Examples

Code Examples