Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/course_description/layout.php

29 lines
625 B

<?php
/* For licensing terms, see /dokeos_license.txt */
/**
* Layout (principal view) used for structuring other views
* @package dokeos.course_description
* @author Christian Fasanando <christian1827@gmail.com>
*/
// Header
api_protect_course_script(true);
$nameTools = get_lang('CourseProgram');
Display :: display_header('');
// Constants and variables
$nameTools = get_lang(TOOL_COURSE_DESCRIPTION);
// Introduction section
Display::display_introduction_section(TOOL_COURSE_DESCRIPTION);
// Tracking
event_access_tool(TOOL_COURSE_DESCRIPTION);
// Display
echo $content;
// Footer
Display :: display_footer();
?>