| Current Path : /home/bijouxly/old/administrator/components/com_virtuemart/ |
| Current File : /home/bijouxly/old/administrator/components/com_virtuemart/version.php |
<?php
if( !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
/**
*
* @version $Id: version.php 6059 2012-06-06 10:35:14Z alatak $
* @package VirtueMart
* @subpackage core
* @copyright Copyright (C) 2005-2011 VirtueMart Team - All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart 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 /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details.
*
* http://virtuemart.org
*/
if( class_exists( 'vmVersion' ) ) {
$shortversion = vmVersion::$PRODUCT . " " . vmVersion::$RELEASE . " " . vmVersion::$DEV_STATUS. " ";
$myVersion = $shortversion . " [".vmVersion::$CODENAME ."] <br />" . vmVersion::$RELDATE . " "
. vmVersion::$RELTIME . " " . vmVersion::$RELTZ;
return;
}
if( !class_exists( 'vmVersion' ) ) {
/** Version information */
class vmVersion {
/** @var string Product */
static $PRODUCT = 'VirtueMart';
/** @var int Release Number */
static $RELEASE = '2.0.24';
/** @var string Development Status */
static $DEV_STATUS = 'MINOR';
/** @var string Codename */
static $CODENAME = 'IceBear';
/** @var string Date */
static $RELDATE = 'September 27 2013';
/** @var string Time */
static $RELTIME = '1941';
/** @var string Timezone */
static $RELTZ = 'GMT';
/** @var string Revision */
static $REVISION = 'Revision: 7246';
/** @var string Copyright Text */
static $COPYRIGHT = 'Copyright (C) 2005-2012 VirtueMart Development Team - All rights reserved.';
/** @var string URL */
static $URL = '<a href="http://virtuemart.net">VirtueMart</a> is a Free Component for Joomla! released under the GNU/GPL2 License.';
}
$shortversion = vmVersion::$PRODUCT . " " . vmVersion::$RELEASE . " " . vmVersion::$DEV_STATUS. " ";
$myVersion = $shortversion .' '.vmVersion::$REVISION. " [".vmVersion::$CODENAME ."] <br />" . vmVersion::$RELDATE . " "
. vmVersion::$RELTIME . " " . vmVersion::$RELTZ;
}
// pure php no closing tag