statistics.php 702 B

123456789101112131415161718192021222324252627282930313233
  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. //api_display_tool_title($tool_name);
  20. /*
  21. MAIN CODE
  22. */
  23. /*
  24. FOOTER
  25. */
  26. Display::display_footer();
  27. ?>