layout.php 410 B

123456789101112131415161718192021
  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> - Beeznest
  6. * @package chamilo.auth
  7. */
  8. // Acces rights: anonymous users can't do anything usefull here.
  9. api_block_anonymous_users();
  10. // Header
  11. Display::display_header('');
  12. // Display
  13. echo $content;
  14. // Footer
  15. Display::display_footer();