layout.php 404 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>
  6. * @package chamilo.dashboard
  7. */
  8. // protect script
  9. api_block_anonymous_users();
  10. $tool_name = get_lang('Dashboard');
  11. // Header
  12. Display :: display_header($tool_name);
  13. // Display
  14. echo $content;
  15. // Footer
  16. Display :: display_footer();