Current Path : /var/www/html/clients/kampol.e-nk.ru/OLD/includes/ |
Current File : /var/www/html/clients/kampol.e-nk.ru/OLD/includes/version.php |
<?php /** * @version $Id: version.php 6086 2006-12-24 19:13:59Z robs $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined( '_VALID_MOS' ) or die( 'Äîñòóï çàïðåùåí' ); /** * Version information * @package Joomla */ class joomlaVersion { /** @var string Product */ var $PRODUCT = 'Joomla!'; /** @var int Main Release Level */ var $RELEASE = '1.0'; /** @var string Development Status */ var $DEV_STATUS = 'Stable'; /** @var int Sub Release Level */ var $DEV_LEVEL = '12'; /** @var int build Number */ var $BUILD = '$Revision: 6086 $'; /** @var string Codename */ var $CODENAME = 'Lavra Edition 2007'; /** @var string Date */ var $RELDATE = '20 ÿíâàðÿ 2007'; /** @var string Time */ var $RELTIME = '01:00'; /** @var string Timezone */ var $RELTZ = 'UTC'; /** @var string Copyright Text */ var $COPYRIGHT = "Àâòîðñêèå ïðàâà (C) 2005-2007 OSM. Âñå ïðàâà çàùèùåíû."; /** @var string URL */ var $URL = '<a href="http://andyr.mrezha.ru">Joomla Lavra Edition! 2007</a> ñâîáîäíî ðàñïðîñòðàíÿåìîå ïðîãðàììíîå îáåñïå÷åíèå ïî ëèöåíçèè GNU'; /** @var string Whether site is a production = 1 or demo site = 0: 1 is default */ var $SITE = 1; /** @var string Whether site has restricted functionality mostly used for demo sites: 0 is default */ var $RESTRICT = 0; /** @var string Whether site is still in development phase (disables checks for /installation folder) - should be set to 0 for package release: 0 is default */ var $SVN = 0; /** * @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 ''; } } } $_VERSION = new joomlaVersion(); $version = $_VERSION->PRODUCT .' '. $_VERSION->RELEASE .'.'. $_VERSION->DEV_LEVEL .' ' . $_VERSION->DEV_STATUS .' [ '.$_VERSION->CODENAME .' ] '. $_VERSION->RELDATE .' ' . $_VERSION->RELTIME .' '. $_VERSION->RELTZ; ?>