statistics.php 625 B

12345678910111213141516171819202122
  1. <?php // $Id: statistics.php 10811 2007-01-22 08:26:40Z elixir_julian $
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. */
  6. /*
  7. INIT SECTION
  8. */
  9. // name of the language file that needs to be included
  10. $language_file='admin';
  11. $cidReset=true;
  12. require_once '../inc/global.inc.php';
  13. $this_section=SECTION_PLATFORM_ADMIN;
  14. api_protect_admin_script();
  15. require_once api_get_path(LIBRARY_PATH).'fileManage.lib.php';
  16. $interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
  17. $tool_name = get_lang('Statistics');
  18. Display::display_header($tool_name);
  19. Display::display_footer();