MDL-34258: Plagiarism API now returns strings so mod_assign needs these updates
[moodle.git] / theme / styles_debug.php
blobea473053ed4a84d690e302e65c4d0add9e9ad724
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * This file is responsible for serving of individual style sheets in designer mode.
21 * @package moodlecore
22 * @copyright 2009 Petr Skoda (skodak) {@link http://skodak.org}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 define('ABORT_AFTER_CONFIG', true);
28 require('../config.php'); // this stops immediately at the beginning of lib/setup.php
29 require_once($CFG->dirroot.'/lib/csslib.php');
31 $themename = min_optional_param('theme', 'standard', 'SAFEDIR');
32 $type = min_optional_param('type', '', 'SAFEDIR');
33 $subtype = min_optional_param('subtype', '', 'SAFEDIR');
34 $sheet = min_optional_param('sheet', '', 'SAFEDIR');
36 if (!defined('THEME_DESIGNER_CACHE_LIFETIME')) {
37 define('THEME_DESIGNER_CACHE_LIFETIME', 4); // this can be also set in config.php
40 if (file_exists("$CFG->dirroot/theme/$themename/config.php")) {
41 // exists
42 } else if (!empty($CFG->themedir) and file_exists("$CFG->themedir/$themename/config.php")) {
43 // exists
44 } else {
45 css_send_css_not_found();
48 // no gzip compression when debugging
50 $candidatesheet = "$CFG->cachedir/theme/$themename/designer.ser";
52 if (!file_exists($candidatesheet)) {
53 css_send_css_not_found();
56 if (!$css = file_get_contents($candidatesheet)) {
57 css_send_css_not_found();
60 $css = unserialize($css);
62 if ($type === 'editor') {
63 if (isset($css['editor'])) {
64 css_send_uncached_css($css['editor']);
66 } else if ($type === 'ie') {
67 // IE is a sloppy browser with weird limits, sorry
68 if ($subtype === 'plugins') {
69 css_send_uncached_css($css['plugins']);
71 } else if ($subtype === 'parents') {
72 $sendcss = array();
73 if (empty($sheet)) {
74 // If not specific parent has been specified as $sheet then build a
75 // collection of @import statements into this one sheet.
76 // We shouldn't ever actually get here, but none the less we'll deal
77 // with it incase we ever do.
78 // @import statements arn't processed until after concurrent CSS requests
79 // making them slightly evil.
80 foreach (array_keys($css['parents']) as $sheet) {
81 $sendcss[] = "@import url(styles_debug.php?theme=$themename&type=$type&subtype=$subtype&sheet=$sheet);";
83 } else {
84 // Build up the CSS for that parent so we can serve it as one file.
85 foreach ($css[$subtype][$sheet] as $parent=>$css) {
86 $sendcss[] = $css;
89 css_send_uncached_css($sendcss);
90 } else if ($subtype === 'theme') {
91 css_send_uncached_css($css['theme']);
94 } else if ($type === 'plugin') {
95 if (isset($css['plugins'][$subtype])) {
96 css_send_uncached_css($css['plugins'][$subtype]);
99 } else if ($type === 'parent') {
100 if (isset($css['parents'][$subtype][$sheet])) {
101 css_send_uncached_css($css['parents'][$subtype][$sheet]);
104 } else if ($type === 'theme') {
105 if (isset($css['theme'][$sheet])) {
106 css_send_uncached_css($css['theme'][$sheet]);
109 css_send_css_not_found();