Joomla! is Free Software released under the GNU General Public License.'; /** * * * @return string Long format version */ function getLongVersion() { return $this->PRODUCT .' '. $this->RELEASE .'.'. $this->DEV_LEVEL .' ' . $this->DEV_STATUS .' [ '.$this->CODENAME .' ] '. $this->RELDATE .' ' . $this->RELTIME .' '. $this->RELTZ; } /** * * * @return string Short version format */ function getShortVersion() { return $this->RELEASE .'.'. $this->DEV_LEVEL; } /** * * * @return string Version suffix for help files */ function getHelpVersion() { if ($this->RELEASE > '1.0') { return '.' . str_replace( '.', '', $this->RELEASE ); } else { return ''; } } /** * Compares two "A PHP standardized" version number against the current Joomla! version * * @return boolean * @see http://www.php.net/version_compare */ function isCompatible ( $minimum ) { return (version_compare( JVERSION, $minimum, 'eq' ) == 1); } }