parent
d6a3679fe8
commit
18d4482df4
@ -0,0 +1,36 @@ |
||||
<?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(); |
||||
|
||||
?> |
Loading…
Reference in new issue