You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
714 B
37 lines
714 B
![]()
14 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
|
/**
|
||
|
* Reports
|
||
|
* @author Arnaud Ligot <arnaud@cblue.be>
|
||
|
* @copyrights CBLUE SPRL 2011
|
||
|
* @package chamilo.reports
|
||
|
*/
|
||
|
|
||
|
// name of the language file that needs to be included
|
||
|
$language_file = array ('index', 'tracking', 'userInfo', 'admin', 'gradebook'); // FIXME
|
||
|
$cidReset = true;
|
||
|
|
||
|
// including files
|
||
|
require_once '../inc/global.inc.php';
|
||
|
require_once 'reports.lib.php';
|
||
|
|
||
|
// protect script
|
||
|
api_block_anonymous_users();
|
||
|
|
||
|
// defining constants
|
||
|
|
||
|
// current section
|
||
|
$this_section = SECTION_REPORTS;
|
||
|
|
||
|
// setting the name of the tool
|
||
|
$tool_name=get_lang('Reports');
|
||
|
|
||
|
// Displaying the header
|
||
|
Display::display_header($tool_name);
|
||
|
|
||
|
// Footer
|
||
|
Display::display_footer();
|
||
|
|
||
|
?>
|