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.
22 lines
494 B
22 lines
494 B
|
11 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
/**
|
||
|
|
* Layout (principal view) used for structuring course/session catalog
|
||
|
|
* @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com>
|
||
|
|
* @package chamilo.auth
|
||
|
|
*/
|
||
|
|
|
||
|
11 years ago
|
if (api_get_setting('course_catalog_published') !== 'true') {
|
||
|
11 years ago
|
// Acces rights: anonymous users can't do anything usefull here.
|
||
|
|
api_block_anonymous_users();
|
||
|
|
}
|
||
|
|
|
||
|
|
// Header
|
||
|
|
Display::display_header('');
|
||
|
|
|
||
|
|
// Display
|
||
|
|
echo $content;
|
||
|
|
|
||
|
|
// Footer
|
||
|
|
Display::display_footer();
|