layout.php 534 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Layout (principal view) used for structuring other views
  5. * @author Christian Fasanando <christian1827@gmail.com>
  6. * @package chamilo.course_description
  7. */
  8. // protect a course script
  9. api_protect_course_script(true);
  10. // Header
  11. Display :: display_header('');
  12. // Introduction section
  13. Display::display_introduction_section(TOOL_COURSE_DESCRIPTION);
  14. // Tracking
  15. Event::event_access_tool(TOOL_COURSE_DESCRIPTION);
  16. // Display
  17. echo $content;
  18. // Footer
  19. Display :: display_footer();