Source for file platform.php
Documentation is available at platform.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* Version information class for the Joomla Platform.
* @package Joomla.Platform
const PRODUCT =
'Joomla Platform';
const CODE_NAME =
'Curiosity';
const RELEASE_DATE =
'24-Apr-2013';
const RELEASE_TIME =
'00:00';
const RELEASE_TIME_ZONE =
'GMT';
const COPYRIGHT =
'Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.';
const LINK_TEXT =
'<a href="http://www.joomla.org">Joomla!</a> is Free Software released under the GNU General Public License.';
* Compares two a "PHP standardized" version number against the current Joomla Platform version.
* @param string $minimum The minimum version of the Joomla Platform which is compatible.
* @return boolean True if the version is compatible.
* @see http://www.php.net/version_compare
* Gets a "PHP standardized" version string for the current Joomla Platform.
* @return string Version string.
return self::RELEASE .
'.' .
self::MAINTENANCE;
* Gets a version string for the current Joomla Platform with all release information.
* @return string Complete version string.
return self::PRODUCT .
' ' .
self::RELEASE .
'.' .
self::MAINTENANCE .
' ' .
self::STATUS .
' [ ' .
self::CODE_NAME .
' ] '
.
self::RELEASE_DATE .
' ' .
self::RELEASE_TIME .
' ' .
self::RELEASE_TIME_ZONE;
Documentation generated on Tue, 19 Nov 2013 15:10:42 +0100 by phpDocumentor 1.4.3