version.php 713 B

12345678910111213141516171819202122
  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. /**
  13. * Variables used from the main/install/index.php
  14. */
  15. $new_version = '2.0';
  16. $new_version_status = 'unstable';
  17. $new_version_last_id = 0;
  18. $new_version_stable = true;
  19. $new_version_major = true;
  20. $software_name = 'Chamilo';
  21. $software_url = 'https://chamilo.org/';