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.
28 lines
497 B
28 lines
497 B
![]()
16 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
|
/**
|
||
![]()
8 years ago
|
* Layout (principal view) used for structuring other views.
|
||
|
*
|
||
|
* @author Christian Fasanando <christian1827@gmail.com>
|
||
|
*/
|
||
![]()
16 years ago
|
|
||
|
// protect a course script
|
||
|
api_protect_course_script(true);
|
||
|
|
||
|
// Header
|
||
|
$tool = TOOL_COURSE_PROGRESS;
|
||
![]()
7 years ago
|
//Display::display_header('');
|
||
![]()
16 years ago
|
|
||
|
// Introduction section
|
||
|
Display::display_introduction_section($tool);
|
||
|
|
||
|
// Tracking
|
||
![]()
11 years ago
|
Event::event_access_tool($tool);
|
||
![]()
16 years ago
|
|
||
|
// Display
|
||
|
echo $content;
|
||
|
|
||
|
// Footer
|
||
![]()
7 years ago
|
//Display::display_footer();
|