Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JPlatform

Liste de tous les membres

Fonctions membres publiques statiques

static isCompatible ($minimum)
static getShortVersion ()
static getLongVersion ()

Attributs publics

const PRODUCT = 'Joomla Platform'
const RELEASE = '13.1'
const MAINTENANCE = '0'
const STATUS = 'Stable'
const BUILD = 0
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.'

Description détaillée

Définition à la ligne 17 du fichier platform.php.


Documentation des fonctions membres

static JPlatform::getLongVersion ( )
static

Gets a version string for the current Joomla Platform with all release information.

Renvoie:
string Complete version string.
Depuis:
11.1

Définition à la ligne 86 du fichier platform.php.

Référencé par JLogLoggerFormattedtext\generateFileHeader().

{
return self::PRODUCT . ' ' . self::RELEASE . '.' . self::MAINTENANCE . ' ' . self::STATUS . ' [ ' . self::CODE_NAME . ' ] '
. self::RELEASE_DATE . ' ' . self::RELEASE_TIME . ' ' . self::RELEASE_TIME_ZONE;
}

+ Voici le graphe des appelants de cette fonction :

static JPlatform::getShortVersion ( )
static

Gets a "PHP standardized" version string for the current Joomla Platform.

Renvoie:
string Version string.
Depuis:
11.1

Définition à la ligne 74 du fichier platform.php.

{
return self::RELEASE . '.' . self::MAINTENANCE;
}
static JPlatform::isCompatible (   $minimum)
static

Compares two a "PHP standardized" version number against the current Joomla Platform version.

Paramètres:
string$minimumThe minimum version of the Joomla Platform which is compatible.
Renvoie:
boolean True if the version is compatible.
Voir également:
http://www.php.net/version_compare
Depuis:
11.1

Définition à la ligne 62 du fichier platform.php.

{
return (version_compare(self::getShortVersion(), $minimum, 'eq') == 1);
}

Documentation des données membres

const JPlatform::BUILD = 0

Définition à la ligne 32 du fichier platform.php.

const JPlatform::CODE_NAME = 'Curiosity'

Définition à la ligne 35 du fichier platform.php.

const JPlatform::COPYRIGHT = 'Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.'

Définition à la ligne 47 du fichier platform.php.

const JPlatform::LINK_TEXT = '<a href="http://www.joomla.org">Joomla!</a> is Free Software released under the GNU General Public License.'

Définition à la ligne 50 du fichier platform.php.

const JPlatform::MAINTENANCE = '0'

Définition à la ligne 26 du fichier platform.php.

const JPlatform::PRODUCT = 'Joomla Platform'

Définition à la ligne 20 du fichier platform.php.

const JPlatform::RELEASE = '13.1'

Définition à la ligne 23 du fichier platform.php.

const JPlatform::RELEASE_DATE = '24-Apr-2013'

Définition à la ligne 38 du fichier platform.php.

const JPlatform::RELEASE_TIME = '00:00'

Définition à la ligne 41 du fichier platform.php.

const JPlatform::RELEASE_TIME_ZONE = 'GMT'

Définition à la ligne 44 du fichier platform.php.

const JPlatform::STATUS = 'Stable'

Définition à la ligne 29 du fichier platform.php.


La documentation de cette classe a été générée à partir du fichier suivant :