version.php 700 B

123456789101112131415161718192021
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script lists the necessary variables that allow the installation
  5. * system to know in which version is the current Chamilo install. This
  6. * script should be overwritten with each upgrade of Chamilo. It is not
  7. * required from any other process of Chamilo than the installation or upgrade.
  8. * It also helps for automatic packaging of unstable versions.
  9. *
  10. * @package chamilo.install
  11. */
  12. return array(
  13. 'version' => '10.0.0',
  14. 'version_status' => 'Unstable',
  15. 'version_last_id' => 2,
  16. 'version_stable' => false,
  17. 'version_major' => true,
  18. 'software_name' => 'Chamilo',
  19. 'software_url' => 'http://www.chamilo.org/'
  20. );