[ Index ]

PHP Cross Reference of Mambo 4.6.5

[ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/includes/ -> version.php (source)

   1  <?php
   2  /**
   3  * @package Mambo
   4  * @author Mambo Foundation Inc see README.php
   5  * @copyright (C) 2000 - 2009 Mambo Foundation Inc.
   6  * See COPYRIGHT.php for copyright notices and details.
   7  * @license GNU/GPL Version 2, see LICENSE.php
   8  *
   9  * Redistributions of files must retain the above copyright notice.
  10  *
  11  * Mambo is free software; you can redistribute it and/or
  12  * modify it under the terms of the GNU General Public License
  13  * as published by the Free Software Foundation; version 2 of the License.
  14  */
  15  
  16  /** Version information */
  17  class version {
  18      /** @var string Product */
  19      var $PRODUCT = 'Mambo';
  20      /** @var int Main Release Level */
  21      var $RELEASE = '4.6';
  22      /** @var string Development Status */
  23      var $DEV_STATUS = 'Stable';
  24      /** @var int Sub Release Level */
  25      var $DEV_LEVEL = '5';
  26      /** @var string Codename */
  27      var $CODENAME = 'Jupiter';
  28      /** @var string Date */
  29      var $RELDATE = '25-Jun-2008';
  30      /** @var string Time */
  31      var $RELTIME = '12:00';
  32      /** @var string Timezone */
  33      var $RELTZ = 'GMT';
  34      /** @var string Copyright Text */
  35      var $COPYRIGHT = 'Refer to copyright.php  All rights reserved.';
  36      /** @var string URL */
  37      var $URL = '<a href="http://mambo-foundation.org">Mambo</a> is Free Software released under the GNU/GPL License.';
  38  }
  39  
  40  ?>