35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
<?php
|
|
|
|
|
|
if (isset($THEME->chameleonenabled) && $THEME->chameleonenabled) {
|
|
$chameleon_isadmin = has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM, SITEID));
|
|
$chameleon_isteacher = false;
|
|
if (isset($course->id)) {
|
|
$chameleon_courseparam = '?id=' . $course->id;
|
|
if (!$chameleon_isadmin) {
|
|
$chameleon_isteacher = (has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $course->id)) && isset($CFG->coursetheme));
|
|
}
|
|
} else {
|
|
$chameleon_courseparam = '';
|
|
}
|
|
|
|
if ($chameleon_isadmin || ($chameleon_isteacher && !empty($CFG->allowcoursethemes) && !empty($THEME->chameleonteachereditenabled))) {
|
|
// either we're an admin or we're a teacher and this is being used as the course theme
|
|
// if we're on a page using a course theme edit that, otherwise edit the main chameleon theme
|
|
// $chameleon_theme = (isset($CFG->coursetheme)) ? $CFG->coursetheme : $CFG->theme;
|
|
$chameleon_theme = (isset($CFG->coursetheme)) ? $CFG->coursetheme : current_theme();
|
|
?>
|
|
|
|
<style type="text/css"> @import '<?php echo "$CFG->themewww/$chameleon_theme" ?>/ui/chameleon_ui.css'; </style>
|
|
|
|
<script type="text/javascript" src="<?php echo "$CFG->themewww/$chameleon_theme/ui/css_query.js" ?>"> </script>
|
|
<script type="text/javascript" src="<?php echo "$CFG->themewww/$chameleon_theme/ui/sarissa.js" ?>"> </script>
|
|
<script type="text/javascript" src="<?php echo "$CFG->themewww/$chameleon_theme/ui/chameleon_js.php$chameleon_courseparam" ?>"> </script>
|
|
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
|
|
|