Proyectos de Subversion Moodle

Rev

Rev 1345 | Rev 1349 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1345 Rev 1346
Línea 2... Línea 2...
2
 
2
 
Línea 3... Línea 3...
3
// Every file should have GPL and copyright in the header - we skip it in tutorials but you should not skip it for real.
3
// Every file should have GPL and copyright in the header - we skip it in tutorials but you should not skip it for real.
4
 
4
 
-
 
5
// This line protects the file from being accessed by a URL directly.                                                               
Línea 5... Línea 6...
5
// This line protects the file from being accessed by a URL directly.                                                               
6
defined('MOODLE_INTERNAL') || die();
6
defined('MOODLE_INTERNAL') || die();
7
require_once($CFG->dirroot . '/theme/universe/lib.php');
7
 
8
 
Línea 8... Línea 9...
8
// This is used for performance, we don't need to know about these settings on every page in Moodle, only when                      
9
// This is used for performance, we don't need to know about these settings on every page in Moodle, only when                      
9
// we are looking at the admin settings pages.                                                                                      
10
// we are looking at the admin settings pages.                                                                                      
10
if ($ADMIN->fulltree) {
-
 
-
 
11
if ($ADMIN->fulltree) {
Línea 11... Línea 12...
11
 
12
 
12
    // Boost provides a nice setting page which splits settings onto separate tabs. We want to use it here.                         
13
    // Boost provides a nice setting page which splits settings onto separate tabs. We want to use it here.                         
Línea 13... Línea 14...
13
    $settings = new theme_universe_admin_settingspage_tabs('themesettinguniverse_child', get_string('configtitle', 'theme_universe_child'));
14
    $settings = new theme_universe_admin_settingspage_tabs('themesettinguniverse_child', get_string('configtitle', 'theme_universe_child'));