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.
|
Línea 4... |
Línea 4... |
4 |
|
4 |
|
5 |
// This line protects the file from being accessed by a URL directly.
|
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 |
require_once($CFG->dirroot . '/theme/universe/lib.php');
|
Línea 8... |
Línea 8... |
8 |
require_once($CFG->dirroot . '/theme/universe_child/classes/theme_universe_child_admin_settingspage_tabs.php');
|
8 |
require_once($CFG->dirroot . '/theme/universe_child/classes/admin_settingspage_tabs.php');
|
9 |
|
9 |
|
10 |
// This is used for performance, we don't need to know about these settings on every page in Moodle, only when
|
10 |
// This is used for performance, we don't need to know about these settings on every page in Moodle, only when
|