system_status.php 641 B

12345678910111213141516171819202122
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. * @author Julio Montoya <gugli100@gmail.com>
  6. */
  7. // Language files that should be included
  8. $language_file = array('admin', 'registration');
  9. $cidReset = true;
  10. require_once '../inc/global.inc.php';
  11. require_once api_get_path(LIBRARY_PATH).'diagnoser.lib.php';
  12. $this_section = SECTION_PLATFORM_ADMIN;
  13. // User permissions
  14. api_protect_admin_script();
  15. $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  16. Display :: display_header(get_lang('SystemStatus'));
  17. $diag = new Diagnoser();
  18. $diag->show_html();
  19. Display :: display_footer();