Proyectos de Subversion Moodle

Rev

Rev 1341 | Rev 1344 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
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
 
5
// This line protects the file from being accessed by a URL directly.
1335 ariadna 6
defined('MOODLE_INTERNAL') || die();
1343 ariadna 7
require_once($CFG->dirroot . '/theme/universe/lib.php');
1335 ariadna 8
 
1 efrain 9
// This is used for performance, we don't need to know about these settings on every page in Moodle, only when
10
// we are looking at the admin settings pages.
1335 ariadna 11
if ($ADMIN->fulltree) {
12
 
1 efrain 13
    // Boost provides a nice setting page which splits settings onto separate tabs. We want to use it here.
1340 ariadna 14
    require_once($CFG->dirroot . '/theme/universe/settings.php');
1335 ariadna 15
}