Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / theme / chameleon / ui / chameleon.php
blob2e9b9c8b14644dd9b88829667a3c7102eae3d179
1 <?php
4 if (!empty($THEME->chameleonenabled)) {
5 $chameleon_isadmin = has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM));
6 $chameleon_isteacher = false;
7 if ($COURSE->id == SITEID) {
8 $chameleon_courseparam = '';
9 } else {
10 $chameleon_courseparam = '?id=' . $COURSE->id;
11 $chameleon_isteacher = !empty($COURSE->theme) and has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $COURSE->id));
14 if ($chameleon_isadmin or ($chameleon_isteacher and !empty($CFG->allowcoursethemes) and !empty($THEME->chameleonteachereditenabled))) {
15 // either we're an admin or we're a teacher and this is being used as the course theme
16 // if we're on a page using a course theme edit that, otherwise edit the main chameleon theme
17 // $chameleon_theme = (isset($CFG->coursetheme)) ? $CFG->coursetheme : $CFG->theme;
18 $chameleon_theme = current_theme();
21 <style type="text/css"> @import '<?php echo "$CFG->themewww/$chameleon_theme" ?>/ui/chameleon_ui.css'; </style>
23 <script type="text/javascript" src="<?php echo "$CFG->themewww/$chameleon_theme/ui/css_query.js" ?>"> </script>
24 <script type="text/javascript" src="<?php echo "$CFG->themewww/$chameleon_theme/ui/sarissa.js" ?>"> </script>
25 <script type="text/javascript" src="<?php echo "$CFG->themewww/$chameleon_theme/ui/chameleon_js.php$chameleon_courseparam" ?>"> </script>
27 <?php