layout.php 541 B

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