MDL-78962 core/loadingicon: remove jQuery requirement in the API
[moodle.git] / lib / outputlib.php
blob4f89664e406d06a680fcb6a5f0e4e604461c66ff
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Functions for generating the HTML that Moodle should output.
20 * Please see http://docs.moodle.org/en/Developement:How_Moodle_outputs_HTML
21 * for an overview.
23 * @copyright 2009 Tim Hunt
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 * @package core
26 * @category output
29 defined('MOODLE_INTERNAL') || die();
31 require_once($CFG->libdir.'/outputcomponents.php');
32 require_once($CFG->libdir.'/outputactions.php');
33 require_once($CFG->libdir.'/outputfactories.php');
34 require_once($CFG->libdir.'/outputrenderers.php');
35 require_once($CFG->libdir.'/outputrequirementslib.php');
37 /**
38 * Returns current theme revision number.
40 * @return int
42 function theme_get_revision() {
43 global $CFG;
45 if (empty($CFG->themedesignermode)) {
46 if (empty($CFG->themerev)) {
47 // This only happens during install. It doesn't matter what themerev we use as long as it's positive.
48 return 1;
49 } else {
50 return $CFG->themerev;
53 } else {
54 return -1;
58 /**
59 * Returns current theme sub revision number. This is the revision for
60 * this theme exclusively, not the global theme revision.
62 * @param string $themename The non-frankenstyle name of the theme
63 * @return int
65 function theme_get_sub_revision_for_theme($themename) {
66 global $CFG;
68 if (empty($CFG->themedesignermode)) {
69 $pluginname = "theme_{$themename}";
70 $revision = during_initial_install() ? null : get_config($pluginname, 'themerev');
72 if (empty($revision)) {
73 // This only happens during install. It doesn't matter what themerev we use as long as it's positive.
74 return 1;
75 } else {
76 return $revision;
78 } else {
79 return -1;
83 /**
84 * Calculates and returns the next theme revision number.
86 * @return int
88 function theme_get_next_revision() {
89 global $CFG;
91 $next = time();
92 if (isset($CFG->themerev) and $next <= $CFG->themerev and $CFG->themerev - $next < 60*60) {
93 // This resolves problems when reset is requested repeatedly within 1s,
94 // the < 1h condition prevents accidental switching to future dates
95 // because we might not recover from it.
96 $next = $CFG->themerev+1;
99 return $next;
103 * Calculates and returns the next theme revision number.
105 * @param string $themename The non-frankenstyle name of the theme
106 * @return int
108 function theme_get_next_sub_revision_for_theme($themename) {
109 global $CFG;
111 $next = time();
112 $current = theme_get_sub_revision_for_theme($themename);
113 if ($next <= $current and $current - $next < 60 * 60) {
114 // This resolves problems when reset is requested repeatedly within 1s,
115 // the < 1h condition prevents accidental switching to future dates
116 // because we might not recover from it.
117 $next = $current + 1;
120 return $next;
124 * Sets the current theme revision number.
126 * @param int $revision The new theme revision number
128 function theme_set_revision($revision) {
129 set_config('themerev', $revision);
133 * Sets the current theme revision number for a specific theme.
134 * This does not affect the global themerev value.
136 * @param string $themename The non-frankenstyle name of the theme
137 * @param int $revision The new theme revision number
139 function theme_set_sub_revision_for_theme($themename, $revision) {
140 set_config('themerev', $revision, "theme_{$themename}");
144 * Get the path to a theme config.php file.
146 * @param string $themename The non-frankenstyle name of the theme to check
148 function theme_get_config_file_path($themename) {
149 global $CFG;
151 if (file_exists("{$CFG->dirroot}/theme/{$themename}/config.php")) {
152 return "{$CFG->dirroot}/theme/{$themename}/config.php";
153 } else if (!empty($CFG->themedir) and file_exists("{$CFG->themedir}/{$themename}/config.php")) {
154 return "{$CFG->themedir}/{$themename}/config.php";
155 } else {
156 return null;
161 * Get the path to the local cached CSS file.
163 * @param string $themename The non-frankenstyle theme name.
164 * @param int $globalrevision The global theme revision.
165 * @param int $themerevision The theme specific revision.
166 * @param string $direction Either 'ltr' or 'rtl' (case sensitive).
168 function theme_get_css_filename($themename, $globalrevision, $themerevision, $direction) {
169 global $CFG;
171 $path = "{$CFG->localcachedir}/theme/{$globalrevision}/{$themename}/css";
172 $filename = $direction == 'rtl' ? "all-rtl_{$themerevision}" : "all_{$themerevision}";
173 return "{$path}/{$filename}.css";
177 * Generates and saves the CSS files for the given theme configs.
179 * @param theme_config[] $themeconfigs An array of theme_config instances.
180 * @param array $directions Must be a subset of ['rtl', 'ltr'].
181 * @param bool $cache Should the generated files be stored in local cache.
182 * @return array The built theme content in a multi-dimensional array of name => direction => content
184 function theme_build_css_for_themes($themeconfigs = [], $directions = ['rtl', 'ltr'],
185 $cache = true, $mtraceprogress = false): array {
186 global $CFG;
188 if (empty($themeconfigs)) {
189 return [];
192 require_once("{$CFG->libdir}/csslib.php");
194 $themescss = [];
195 $themerev = theme_get_revision();
196 // Make sure the local cache directory exists.
197 make_localcache_directory('theme');
199 foreach ($themeconfigs as $themeconfig) {
200 $themecss = [];
201 $oldrevision = theme_get_sub_revision_for_theme($themeconfig->name);
202 $newrevision = theme_get_next_sub_revision_for_theme($themeconfig->name);
204 // First generate all the new css.
205 foreach ($directions as $direction) {
206 if ($mtraceprogress) {
207 $timestart = microtime(true);
208 mtrace('Building theme CSS for ' . $themeconfig->name . ' [' .
209 $direction . '] ...', '');
211 // Lock it on. Technically we should build all themes for SVG and no SVG - but ie9 is out of support.
212 $themeconfig->force_svg_use(true);
213 $themeconfig->set_rtl_mode(($direction === 'rtl'));
215 $themecss[$direction] = $themeconfig->get_css_content();
216 if ($cache) {
217 $themeconfig->set_css_content_cache($themecss[$direction]);
218 $filename = theme_get_css_filename($themeconfig->name, $themerev, $newrevision, $direction);
219 css_store_css($themeconfig, $filename, $themecss[$direction]);
221 if ($mtraceprogress) {
222 mtrace(' done in ' . round(microtime(true) - $timestart, 2) . ' seconds.');
225 $themescss[$themeconfig->name] = $themecss;
227 if ($cache) {
228 // Only update the theme revision after we've successfully created the
229 // new CSS cache.
230 theme_set_sub_revision_for_theme($themeconfig->name, $newrevision);
232 // Now purge old files. We must purge all old files in the local cache
233 // because we've incremented the theme sub revision. This will leave any
234 // files with the old revision inaccessbile so we might as well removed
235 // them from disk.
236 foreach (['ltr', 'rtl'] as $direction) {
237 $oldcss = theme_get_css_filename($themeconfig->name, $themerev, $oldrevision, $direction);
238 if (file_exists($oldcss)) {
239 unlink($oldcss);
245 return $themescss;
249 * Invalidate all server and client side caches.
251 * This method deletes the physical directory that is used to cache the theme
252 * files used for serving.
253 * Because it deletes the main theme cache directory all themes are reset by
254 * this function.
256 function theme_reset_all_caches() {
257 global $CFG, $PAGE;
258 require_once("{$CFG->libdir}/filelib.php");
260 $next = theme_get_next_revision();
261 theme_set_revision($next);
263 if (!empty($CFG->themedesignermode)) {
264 $cache = cache::make_from_params(cache_store::MODE_APPLICATION, 'core', 'themedesigner');
265 $cache->purge();
268 // Purge compiled post processed css.
269 cache::make('core', 'postprocessedcss')->purge();
271 // Delete all old theme localcaches.
272 $themecachedirs = glob("{$CFG->localcachedir}/theme/*", GLOB_ONLYDIR);
273 foreach ($themecachedirs as $localcachedir) {
274 fulldelete($localcachedir);
277 if ($PAGE) {
278 $PAGE->reload_theme();
283 * Reset static caches.
285 * This method indicates that all running cron processes should exit at the
286 * next opportunity.
288 function theme_reset_static_caches() {
289 \core\task\manager::clear_static_caches();
293 * Enable or disable theme designer mode.
295 * @param bool $state
297 function theme_set_designer_mod($state) {
298 set_config('themedesignermode', (int)!empty($state));
299 // Reset caches after switching mode so that any designer mode caches get purged too.
300 theme_reset_all_caches();
304 * This class represents the configuration variables of a Moodle theme.
306 * All the variables with access: public below (with a few exceptions that are marked)
307 * are the properties you can set in your themes config.php file.
309 * There are also some methods and protected variables that are part of the inner
310 * workings of Moodle's themes system. If you are just editing a themes config.php
311 * file, you can just ignore those, and the following information for developers.
313 * Normally, to create an instance of this class, you should use the
314 * {@link theme_config::load()} factory method to load a themes config.php file.
315 * However, normally you don't need to bother, because moodle_page (that is, $PAGE)
316 * will create one for you, accessible as $PAGE->theme.
318 * @copyright 2009 Tim Hunt
319 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
320 * @since Moodle 2.0
321 * @package core
322 * @category output
324 class theme_config {
327 * @var string Default theme, used when requested theme not found.
329 const DEFAULT_THEME = 'boost';
331 /** The key under which the SCSS file is stored amongst the CSS files. */
332 const SCSS_KEY = '__SCSS__';
335 * @var array You can base your theme on other themes by linking to the other theme as
336 * parents. This lets you use the CSS and layouts from the other themes
337 * (see {@link theme_config::$layouts}).
338 * That makes it easy to create a new theme that is similar to another one
339 * but with a few changes. In this themes CSS you only need to override
340 * those rules you want to change.
342 public $parents;
345 * @var array The names of all the stylesheets from this theme that you would
346 * like included, in order. Give the names of the files without .css.
348 public $sheets = array();
351 * @var array The names of all the stylesheets from parents that should be excluded.
352 * true value may be used to specify all parents or all themes from one parent.
353 * If no value specified value from parent theme used.
355 public $parents_exclude_sheets = null;
358 * @var array List of plugin sheets to be excluded.
359 * If no value specified value from parent theme used.
361 public $plugins_exclude_sheets = null;
364 * @var array List of style sheets that are included in the text editor bodies.
365 * Sheets from parent themes are used automatically and can not be excluded.
367 public $editor_sheets = array();
370 * @var bool Whether a fallback version of the stylesheet will be used
371 * whilst the final version is generated.
373 public $usefallback = false;
376 * @var array The names of all the javascript files this theme that you would
377 * like included from head, in order. Give the names of the files without .js.
379 public $javascripts = array();
382 * @var array The names of all the javascript files this theme that you would
383 * like included from footer, in order. Give the names of the files without .js.
385 public $javascripts_footer = array();
388 * @var array The names of all the javascript files from parents that should
389 * be excluded. true value may be used to specify all parents or all themes
390 * from one parent.
391 * If no value specified value from parent theme used.
393 public $parents_exclude_javascripts = null;
396 * @var array Which file to use for each page layout.
398 * This is an array of arrays. The keys of the outer array are the different layouts.
399 * Pages in Moodle are using several different layouts like 'normal', 'course', 'home',
400 * 'popup', 'form', .... The most reliable way to get a complete list is to look at
401 * {@link http://cvs.moodle.org/moodle/theme/base/config.php?view=markup the base theme config.php file}.
402 * That file also has a good example of how to set this setting.
404 * For each layout, the value in the outer array is an array that describes
405 * how you want that type of page to look. For example
406 * <pre>
407 * $THEME->layouts = array(
408 * // Most pages - if we encounter an unknown or a missing page type, this one is used.
409 * 'standard' => array(
410 * 'theme' = 'mytheme',
411 * 'file' => 'normal.php',
412 * 'regions' => array('side-pre', 'side-post'),
413 * 'defaultregion' => 'side-post'
414 * ),
415 * // The site home page.
416 * 'home' => array(
417 * 'theme' = 'mytheme',
418 * 'file' => 'home.php',
419 * 'regions' => array('side-pre', 'side-post'),
420 * 'defaultregion' => 'side-post'
421 * ),
422 * // ...
423 * );
424 * </pre>
426 * 'theme' name of the theme where is the layout located
427 * 'file' is the layout file to use for this type of page.
428 * layout files are stored in layout subfolder
429 * 'regions' This lists the regions on the page where blocks may appear. For
430 * each region you list here, your layout file must include a call to
431 * <pre>
432 * echo $OUTPUT->blocks_for_region($regionname);
433 * </pre>
434 * or equivalent so that the blocks are actually visible.
436 * 'defaultregion' If the list of regions is non-empty, then you must pick
437 * one of the one of them as 'default'. This has two meanings. First, this is
438 * where new blocks are added. Second, if there are any blocks associated with
439 * the page, but in non-existent regions, they appear here. (Imaging, for example,
440 * that someone added blocks using a different theme that used different region
441 * names, and then switched to this theme.)
443 public $layouts = array();
446 * @var string Name of the renderer factory class to use. Must implement the
447 * {@link renderer_factory} interface.
449 * This is an advanced feature. Moodle output is generated by 'renderers',
450 * you can customise the HTML that is output by writing custom renderers,
451 * and then you need to specify 'renderer factory' so that Moodle can find
452 * your renderers.
454 * There are some renderer factories supplied with Moodle. Please follow these
455 * links to see what they do.
456 * <ul>
457 * <li>{@link standard_renderer_factory} - the default.</li>
458 * <li>{@link theme_overridden_renderer_factory} - use this if you want to write
459 * your own custom renderers in a lib.php file in this theme (or the parent theme).</li>
460 * </ul>
462 public $rendererfactory = 'standard_renderer_factory';
465 * @var string Function to do custom CSS post-processing.
467 * This is an advanced feature. If you want to do custom post-processing on the
468 * CSS before it is output (for example, to replace certain variable names
469 * with particular values) you can give the name of a function here.
471 public $csspostprocess = null;
474 * @var string Function to do custom CSS post-processing on a parsed CSS tree.
476 * This is an advanced feature. If you want to do custom post-processing on the
477 * CSS before it is output, you can provide the name of the function here. The
478 * function will receive a CSS tree document as first parameter, and the theme_config
479 * object as second parameter. A return value is not required, the tree can
480 * be edited in place.
482 public $csstreepostprocessor = null;
485 * @var string Accessibility: Right arrow-like character is
486 * used in the breadcrumb trail, course navigation menu
487 * (previous/next activity), calendar, and search forum block.
488 * If the theme does not set characters, appropriate defaults
489 * are set automatically. Please DO NOT
490 * use &lt; &gt; &raquo; - these are confusing for blind users.
492 public $rarrow = null;
495 * @var string Accessibility: Left arrow-like character is
496 * used in the breadcrumb trail, course navigation menu
497 * (previous/next activity), calendar, and search forum block.
498 * If the theme does not set characters, appropriate defaults
499 * are set automatically. Please DO NOT
500 * use &lt; &gt; &raquo; - these are confusing for blind users.
502 public $larrow = null;
505 * @var string Accessibility: Up arrow-like character is used in
506 * the book heirarchical navigation.
507 * If the theme does not set characters, appropriate defaults
508 * are set automatically. Please DO NOT
509 * use ^ - this is confusing for blind users.
511 public $uarrow = null;
514 * @var string Accessibility: Down arrow-like character.
515 * If the theme does not set characters, appropriate defaults
516 * are set automatically.
518 public $darrow = null;
521 * @var bool Some themes may want to disable ajax course editing.
523 public $enablecourseajax = true;
526 * @var string Determines served document types
527 * - 'html5' the only officially supported doctype in Moodle
528 * - 'xhtml5' may be used in development for validation (not intended for production servers!)
529 * - 'xhtml' XHTML 1.0 Strict for legacy themes only
531 public $doctype = 'html5';
534 * @var string requiredblocks If set to a string, will list the block types that cannot be deleted. Defaults to
535 * navigation and settings.
537 public $requiredblocks = false;
539 //==Following properties are not configurable from theme config.php==
542 * @var string The name of this theme. Set automatically when this theme is
543 * loaded. This can not be set in theme config.php
545 public $name;
548 * @var string The folder where this themes files are stored. This is set
549 * automatically. This can not be set in theme config.php
551 public $dir;
554 * @var stdClass Theme settings stored in config_plugins table.
555 * This can not be set in theme config.php
557 public $settings = null;
560 * @var bool If set to true and the theme enables the dock then blocks will be able
561 * to be moved to the special dock
563 public $enable_dock = false;
566 * @var bool If set to true then this theme will not be shown in the theme selector unless
567 * theme designer mode is turned on.
569 public $hidefromselector = false;
572 * @var array list of YUI CSS modules to be included on each page. This may be used
573 * to remove cssreset and use cssnormalise module instead.
575 public $yuicssmodules = array('cssreset', 'cssfonts', 'cssgrids', 'cssbase');
578 * An associative array of block manipulations that should be made if the user is using an rtl language.
579 * The key is the original block region, and the value is the block region to change to.
580 * This is used when displaying blocks for regions only.
581 * @var array
583 public $blockrtlmanipulations = array();
586 * @var renderer_factory Instance of the renderer_factory implementation
587 * we are using. Implementation detail.
589 protected $rf = null;
592 * @var array List of parent config objects.
594 protected $parent_configs = array();
597 * Used to determine whether we can serve SVG images or not.
598 * @var bool
600 private $usesvg = null;
603 * Whether in RTL mode or not.
604 * @var bool
606 protected $rtlmode = false;
609 * The SCSS file to compile (without .scss), located in the scss/ folder of the theme.
610 * Or a Closure, which receives the theme_config as argument and must
611 * return the SCSS content.
612 * @var string|Closure
614 public $scss = false;
617 * Local cache of the SCSS property.
618 * @var false|array
620 protected $scsscache = null;
623 * The name of the function to call to get the SCSS code to inject.
624 * @var string
626 public $extrascsscallback = null;
629 * The name of the function to call to get SCSS to prepend.
630 * @var string
632 public $prescsscallback = null;
635 * Sets the render method that should be used for rendering custom block regions by scripts such as my/index.php
636 * Defaults to {@link core_renderer::blocks_for_region()}
637 * @var string
639 public $blockrendermethod = null;
642 * Remember the results of icon remapping for the current page.
643 * @var array
645 public $remapiconcache = [];
648 * The name of the function to call to get precompiled CSS.
649 * @var string
651 public $precompiledcsscallback = null;
654 * Whether the theme uses course index.
655 * @var bool
657 public $usescourseindex = false;
660 * Configuration for the page activity header
661 * @var array
663 public $activityheaderconfig = [];
666 * For backward compatibility with old themes.
667 * BLOCK_ADDBLOCK_POSITION_DEFAULT, BLOCK_ADDBLOCK_POSITION_FLATNAV.
668 * @var int
670 public $addblockposition;
673 * editor_scss file(s) provided by this theme.
674 * @var array
676 public $editor_scss;
679 * Name of the class extending \core\output\icon_system.
680 * @var string
682 public $iconsystem;
685 * Theme defines its own editing mode switch.
686 * @var bool
688 public $haseditswitch = false;
691 * Load the config.php file for a particular theme, and return an instance
692 * of this class. (That is, this is a factory method.)
694 * @param string $themename the name of the theme.
695 * @return theme_config an instance of this class.
697 public static function load($themename) {
698 global $CFG;
700 // load theme settings from db
701 try {
702 $settings = get_config('theme_'.$themename);
703 } catch (dml_exception $e) {
704 // most probably moodle tables not created yet
705 $settings = new stdClass();
708 if ($config = theme_config::find_theme_config($themename, $settings)) {
709 return new theme_config($config);
711 } else if ($themename == theme_config::DEFAULT_THEME) {
712 throw new coding_exception('Default theme '.theme_config::DEFAULT_THEME.' not available or broken!');
714 } else if ($config = theme_config::find_theme_config($CFG->theme, $settings)) {
715 debugging('This page should be using theme ' . $themename .
716 ' which cannot be initialised. Falling back to the site theme ' . $CFG->theme, DEBUG_NORMAL);
717 return new theme_config($config);
719 } else {
720 // bad luck, the requested theme has some problems - admin see details in theme config
721 debugging('This page should be using theme ' . $themename .
722 ' which cannot be initialised. Nor can the site theme ' . $CFG->theme .
723 '. Falling back to ' . theme_config::DEFAULT_THEME, DEBUG_NORMAL);
724 return new theme_config(theme_config::find_theme_config(theme_config::DEFAULT_THEME, $settings));
729 * Theme diagnostic code. It is very problematic to send debug output
730 * to the actual CSS file, instead this functions is supposed to
731 * diagnose given theme and highlights all potential problems.
732 * This information should be available from the theme selection page
733 * or some other debug page for theme designers.
735 * @param string $themename
736 * @return array description of problems
738 public static function diagnose($themename) {
739 //TODO: MDL-21108
740 return array();
744 * Private constructor, can be called only from the factory method.
745 * @param stdClass $config
747 private function __construct($config) {
748 global $CFG; //needed for included lib.php files
750 $this->settings = $config->settings;
751 $this->name = $config->name;
752 $this->dir = $config->dir;
754 if ($this->name != self::DEFAULT_THEME) {
755 $baseconfig = self::find_theme_config(self::DEFAULT_THEME, $this->settings);
756 } else {
757 $baseconfig = $config;
760 $configurable = [
761 'parents', 'sheets', 'parents_exclude_sheets', 'plugins_exclude_sheets', 'usefallback',
762 'javascripts', 'javascripts_footer', 'parents_exclude_javascripts',
763 'layouts', 'enablecourseajax', 'requiredblocks',
764 'rendererfactory', 'csspostprocess', 'editor_sheets', 'editor_scss', 'rarrow', 'larrow', 'uarrow', 'darrow',
765 'hidefromselector', 'doctype', 'yuicssmodules', 'blockrtlmanipulations', 'blockrendermethod',
766 'scss', 'extrascsscallback', 'prescsscallback', 'csstreepostprocessor', 'addblockposition',
767 'iconsystem', 'precompiledcsscallback', 'haseditswitch', 'usescourseindex', 'activityheaderconfig',
768 'removedprimarynavitems',
771 foreach ($config as $key=>$value) {
772 if (in_array($key, $configurable)) {
773 $this->$key = $value;
777 // verify all parents and load configs and renderers
778 foreach ($this->parents as $parent) {
779 if (!$parent_config = theme_config::find_theme_config($parent, $this->settings)) {
780 // this is not good - better exclude faulty parents
781 continue;
783 $libfile = $parent_config->dir.'/lib.php';
784 if (is_readable($libfile)) {
785 // theme may store various function here
786 include_once($libfile);
788 $renderersfile = $parent_config->dir.'/renderers.php';
789 if (is_readable($renderersfile)) {
790 // may contain core and plugin renderers and renderer factory
791 include_once($renderersfile);
793 $this->parent_configs[$parent] = $parent_config;
795 $libfile = $this->dir.'/lib.php';
796 if (is_readable($libfile)) {
797 // theme may store various function here
798 include_once($libfile);
800 $rendererfile = $this->dir.'/renderers.php';
801 if (is_readable($rendererfile)) {
802 // may contain core and plugin renderers and renderer factory
803 include_once($rendererfile);
804 } else {
805 // check if renderers.php file is missnamed renderer.php
806 if (is_readable($this->dir.'/renderer.php')) {
807 debugging('Developer hint: '.$this->dir.'/renderer.php should be renamed to ' . $this->dir."/renderers.php.
808 See: http://docs.moodle.org/dev/Output_renderers#Theme_renderers.", DEBUG_DEVELOPER);
812 // cascade all layouts properly
813 foreach ($baseconfig->layouts as $layout=>$value) {
814 if (!isset($this->layouts[$layout])) {
815 foreach ($this->parent_configs as $parent_config) {
816 if (isset($parent_config->layouts[$layout])) {
817 $this->layouts[$layout] = $parent_config->layouts[$layout];
818 continue 2;
821 $this->layouts[$layout] = $value;
825 //fix arrows if needed
826 $this->check_theme_arrows();
830 * Let the theme initialise the page object (usually $PAGE).
832 * This may be used for example to request jQuery in add-ons.
834 * @param moodle_page $page
836 public function init_page(moodle_page $page) {
837 $themeinitfunction = 'theme_'.$this->name.'_page_init';
838 if (function_exists($themeinitfunction)) {
839 $themeinitfunction($page);
844 * Checks if arrows $THEME->rarrow, $THEME->larrow, $THEME->uarrow, $THEME->darrow have been set (theme/-/config.php).
845 * If not it applies sensible defaults.
847 * Accessibility: right and left arrow Unicode characters for breadcrumb, calendar,
848 * search forum block, etc. Important: these are 'silent' in a screen-reader
849 * (unlike &gt; &raquo;), and must be accompanied by text.
851 private function check_theme_arrows() {
852 if (!isset($this->rarrow) and !isset($this->larrow)) {
853 // Default, looks good in Win XP/IE 6, Win/Firefox 1.5, Win/Netscape 8...
854 // Also OK in Win 9x/2K/IE 5.x
855 $this->rarrow = '&#x25BA;';
856 $this->larrow = '&#x25C4;';
857 $this->uarrow = '&#x25B2;';
858 $this->darrow = '&#x25BC;';
859 if (empty($_SERVER['HTTP_USER_AGENT'])) {
860 $uagent = '';
861 } else {
862 $uagent = $_SERVER['HTTP_USER_AGENT'];
864 if (false !== strpos($uagent, 'Opera')
865 || false !== strpos($uagent, 'Mac')) {
866 // Looks good in Win XP/Mac/Opera 8/9, Mac/Firefox 2, Camino, Safari.
867 // Not broken in Mac/IE 5, Mac/Netscape 7 (?).
868 $this->rarrow = '&#x25B6;&#xFE0E;';
869 $this->larrow = '&#x25C0;&#xFE0E;';
871 elseif ((false !== strpos($uagent, 'Konqueror'))
872 || (false !== strpos($uagent, 'Android'))) {
873 // The fonts on Android don't include the characters required for this to work as expected.
874 // So we use the same ones Konqueror uses.
875 $this->rarrow = '&rarr;';
876 $this->larrow = '&larr;';
877 $this->uarrow = '&uarr;';
878 $this->darrow = '&darr;';
880 elseif (isset($_SERVER['HTTP_ACCEPT_CHARSET'])
881 && false === stripos($_SERVER['HTTP_ACCEPT_CHARSET'], 'utf-8')) {
882 // (Win/IE 5 doesn't set ACCEPT_CHARSET, but handles Unicode.)
883 // To be safe, non-Unicode browsers!
884 $this->rarrow = '&gt;';
885 $this->larrow = '&lt;';
886 $this->uarrow = '^';
887 $this->darrow = 'v';
890 // RTL support - in RTL languages, swap r and l arrows
891 if (right_to_left()) {
892 $t = $this->rarrow;
893 $this->rarrow = $this->larrow;
894 $this->larrow = $t;
900 * Returns output renderer prefixes, these are used when looking
901 * for the overridden renderers in themes.
903 * @return array
905 public function renderer_prefixes() {
906 global $CFG; // just in case the included files need it
908 $prefixes = array('theme_'.$this->name);
910 foreach ($this->parent_configs as $parent) {
911 $prefixes[] = 'theme_'.$parent->name;
914 return $prefixes;
918 * Returns the stylesheet URL of this editor content
920 * @param bool $encoded false means use & and true use &amp; in URLs
921 * @return moodle_url
923 public function editor_css_url($encoded=true) {
924 global $CFG;
925 $rev = theme_get_revision();
926 $type = 'editor';
927 if (right_to_left()) {
928 $type .= '-rtl';
931 if ($rev > -1) {
932 $themesubrevision = theme_get_sub_revision_for_theme($this->name);
934 // Provide the sub revision to allow us to invalidate cached theme CSS
935 // on a per theme basis, rather than globally.
936 if ($themesubrevision && $themesubrevision > 0) {
937 $rev .= "_{$themesubrevision}";
940 $url = new moodle_url("/theme/styles.php");
941 if (!empty($CFG->slasharguments)) {
942 $url->set_slashargument("/{$this->name}/{$rev}/{$type}", 'noparam', true);
943 } else {
944 $url->params([
945 'theme' => $this->name,
946 'rev' => $rev,
947 'type' => $type,
950 } else {
951 $url = new moodle_url('/theme/styles_debug.php', [
952 'theme' => $this->name,
953 'type' => $type,
956 return $url;
960 * Returns the content of the CSS to be used in editor content
962 * @return array
964 public function editor_css_files() {
965 $files = array();
967 // First editor plugins.
968 $plugins = core_component::get_plugin_list('editor');
969 foreach ($plugins as $plugin => $fulldir) {
970 $sheetfile = "$fulldir/editor_styles.css";
971 if (is_readable($sheetfile)) {
972 $files['plugin_'.$plugin] = $sheetfile;
975 $subplugintypes = core_component::get_subplugins("editor_{$plugin}") ?? [];
976 // Fetch sheets for any editor subplugins.
977 foreach ($subplugintypes as $plugintype => $subplugins) {
978 foreach ($subplugins as $subplugin) {
979 $plugindir = core_component::get_plugin_directory($plugintype, $subplugin);
980 $sheetfile = "{$plugindir}/editor_styles.css";
981 if (is_readable($sheetfile)) {
982 $files["{$plugintype}_{$subplugin}"] = $sheetfile;
988 // Then parent themes - base first, the immediate parent last.
989 foreach (array_reverse($this->parent_configs) as $parent_config) {
990 if (empty($parent_config->editor_sheets)) {
991 continue;
993 foreach ($parent_config->editor_sheets as $sheet) {
994 $sheetfile = "$parent_config->dir/style/$sheet.css";
995 if (is_readable($sheetfile)) {
996 $files['parent_'.$parent_config->name.'_'.$sheet] = $sheetfile;
1000 // Finally this theme.
1001 if (!empty($this->editor_sheets)) {
1002 foreach ($this->editor_sheets as $sheet) {
1003 $sheetfile = "$this->dir/style/$sheet.css";
1004 if (is_readable($sheetfile)) {
1005 $files['theme_'.$sheet] = $sheetfile;
1010 return $files;
1014 * Compiles and returns the content of the SCSS to be used in editor content
1016 * @return string Compiled CSS from the editor SCSS
1018 public function editor_scss_to_css() {
1019 $css = '';
1020 $dir = $this->dir;
1021 $filenames = [];
1023 // Use editor_scss file(s) provided by this theme if set.
1024 if (!empty($this->editor_scss)) {
1025 $filenames = $this->editor_scss;
1026 } else {
1027 // If no editor_scss set, move up theme hierarchy until one is found (if at all).
1028 // This is so child themes only need to set editor_scss if an override is required.
1029 foreach (array_reverse($this->parent_configs) as $parentconfig) {
1030 if (!empty($parentconfig->editor_scss)) {
1031 $dir = $parentconfig->dir;
1032 $filenames = $parentconfig->editor_scss;
1034 // Config found, stop looking.
1035 break;
1040 if (!empty($filenames)) {
1041 $compiler = new core_scss();
1043 foreach ($filenames as $filename) {
1044 $compiler->set_file("{$dir}/scss/{$filename}.scss");
1046 try {
1047 $css .= $compiler->to_css();
1048 } catch (\Exception $e) {
1049 debugging('Error while compiling editor SCSS: ' . $e->getMessage(), DEBUG_DEVELOPER);
1054 return $css;
1058 * Get the stylesheet URL of this theme.
1060 * @param moodle_page $page Not used... deprecated?
1061 * @return moodle_url[]
1063 public function css_urls(moodle_page $page) {
1064 global $CFG;
1066 $rev = theme_get_revision();
1068 $urls = array();
1070 $svg = $this->use_svg_icons();
1071 $separate = (core_useragent::is_ie() && !core_useragent::check_ie_version('10'));
1073 if ($rev > -1) {
1074 $filename = right_to_left() ? 'all-rtl' : 'all';
1075 $url = new moodle_url("/theme/styles.php");
1076 $themesubrevision = theme_get_sub_revision_for_theme($this->name);
1078 // Provide the sub revision to allow us to invalidate cached theme CSS
1079 // on a per theme basis, rather than globally.
1080 if ($themesubrevision && $themesubrevision > 0) {
1081 $rev .= "_{$themesubrevision}";
1084 if (!empty($CFG->slasharguments)) {
1085 $slashargs = '';
1086 if (!$svg) {
1087 // We add a simple /_s to the start of the path.
1088 // The underscore is used to ensure that it isn't a valid theme name.
1089 $slashargs .= '/_s'.$slashargs;
1091 $slashargs .= '/'.$this->name.'/'.$rev.'/'.$filename;
1092 if ($separate) {
1093 $slashargs .= '/chunk0';
1095 $url->set_slashargument($slashargs, 'noparam', true);
1096 } else {
1097 $params = array('theme' => $this->name, 'rev' => $rev, 'type' => $filename);
1098 if (!$svg) {
1099 // We add an SVG param so that we know not to serve SVG images.
1100 // We do this because all modern browsers support SVG and this param will one day be removed.
1101 $params['svg'] = '0';
1103 if ($separate) {
1104 $params['chunk'] = '0';
1106 $url->params($params);
1108 $urls[] = $url;
1110 } else {
1111 $baseurl = new moodle_url('/theme/styles_debug.php');
1113 $css = $this->get_css_files(true);
1114 if (!$svg) {
1115 // We add an SVG param so that we know not to serve SVG images.
1116 // We do this because all modern browsers support SVG and this param will one day be removed.
1117 $baseurl->param('svg', '0');
1119 if (right_to_left()) {
1120 $baseurl->param('rtl', 1);
1122 if ($separate) {
1123 // We might need to chunk long files.
1124 $baseurl->param('chunk', '0');
1126 if (core_useragent::is_ie()) {
1127 // Lalala, IE does not allow more than 31 linked CSS files from main document.
1128 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name, 'type'=>'ie', 'subtype'=>'plugins'));
1129 foreach ($css['parents'] as $parent=>$sheets) {
1130 // We need to serve parents individually otherwise we may easily exceed the style limit IE imposes (4096).
1131 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'ie', 'subtype'=>'parents', 'sheet'=>$parent));
1133 if ($this->get_scss_property()) {
1134 // No need to define the type as IE here.
1135 $urls[] = new moodle_url($baseurl, array('theme' => $this->name, 'type' => 'scss'));
1137 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name, 'type'=>'ie', 'subtype'=>'theme'));
1139 } else {
1140 foreach ($css['plugins'] as $plugin=>$unused) {
1141 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'plugin', 'subtype'=>$plugin));
1143 foreach ($css['parents'] as $parent=>$sheets) {
1144 foreach ($sheets as $sheet=>$unused2) {
1145 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'parent', 'subtype'=>$parent, 'sheet'=>$sheet));
1148 foreach ($css['theme'] as $sheet => $filename) {
1149 if ($sheet === self::SCSS_KEY) {
1150 // This is the theme SCSS file.
1151 $urls[] = new moodle_url($baseurl, array('theme' => $this->name, 'type' => 'scss'));
1152 } else {
1153 // Sheet first in order to make long urls easier to read.
1154 $urls[] = new moodle_url($baseurl, array('sheet'=>$sheet, 'theme'=>$this->name, 'type'=>'theme'));
1160 // Allow themes to change the css url to something like theme/mytheme/mycss.php.
1161 component_callback('theme_' . $this->name, 'alter_css_urls', [&$urls]);
1162 return $urls;
1166 * Get the whole css stylesheet for production mode.
1168 * NOTE: this method is not expected to be used from any addons.
1170 * @return string CSS markup compressed
1172 public function get_css_content() {
1174 $csscontent = '';
1175 foreach ($this->get_css_files(false) as $type => $value) {
1176 foreach ($value as $identifier => $val) {
1177 if (is_array($val)) {
1178 foreach ($val as $v) {
1179 $csscontent .= file_get_contents($v) . "\n";
1181 } else {
1182 if ($type === 'theme' && $identifier === self::SCSS_KEY) {
1183 // We need the content from SCSS because this is the SCSS file from the theme.
1184 if ($compiled = $this->get_css_content_from_scss(false)) {
1185 $csscontent .= $compiled;
1186 } else {
1187 // The compiler failed so default back to any precompiled css that might
1188 // exist.
1189 $csscontent .= $this->get_precompiled_css_content();
1191 } else {
1192 $csscontent .= file_get_contents($val) . "\n";
1197 $csscontent = $this->post_process($csscontent);
1198 $csscontent = core_minify::css($csscontent);
1200 return $csscontent;
1203 * Set post processed CSS content cache.
1205 * @param string $csscontent The post processed CSS content.
1206 * @return bool True if the content was successfully cached.
1208 public function set_css_content_cache($csscontent) {
1210 $cache = cache::make('core', 'postprocessedcss');
1211 $key = $this->get_css_cache_key();
1213 return $cache->set($key, $csscontent);
1217 * Return whether the post processed CSS content has been cached.
1219 * @return bool Whether the post-processed CSS is available in the cache.
1221 public function has_css_cached_content() {
1223 $key = $this->get_css_cache_key();
1224 $cache = cache::make('core', 'postprocessedcss');
1226 return $cache->has($key);
1230 * Return cached post processed CSS content.
1232 * @return bool|string The cached css content or false if not found.
1234 public function get_css_cached_content() {
1236 $key = $this->get_css_cache_key();
1237 $cache = cache::make('core', 'postprocessedcss');
1239 return $cache->get($key);
1243 * Generate the css content cache key.
1245 * @return string The post processed css cache key.
1247 public function get_css_cache_key() {
1248 $nosvg = (!$this->use_svg_icons()) ? 'nosvg_' : '';
1249 $rtlmode = ($this->rtlmode == true) ? 'rtl' : 'ltr';
1251 return $nosvg . $this->name . '_' . $rtlmode;
1255 * Get the theme designer css markup,
1256 * the parameters are coming from css_urls().
1258 * NOTE: this method is not expected to be used from any addons.
1260 * @param string $type
1261 * @param string $subtype
1262 * @param string $sheet
1263 * @return string CSS markup
1265 public function get_css_content_debug($type, $subtype, $sheet) {
1266 if ($type === 'scss') {
1267 // The SCSS file of the theme is requested.
1268 $csscontent = $this->get_css_content_from_scss(true);
1269 if ($csscontent !== false) {
1270 return $this->post_process($csscontent);
1272 return '';
1275 $cssfiles = array();
1276 $css = $this->get_css_files(true);
1278 if ($type === 'ie') {
1279 // IE is a sloppy browser with weird limits, sorry.
1280 if ($subtype === 'plugins') {
1281 $cssfiles = $css['plugins'];
1283 } else if ($subtype === 'parents') {
1284 if (empty($sheet)) {
1285 // Do not bother with the empty parent here.
1286 } else {
1287 // Build up the CSS for that parent so we can serve it as one file.
1288 foreach ($css[$subtype][$sheet] as $parent => $css) {
1289 $cssfiles[] = $css;
1292 } else if ($subtype === 'theme') {
1293 $cssfiles = $css['theme'];
1294 foreach ($cssfiles as $key => $value) {
1295 if (in_array($key, [self::SCSS_KEY])) {
1296 // Remove the SCSS file from the theme CSS files.
1297 // The SCSS files use the type 'scss', not 'ie'.
1298 unset($cssfiles[$key]);
1303 } else if ($type === 'plugin') {
1304 if (isset($css['plugins'][$subtype])) {
1305 $cssfiles[] = $css['plugins'][$subtype];
1308 } else if ($type === 'parent') {
1309 if (isset($css['parents'][$subtype][$sheet])) {
1310 $cssfiles[] = $css['parents'][$subtype][$sheet];
1313 } else if ($type === 'theme') {
1314 if (isset($css['theme'][$sheet])) {
1315 $cssfiles[] = $css['theme'][$sheet];
1319 $csscontent = '';
1320 foreach ($cssfiles as $file) {
1321 $contents = file_get_contents($file);
1322 $contents = $this->post_process($contents);
1323 $comment = "/** Path: $type $subtype $sheet.' **/\n";
1324 $stats = '';
1325 $csscontent .= $comment.$stats.$contents."\n\n";
1328 return $csscontent;
1332 * Get the whole css stylesheet for editor iframe.
1334 * NOTE: this method is not expected to be used from any addons.
1336 * @return string CSS markup
1338 public function get_css_content_editor() {
1339 $css = '';
1340 $cssfiles = $this->editor_css_files();
1342 // If editor has static CSS, include it.
1343 foreach ($cssfiles as $file) {
1344 $css .= file_get_contents($file)."\n";
1347 // If editor has SCSS, compile and include it.
1348 if (($convertedscss = $this->editor_scss_to_css())) {
1349 $css .= $convertedscss;
1352 $output = $this->post_process($css);
1354 return $output;
1358 * Returns an array of organised CSS files required for this output.
1360 * @param bool $themedesigner
1361 * @return array nested array of file paths
1363 protected function get_css_files($themedesigner) {
1364 global $CFG;
1366 $cache = null;
1367 $cachekey = 'cssfiles';
1368 if ($themedesigner) {
1369 require_once($CFG->dirroot.'/lib/csslib.php');
1370 // We need some kind of caching here because otherwise the page navigation becomes
1371 // way too slow in theme designer mode. Feel free to create full cache definition later...
1372 $cache = cache::make_from_params(cache_store::MODE_APPLICATION, 'core', 'themedesigner', array('theme' => $this->name));
1373 if ($files = $cache->get($cachekey)) {
1374 if ($files['created'] > time() - THEME_DESIGNER_CACHE_LIFETIME) {
1375 unset($files['created']);
1376 return $files;
1381 $cssfiles = array('plugins'=>array(), 'parents'=>array(), 'theme'=>array());
1383 // Get all plugin sheets.
1384 $excludes = $this->resolve_excludes('plugins_exclude_sheets');
1385 if ($excludes !== true) {
1386 foreach (core_component::get_plugin_types() as $type=>$unused) {
1387 if ($type === 'theme' || (!empty($excludes[$type]) and $excludes[$type] === true)) {
1388 continue;
1390 $plugins = core_component::get_plugin_list($type);
1391 foreach ($plugins as $plugin=>$fulldir) {
1392 if (!empty($excludes[$type]) and is_array($excludes[$type])
1393 and in_array($plugin, $excludes[$type])) {
1394 continue;
1397 // Get the CSS from the plugin.
1398 $sheetfile = "$fulldir/styles.css";
1399 if (is_readable($sheetfile)) {
1400 $cssfiles['plugins'][$type.'_'.$plugin] = $sheetfile;
1403 // Create a list of candidate sheets from parents (direct parent last) and current theme.
1404 $candidates = array();
1405 foreach (array_reverse($this->parent_configs) as $parent_config) {
1406 $candidates[] = $parent_config->name;
1408 $candidates[] = $this->name;
1410 // Add the sheets found.
1411 foreach ($candidates as $candidate) {
1412 $sheetthemefile = "$fulldir/styles_{$candidate}.css";
1413 if (is_readable($sheetthemefile)) {
1414 $cssfiles['plugins'][$type.'_'.$plugin.'_'.$candidate] = $sheetthemefile;
1421 // Find out wanted parent sheets.
1422 $excludes = $this->resolve_excludes('parents_exclude_sheets');
1423 if ($excludes !== true) {
1424 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
1425 $parent = $parent_config->name;
1426 if (empty($parent_config->sheets) || (!empty($excludes[$parent]) and $excludes[$parent] === true)) {
1427 continue;
1429 foreach ($parent_config->sheets as $sheet) {
1430 if (!empty($excludes[$parent]) && is_array($excludes[$parent])
1431 && in_array($sheet, $excludes[$parent])) {
1432 continue;
1435 // We never refer to the parent LESS files.
1436 $sheetfile = "$parent_config->dir/style/$sheet.css";
1437 if (is_readable($sheetfile)) {
1438 $cssfiles['parents'][$parent][$sheet] = $sheetfile;
1445 // Current theme sheets.
1446 // We first add the SCSS file because we want the CSS ones to
1447 // be included after the SCSS code.
1448 if ($this->get_scss_property()) {
1449 $cssfiles['theme'][self::SCSS_KEY] = true;
1451 if (is_array($this->sheets)) {
1452 foreach ($this->sheets as $sheet) {
1453 $sheetfile = "$this->dir/style/$sheet.css";
1454 if (is_readable($sheetfile) && !isset($cssfiles['theme'][$sheet])) {
1455 $cssfiles['theme'][$sheet] = $sheetfile;
1460 if ($cache) {
1461 $files = $cssfiles;
1462 $files['created'] = time();
1463 $cache->set($cachekey, $files);
1465 return $cssfiles;
1469 * Return the CSS content generated from the SCSS file.
1471 * @param bool $themedesigner True if theme designer is enabled.
1472 * @return bool|string Return false when the compilation failed. Else the compiled string.
1474 protected function get_css_content_from_scss($themedesigner) {
1475 global $CFG;
1477 list($paths, $scss) = $this->get_scss_property();
1478 if (!$scss) {
1479 throw new coding_exception('The theme did not define a SCSS file, or it is not readable.');
1482 // We might need more memory/time to do this, so let's play safe.
1483 raise_memory_limit(MEMORY_EXTRA);
1484 core_php_time_limit::raise(300);
1486 // TODO: MDL-62757 When changing anything in this method please do not forget to check
1487 // if the validate() method in class admin_setting_configthemepreset needs updating too.
1489 $cachedir = make_localcache_directory('scsscache-' . $this->name, false);
1490 $cacheoptions = [];
1491 if ($themedesigner) {
1492 $cacheoptions = array(
1493 'cacheDir' => $cachedir,
1494 'prefix' => 'scssphp_',
1495 'forceRefresh' => false,
1497 } else {
1498 if (file_exists($cachedir)) {
1499 remove_dir($cachedir);
1503 // Set-up the compiler.
1504 $compiler = new core_scss($cacheoptions);
1506 if ($this->supports_source_maps($themedesigner)) {
1507 // Enable source maps.
1508 $compiler->setSourceMapOptions([
1509 'sourceMapBasepath' => str_replace('\\', '/', $CFG->dirroot),
1510 'sourceMapRootpath' => $CFG->wwwroot . '/'
1512 $compiler->setSourceMap($compiler::SOURCE_MAP_INLINE);
1515 $compiler->prepend_raw_scss($this->get_pre_scss_code());
1516 if (is_string($scss)) {
1517 $compiler->set_file($scss);
1518 } else {
1519 $compiler->append_raw_scss($scss($this));
1520 $compiler->setImportPaths($paths);
1522 $compiler->append_raw_scss($this->get_extra_scss_code());
1524 try {
1525 // Compile!
1526 $compiled = $compiler->to_css();
1528 } catch (\Exception $e) {
1529 $compiled = false;
1530 debugging('Error while compiling SCSS: ' . $e->getMessage(), DEBUG_DEVELOPER);
1533 // Try to save memory.
1534 $compiler = null;
1535 unset($compiler);
1537 return $compiled;
1541 * Return the precompiled CSS if the precompiledcsscallback exists.
1543 * @return string Return compiled css.
1545 public function get_precompiled_css_content() {
1546 $configs = array_reverse($this->parent_configs) + [$this];
1547 $css = '';
1549 foreach ($configs as $config) {
1550 if (isset($config->precompiledcsscallback)) {
1551 $function = $config->precompiledcsscallback;
1552 if (function_exists($function)) {
1553 $css .= $function($this);
1557 return $css;
1561 * Get the icon system to use.
1563 * @return string
1565 public function get_icon_system() {
1567 // Getting all the candidate functions.
1568 $system = false;
1569 if (isset($this->iconsystem) && \core\output\icon_system::is_valid_system($this->iconsystem)) {
1570 return $this->iconsystem;
1572 foreach ($this->parent_configs as $parent_config) {
1573 if (isset($parent_config->iconsystem) && \core\output\icon_system::is_valid_system($parent_config->iconsystem)) {
1574 return $parent_config->iconsystem;
1577 return \core\output\icon_system::STANDARD;
1581 * Return extra SCSS code to add when compiling.
1583 * This is intended to be used by themes to inject some SCSS code
1584 * before it gets compiled. If you want to inject variables you
1585 * should use {@link self::get_scss_variables()}.
1587 * @return string The SCSS code to inject.
1589 public function get_extra_scss_code() {
1590 $content = '';
1592 // Getting all the candidate functions.
1593 $candidates = array();
1594 foreach ($this->parent_configs as $parent_config) {
1595 if (!isset($parent_config->extrascsscallback)) {
1596 continue;
1598 $candidates[] = $parent_config->extrascsscallback;
1601 if (isset($this->extrascsscallback)) {
1602 $candidates[] = $this->extrascsscallback;
1605 // Calling the functions.
1606 foreach ($candidates as $function) {
1607 if (function_exists($function)) {
1608 $content .= "\n/** Extra SCSS from $function **/\n" . $function($this) . "\n";
1612 return $content;
1616 * SCSS code to prepend when compiling.
1618 * This is intended to be used by themes to inject SCSS code before it gets compiled.
1620 * @return string The SCSS code to inject.
1622 public function get_pre_scss_code() {
1623 $content = '';
1625 // Getting all the candidate functions.
1626 $candidates = array();
1627 foreach ($this->parent_configs as $parent_config) {
1628 if (!isset($parent_config->prescsscallback)) {
1629 continue;
1631 $candidates[] = $parent_config->prescsscallback;
1634 if (isset($this->prescsscallback)) {
1635 $candidates[] = $this->prescsscallback;
1638 // Calling the functions.
1639 foreach ($candidates as $function) {
1640 if (function_exists($function)) {
1641 $content .= "\n/** Pre-SCSS from $function **/\n" . $function($this) . "\n";
1645 return $content;
1649 * Get the SCSS property.
1651 * This resolves whether a SCSS file (or content) has to be used when generating
1652 * the stylesheet for the theme. It will look at parents themes and check the
1653 * SCSS properties there.
1655 * @return False when SCSS is not used.
1656 * An array with the import paths, and the path to the SCSS file or Closure as second.
1658 public function get_scss_property() {
1659 if ($this->scsscache === null) {
1660 $configs = [$this] + $this->parent_configs;
1661 $scss = null;
1663 foreach ($configs as $config) {
1664 $path = "{$config->dir}/scss";
1666 // We collect the SCSS property until we've found one.
1667 if (empty($scss) && !empty($config->scss)) {
1668 $candidate = is_string($config->scss) ? "{$path}/{$config->scss}.scss" : $config->scss;
1669 if ($candidate instanceof Closure) {
1670 $scss = $candidate;
1671 } else if (is_string($candidate) && is_readable($candidate)) {
1672 $scss = $candidate;
1676 // We collect the import paths once we've found a SCSS property.
1677 if ($scss && is_dir($path)) {
1678 $paths[] = $path;
1683 $this->scsscache = $scss !== null ? [$paths, $scss] : false;
1686 return $this->scsscache;
1690 * Generate a URL to the file that serves theme JavaScript files.
1692 * If we determine that the theme has no relevant files, then we return
1693 * early with a null value.
1695 * @param bool $inhead true means head url, false means footer
1696 * @return moodle_url|null
1698 public function javascript_url($inhead) {
1699 global $CFG;
1701 $rev = theme_get_revision();
1702 $params = array('theme'=>$this->name,'rev'=>$rev);
1703 $params['type'] = $inhead ? 'head' : 'footer';
1705 // Return early if there are no files to serve
1706 if (count($this->javascript_files($params['type'])) === 0) {
1707 return null;
1710 if (!empty($CFG->slasharguments) and $rev > 0) {
1711 $url = new moodle_url("/theme/javascript.php");
1712 $url->set_slashargument('/'.$this->name.'/'.$rev.'/'.$params['type'], 'noparam', true);
1713 return $url;
1714 } else {
1715 return new moodle_url('/theme/javascript.php', $params);
1720 * Get the URL's for the JavaScript files used by this theme.
1721 * They won't be served directly, instead they'll be mediated through
1722 * theme/javascript.php.
1724 * @param string $type Either javascripts_footer, or javascripts
1725 * @return array
1727 public function javascript_files($type) {
1728 if ($type === 'footer') {
1729 $type = 'javascripts_footer';
1730 } else {
1731 $type = 'javascripts';
1734 $js = array();
1735 // find out wanted parent javascripts
1736 $excludes = $this->resolve_excludes('parents_exclude_javascripts');
1737 if ($excludes !== true) {
1738 foreach (array_reverse($this->parent_configs) as $parent_config) { // base first, the immediate parent last
1739 $parent = $parent_config->name;
1740 if (empty($parent_config->$type)) {
1741 continue;
1743 if (!empty($excludes[$parent]) and $excludes[$parent] === true) {
1744 continue;
1746 foreach ($parent_config->$type as $javascript) {
1747 if (!empty($excludes[$parent]) and is_array($excludes[$parent])
1748 and in_array($javascript, $excludes[$parent])) {
1749 continue;
1751 $javascriptfile = "$parent_config->dir/javascript/$javascript.js";
1752 if (is_readable($javascriptfile)) {
1753 $js[] = $javascriptfile;
1759 // current theme javascripts
1760 if (is_array($this->$type)) {
1761 foreach ($this->$type as $javascript) {
1762 $javascriptfile = "$this->dir/javascript/$javascript.js";
1763 if (is_readable($javascriptfile)) {
1764 $js[] = $javascriptfile;
1768 return $js;
1772 * Resolves an exclude setting to the themes setting is applicable or the
1773 * setting of its closest parent.
1775 * @param string $variable The name of the setting the exclude setting to resolve
1776 * @param string $default
1777 * @return mixed
1779 protected function resolve_excludes($variable, $default = null) {
1780 $setting = $default;
1781 if (is_array($this->{$variable}) or $this->{$variable} === true) {
1782 $setting = $this->{$variable};
1783 } else {
1784 foreach ($this->parent_configs as $parent_config) { // the immediate parent first, base last
1785 if (!isset($parent_config->{$variable})) {
1786 continue;
1788 if (is_array($parent_config->{$variable}) or $parent_config->{$variable} === true) {
1789 $setting = $parent_config->{$variable};
1790 break;
1794 return $setting;
1798 * Returns the content of the one huge javascript file merged from all theme javascript files.
1800 * @param bool $type
1801 * @return string
1803 public function javascript_content($type) {
1804 $jsfiles = $this->javascript_files($type);
1805 $js = '';
1806 foreach ($jsfiles as $jsfile) {
1807 $js .= file_get_contents($jsfile)."\n";
1809 return $js;
1813 * Post processes CSS.
1815 * This method post processes all of the CSS before it is served for this theme.
1816 * This is done so that things such as image URL's can be swapped in and to
1817 * run any specific CSS post process method the theme has requested.
1818 * This allows themes to use CSS settings.
1820 * @param string $css The CSS to process.
1821 * @return string The processed CSS.
1823 public function post_process($css) {
1824 // now resolve all image locations
1825 if (preg_match_all('/\[\[pix:([a-z0-9_]+\|)?([^\]]+)\]\]/', $css, $matches, PREG_SET_ORDER)) {
1826 $replaced = array();
1827 foreach ($matches as $match) {
1828 if (isset($replaced[$match[0]])) {
1829 continue;
1831 $replaced[$match[0]] = true;
1832 $imagename = $match[2];
1833 $component = rtrim($match[1], '|');
1834 $imageurl = $this->image_url($imagename, $component)->out(false);
1835 // we do not need full url because the image.php is always in the same dir
1836 $imageurl = preg_replace('|^http.?://[^/]+|', '', $imageurl);
1837 $css = str_replace($match[0], $imageurl, $css);
1841 // Now resolve all font locations.
1842 if (preg_match_all('/\[\[font:([a-z0-9_]+\|)?([^\]]+)\]\]/', $css, $matches, PREG_SET_ORDER)) {
1843 $replaced = array();
1844 foreach ($matches as $match) {
1845 if (isset($replaced[$match[0]])) {
1846 continue;
1848 $replaced[$match[0]] = true;
1849 $fontname = $match[2];
1850 $component = rtrim($match[1], '|');
1851 $fonturl = $this->font_url($fontname, $component)->out(false);
1852 // We do not need full url because the font.php is always in the same dir.
1853 $fonturl = preg_replace('|^http.?://[^/]+|', '', $fonturl);
1854 $css = str_replace($match[0], $fonturl, $css);
1858 // Now resolve all theme settings or do any other postprocessing.
1859 // This needs to be done before calling core parser, since the parser strips [[settings]] tags.
1860 $csspostprocess = $this->csspostprocess;
1861 if ($csspostprocess && function_exists($csspostprocess)) {
1862 $css = $csspostprocess($css, $this);
1865 // Post processing using an object representation of CSS.
1866 $treeprocessor = $this->get_css_tree_post_processor();
1867 $needsparsing = !empty($treeprocessor) || !empty($this->rtlmode);
1868 if ($needsparsing) {
1870 // We might need more memory/time to do this, so let's play safe.
1871 raise_memory_limit(MEMORY_EXTRA);
1872 core_php_time_limit::raise(300);
1874 $parser = new core_cssparser($css);
1875 $csstree = $parser->parse();
1876 unset($parser);
1878 if ($this->rtlmode) {
1879 $this->rtlize($csstree);
1882 if ($treeprocessor) {
1883 $treeprocessor($csstree, $this);
1886 $css = $csstree->render();
1887 unset($csstree);
1890 return $css;
1894 * Flip a stylesheet to RTL.
1896 * @param Object $csstree The parsed CSS tree structure to flip.
1897 * @return void
1899 protected function rtlize($csstree) {
1900 $rtlcss = new core_rtlcss($csstree);
1901 $rtlcss->flip();
1905 * Return the direct URL for an image from the pix folder.
1907 * Use this function sparingly and never for icons. For icons use pix_icon or the pix helper in a mustache template.
1909 * @deprecated since Moodle 3.3
1910 * @param string $imagename the name of the icon.
1911 * @param string $component specification of one plugin like in get_string()
1912 * @return moodle_url
1914 public function pix_url($imagename, $component) {
1915 debugging('pix_url is deprecated. Use image_url for images and pix_icon for icons.', DEBUG_DEVELOPER);
1916 return $this->image_url($imagename, $component);
1920 * Return the direct URL for an image from the pix folder.
1922 * Use this function sparingly and never for icons. For icons use pix_icon or the pix helper in a mustache template.
1924 * @param string $imagename the name of the icon.
1925 * @param string $component specification of one plugin like in get_string()
1926 * @return moodle_url
1928 public function image_url($imagename, $component) {
1929 global $CFG;
1931 $params = array('theme'=>$this->name);
1932 $svg = $this->use_svg_icons();
1934 if (empty($component) or $component === 'moodle' or $component === 'core') {
1935 $params['component'] = 'core';
1936 } else {
1937 $params['component'] = $component;
1940 $rev = theme_get_revision();
1941 if ($rev != -1) {
1942 $params['rev'] = $rev;
1945 $params['image'] = $imagename;
1947 $url = new moodle_url("/theme/image.php");
1948 if (!empty($CFG->slasharguments) and $rev > 0) {
1949 $path = '/'.$params['theme'].'/'.$params['component'].'/'.$params['rev'].'/'.$params['image'];
1950 if (!$svg) {
1951 // We add a simple /_s to the start of the path.
1952 // The underscore is used to ensure that it isn't a valid theme name.
1953 $path = '/_s'.$path;
1955 $url->set_slashargument($path, 'noparam', true);
1956 } else {
1957 if (!$svg) {
1958 // We add an SVG param so that we know not to serve SVG images.
1959 // We do this because all modern browsers support SVG and this param will one day be removed.
1960 $params['svg'] = '0';
1962 $url->params($params);
1965 return $url;
1969 * Return the URL for a font
1971 * @param string $font the name of the font (including extension).
1972 * @param string $component specification of one plugin like in get_string()
1973 * @return moodle_url
1975 public function font_url($font, $component) {
1976 global $CFG;
1978 $params = array('theme'=>$this->name);
1980 if (empty($component) or $component === 'moodle' or $component === 'core') {
1981 $params['component'] = 'core';
1982 } else {
1983 $params['component'] = $component;
1986 $rev = theme_get_revision();
1987 if ($rev != -1) {
1988 $params['rev'] = $rev;
1991 $params['font'] = $font;
1993 $url = new moodle_url("/theme/font.php");
1994 if (!empty($CFG->slasharguments) and $rev > 0) {
1995 $path = '/'.$params['theme'].'/'.$params['component'].'/'.$params['rev'].'/'.$params['font'];
1996 $url->set_slashargument($path, 'noparam', true);
1997 } else {
1998 $url->params($params);
2001 return $url;
2005 * Returns URL to the stored file via pluginfile.php.
2007 * Note the theme must also implement pluginfile.php handler,
2008 * theme revision is used instead of the itemid.
2010 * @param string $setting
2011 * @param string $filearea
2012 * @return string protocol relative URL or null if not present
2014 public function setting_file_url($setting, $filearea) {
2015 global $CFG;
2017 if (empty($this->settings->$setting)) {
2018 return null;
2021 $component = 'theme_'.$this->name;
2022 $itemid = theme_get_revision();
2023 $filepath = $this->settings->$setting;
2024 $syscontext = context_system::instance();
2026 $url = moodle_url::make_file_url("$CFG->wwwroot/pluginfile.php", "/$syscontext->id/$component/$filearea/$itemid".$filepath);
2028 // Now this is tricky because the we can not hardcode http or https here, lets use the relative link.
2029 // Note: unfortunately moodle_url does not support //urls yet.
2031 $url = preg_replace('|^https?://|i', '//', $url->out(false));
2033 return $url;
2037 * Serve the theme setting file.
2039 * @param string $filearea
2040 * @param array $args
2041 * @param bool $forcedownload
2042 * @param array $options
2043 * @return bool may terminate if file not found or donotdie not specified
2045 public function setting_file_serve($filearea, $args, $forcedownload, $options) {
2046 global $CFG;
2047 require_once("$CFG->libdir/filelib.php");
2049 $syscontext = context_system::instance();
2050 $component = 'theme_'.$this->name;
2052 $revision = array_shift($args);
2053 if ($revision < 0) {
2054 $lifetime = 0;
2055 } else {
2056 $lifetime = 60*60*24*60;
2057 // By default, theme files must be cache-able by both browsers and proxies.
2058 if (!array_key_exists('cacheability', $options)) {
2059 $options['cacheability'] = 'public';
2063 $fs = get_file_storage();
2064 $relativepath = implode('/', $args);
2066 $fullpath = "/{$syscontext->id}/{$component}/{$filearea}/0/{$relativepath}";
2067 $fullpath = rtrim($fullpath, '/');
2068 if ($file = $fs->get_file_by_hash(sha1($fullpath))) {
2069 send_stored_file($file, $lifetime, 0, $forcedownload, $options);
2070 return true;
2071 } else {
2072 send_file_not_found();
2077 * Resolves the real image location.
2079 * $svg was introduced as an arg in 2.4. It is important because not all supported browsers support the use of SVG
2080 * and we need a way in which to turn it off.
2081 * By default SVG won't be used unless asked for. This is done for two reasons:
2082 * 1. It ensures that we don't serve svg images unless we really want to. The admin has selected to force them, of the users
2083 * browser supports SVG.
2084 * 2. We only serve SVG images from locations we trust. This must NOT include any areas where the image may have been uploaded
2085 * by the user due to security concerns.
2087 * @param string $image name of image, may contain relative path
2088 * @param string $component
2089 * @param bool $svg|null Should SVG images also be looked for? If null, resorts to $CFG->svgicons if that is set; falls back to
2090 * auto-detection of browser support otherwise
2091 * @return string full file path
2093 public function resolve_image_location($image, $component, $svg = false) {
2094 global $CFG;
2096 if (!is_bool($svg)) {
2097 // If $svg isn't a bool then we need to decide for ourselves.
2098 $svg = $this->use_svg_icons();
2101 if ($component === 'moodle' or $component === 'core' or empty($component)) {
2102 if ($imagefile = $this->image_exists("$this->dir/pix_core/$image", $svg)) {
2103 return $imagefile;
2105 foreach (array_reverse($this->parent_configs) as $parent_config) { // base first, the immediate parent last
2106 if ($imagefile = $this->image_exists("$parent_config->dir/pix_core/$image", $svg)) {
2107 return $imagefile;
2110 if ($imagefile = $this->image_exists("$CFG->dataroot/pix/$image", $svg)) {
2111 return $imagefile;
2113 if ($imagefile = $this->image_exists("$CFG->dirroot/pix/$image", $svg)) {
2114 return $imagefile;
2116 return null;
2118 } else if ($component === 'theme') { //exception
2119 if ($image === 'favicon') {
2120 return "$this->dir/pix/favicon.ico";
2122 if ($imagefile = $this->image_exists("$this->dir/pix/$image", $svg)) {
2123 return $imagefile;
2125 foreach (array_reverse($this->parent_configs) as $parent_config) { // base first, the immediate parent last
2126 if ($imagefile = $this->image_exists("$parent_config->dir/pix/$image", $svg)) {
2127 return $imagefile;
2130 return null;
2132 } else {
2133 if (strpos($component, '_') === false) {
2134 $component = "mod_{$component}";
2136 list($type, $plugin) = explode('_', $component, 2);
2138 // In Moodle 4.0 we introduced a new image format.
2139 // Support that image format here.
2140 $candidates = [$image];
2142 if ($type === 'mod') {
2143 if ($image === 'icon' || $image === 'monologo') {
2144 $candidates = ['monologo', 'icon'];
2145 if ($image === 'icon') {
2146 debugging(
2147 "The 'icon' image for activity modules has been replaced with a new 'monologo'. " .
2148 "Please update your calling code to fetch the new icon where possible. " .
2149 "Called for component {$component}.",
2150 DEBUG_DEVELOPER
2155 foreach ($candidates as $image) {
2156 if ($imagefile = $this->image_exists("$this->dir/pix_plugins/$type/$plugin/$image", $svg)) {
2157 return $imagefile;
2160 // Base first, the immediate parent last.
2161 foreach (array_reverse($this->parent_configs) as $parentconfig) {
2162 if ($imagefile = $this->image_exists("$parentconfig->dir/pix_plugins/$type/$plugin/$image", $svg)) {
2163 return $imagefile;
2166 if ($imagefile = $this->image_exists("$CFG->dataroot/pix_plugins/$type/$plugin/$image", $svg)) {
2167 return $imagefile;
2169 $dir = core_component::get_plugin_directory($type, $plugin);
2170 if ($imagefile = $this->image_exists("$dir/pix/$image", $svg)) {
2171 return $imagefile;
2174 return null;
2179 * Resolves the real font location.
2181 * @param string $font name of font file
2182 * @param string $component
2183 * @return string full file path
2185 public function resolve_font_location($font, $component) {
2186 global $CFG;
2188 if ($component === 'moodle' or $component === 'core' or empty($component)) {
2189 if (file_exists("$this->dir/fonts_core/$font")) {
2190 return "$this->dir/fonts_core/$font";
2192 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
2193 if (file_exists("$parent_config->dir/fonts_core/$font")) {
2194 return "$parent_config->dir/fonts_core/$font";
2197 if (file_exists("$CFG->dataroot/fonts/$font")) {
2198 return "$CFG->dataroot/fonts/$font";
2200 if (file_exists("$CFG->dirroot/lib/fonts/$font")) {
2201 return "$CFG->dirroot/lib/fonts/$font";
2203 return null;
2205 } else if ($component === 'theme') { // Exception.
2206 if (file_exists("$this->dir/fonts/$font")) {
2207 return "$this->dir/fonts/$font";
2209 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
2210 if (file_exists("$parent_config->dir/fonts/$font")) {
2211 return "$parent_config->dir/fonts/$font";
2214 return null;
2216 } else {
2217 if (strpos($component, '_') === false) {
2218 $component = 'mod_'.$component;
2220 list($type, $plugin) = explode('_', $component, 2);
2222 if (file_exists("$this->dir/fonts_plugins/$type/$plugin/$font")) {
2223 return "$this->dir/fonts_plugins/$type/$plugin/$font";
2225 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
2226 if (file_exists("$parent_config->dir/fonts_plugins/$type/$plugin/$font")) {
2227 return "$parent_config->dir/fonts_plugins/$type/$plugin/$font";
2230 if (file_exists("$CFG->dataroot/fonts_plugins/$type/$plugin/$font")) {
2231 return "$CFG->dataroot/fonts_plugins/$type/$plugin/$font";
2233 $dir = core_component::get_plugin_directory($type, $plugin);
2234 if (file_exists("$dir/fonts/$font")) {
2235 return "$dir/fonts/$font";
2237 return null;
2242 * Return true if we should look for SVG images as well.
2244 * @return bool
2246 public function use_svg_icons() {
2247 global $CFG;
2248 if ($this->usesvg === null) {
2250 if (!isset($CFG->svgicons)) {
2251 $this->usesvg = core_useragent::supports_svg();
2252 } else {
2253 // Force them on/off depending upon the setting.
2254 $this->usesvg = (bool)$CFG->svgicons;
2257 return $this->usesvg;
2261 * Forces the usesvg setting to either true or false, avoiding any decision making.
2263 * This function should only ever be used when absolutely required, and before any generation of image URL's has occurred.
2264 * DO NOT ABUSE THIS FUNCTION... not that you'd want to right ;)
2266 * @param bool $setting True to force the use of svg when available, null otherwise.
2268 public function force_svg_use($setting) {
2269 $this->usesvg = (bool)$setting;
2273 * Set to be in RTL mode.
2275 * This will likely be used when post processing the CSS before serving it.
2277 * @param bool $inrtl True when in RTL mode.
2279 public function set_rtl_mode($inrtl = true) {
2280 $this->rtlmode = $inrtl;
2284 * Checks if source maps are supported
2286 * @param bool $themedesigner True if theme designer is enabled.
2287 * @return boolean True if source maps are supported.
2289 public function supports_source_maps($themedesigner): bool {
2290 if (empty($this->rtlmode) && $themedesigner) {
2291 return true;
2293 return false;
2297 * Whether the theme is being served in RTL mode.
2299 * @return bool True when in RTL mode.
2301 public function get_rtl_mode() {
2302 return $this->rtlmode;
2306 * Checks if file with any image extension exists.
2308 * The order to these images was adjusted prior to the release of 2.4
2309 * At that point the were the following image counts in Moodle core:
2311 * - png = 667 in pix dirs (1499 total)
2312 * - gif = 385 in pix dirs (606 total)
2313 * - jpg = 62 in pix dirs (74 total)
2314 * - jpeg = 0 in pix dirs (1 total)
2316 * There is work in progress to move towards SVG presently hence that has been prioritiesed.
2318 * @param string $filepath
2319 * @param bool $svg If set to true SVG images will also be looked for.
2320 * @return string image name with extension
2322 private static function image_exists($filepath, $svg = false) {
2323 if ($svg && file_exists("$filepath.svg")) {
2324 return "$filepath.svg";
2325 } else if (file_exists("$filepath.png")) {
2326 return "$filepath.png";
2327 } else if (file_exists("$filepath.gif")) {
2328 return "$filepath.gif";
2329 } else if (file_exists("$filepath.jpg")) {
2330 return "$filepath.jpg";
2331 } else if (file_exists("$filepath.jpeg")) {
2332 return "$filepath.jpeg";
2333 } else {
2334 return false;
2339 * Loads the theme config from config.php file.
2341 * @param string $themename
2342 * @param stdClass $settings from config_plugins table
2343 * @param boolean $parentscheck true to also check the parents. .
2344 * @return stdClass The theme configuration
2346 private static function find_theme_config($themename, $settings, $parentscheck = true) {
2347 // We have to use the variable name $THEME (upper case) because that
2348 // is what is used in theme config.php files.
2350 if (!$dir = theme_config::find_theme_location($themename)) {
2351 return null;
2354 $THEME = new stdClass();
2355 $THEME->name = $themename;
2356 $THEME->dir = $dir;
2357 $THEME->settings = $settings;
2359 global $CFG; // just in case somebody tries to use $CFG in theme config
2360 include("$THEME->dir/config.php");
2362 // verify the theme configuration is OK
2363 if (!is_array($THEME->parents)) {
2364 // parents option is mandatory now
2365 return null;
2366 } else {
2367 // We use $parentscheck to only check the direct parents (avoid infinite loop).
2368 if ($parentscheck) {
2369 // Find all parent theme configs.
2370 foreach ($THEME->parents as $parent) {
2371 $parentconfig = theme_config::find_theme_config($parent, $settings, false);
2372 if (empty($parentconfig)) {
2373 return null;
2379 return $THEME;
2383 * Finds the theme location and verifies the theme has all needed files
2384 * and is not obsoleted.
2386 * @param string $themename
2387 * @return string full dir path or null if not found
2389 private static function find_theme_location($themename) {
2390 global $CFG;
2392 if (file_exists("$CFG->dirroot/theme/$themename/config.php")) {
2393 $dir = "$CFG->dirroot/theme/$themename";
2395 } else if (!empty($CFG->themedir) and file_exists("$CFG->themedir/$themename/config.php")) {
2396 $dir = "$CFG->themedir/$themename";
2398 } else {
2399 return null;
2402 if (file_exists("$dir/styles.php")) {
2403 //legacy theme - needs to be upgraded - upgrade info is displayed on the admin settings page
2404 return null;
2407 return $dir;
2411 * Get the renderer for a part of Moodle for this theme.
2413 * @param moodle_page $page the page we are rendering
2414 * @param string $component the name of part of moodle. E.g. 'core', 'quiz', 'qtype_multichoice'.
2415 * @param string $subtype optional subtype such as 'news' resulting to 'mod_forum_news'
2416 * @param string $target one of rendering target constants
2417 * @return renderer_base the requested renderer.
2419 public function get_renderer(moodle_page $page, $component, $subtype = null, $target = null) {
2420 if (is_null($this->rf)) {
2421 $classname = $this->rendererfactory;
2422 $this->rf = new $classname($this);
2425 return $this->rf->get_renderer($page, $component, $subtype, $target);
2429 * Get the information from {@link $layouts} for this type of page.
2431 * @param string $pagelayout the the page layout name.
2432 * @return array the appropriate part of {@link $layouts}.
2434 protected function layout_info_for_page($pagelayout) {
2435 if (array_key_exists($pagelayout, $this->layouts)) {
2436 return $this->layouts[$pagelayout];
2437 } else {
2438 debugging('Invalid page layout specified: ' . $pagelayout);
2439 return $this->layouts['standard'];
2444 * Given the settings of this theme, and the page pagelayout, return the
2445 * full path of the page layout file to use.
2447 * Used by {@link core_renderer::header()}.
2449 * @param string $pagelayout the the page layout name.
2450 * @return string Full path to the lyout file to use
2452 public function layout_file($pagelayout) {
2453 global $CFG;
2455 $layoutinfo = $this->layout_info_for_page($pagelayout);
2456 $layoutfile = $layoutinfo['file'];
2458 if (array_key_exists('theme', $layoutinfo)) {
2459 $themes = array($layoutinfo['theme']);
2460 } else {
2461 $themes = array_merge(array($this->name),$this->parents);
2464 foreach ($themes as $theme) {
2465 if ($dir = $this->find_theme_location($theme)) {
2466 $path = "$dir/layout/$layoutfile";
2468 // Check the template exists, return general base theme template if not.
2469 if (is_readable($path)) {
2470 return $path;
2475 debugging('Can not find layout file for: ' . $pagelayout);
2476 // fallback to standard normal layout
2477 return "$CFG->dirroot/theme/base/layout/general.php";
2481 * Returns auxiliary page layout options specified in layout configuration array.
2483 * @param string $pagelayout
2484 * @return array
2486 public function pagelayout_options($pagelayout) {
2487 $info = $this->layout_info_for_page($pagelayout);
2488 if (!empty($info['options'])) {
2489 return $info['options'];
2491 return array();
2495 * Inform a block_manager about the block regions this theme wants on this
2496 * page layout.
2498 * @param string $pagelayout the general type of the page.
2499 * @param block_manager $blockmanager the block_manger to set up.
2501 public function setup_blocks($pagelayout, $blockmanager) {
2502 $layoutinfo = $this->layout_info_for_page($pagelayout);
2503 if (!empty($layoutinfo['regions'])) {
2504 $blockmanager->add_regions($layoutinfo['regions'], false);
2505 $blockmanager->set_default_region($layoutinfo['defaultregion']);
2510 * Gets the visible name for the requested block region.
2512 * @param string $region The region name to get
2513 * @param string $theme The theme the region belongs to (may come from the parent theme)
2514 * @return string
2516 protected function get_region_name($region, $theme) {
2518 $stringman = get_string_manager();
2520 // Check if the name is defined in the theme.
2521 if ($stringman->string_exists('region-' . $region, 'theme_' . $theme)) {
2522 return get_string('region-' . $region, 'theme_' . $theme);
2525 // Check the theme parents.
2526 foreach ($this->parents as $parentthemename) {
2527 if ($stringman->string_exists('region-' . $region, 'theme_' . $parentthemename)) {
2528 return get_string('region-' . $region, 'theme_' . $parentthemename);
2532 // Last resort, try the boost theme for names.
2533 return get_string('region-' . $region, 'theme_boost');
2537 * Get the list of all block regions known to this theme in all templates.
2539 * @return array internal region name => human readable name.
2541 public function get_all_block_regions() {
2542 $regions = array();
2543 foreach ($this->layouts as $layoutinfo) {
2544 foreach ($layoutinfo['regions'] as $region) {
2545 $regions[$region] = $this->get_region_name($region, $this->name);
2548 return $regions;
2552 * Returns the human readable name of the theme
2554 * @return string
2556 public function get_theme_name() {
2557 return get_string('pluginname', 'theme_'.$this->name);
2561 * Returns the block render method.
2563 * It is set by the theme via:
2564 * $THEME->blockrendermethod = '...';
2566 * It can be one of two values, blocks or blocks_for_region.
2567 * It should be set to the method being used by the theme layouts.
2569 * @return string
2571 public function get_block_render_method() {
2572 if ($this->blockrendermethod) {
2573 // Return the specified block render method.
2574 return $this->blockrendermethod;
2576 // Its not explicitly set, check the parent theme configs.
2577 foreach ($this->parent_configs as $config) {
2578 if (isset($config->blockrendermethod)) {
2579 return $config->blockrendermethod;
2582 // Default it to blocks.
2583 return 'blocks';
2587 * Get the callable for CSS tree post processing.
2589 * @return string|null
2591 public function get_css_tree_post_processor() {
2592 $configs = [$this] + $this->parent_configs;
2593 foreach ($configs as $config) {
2594 if (!empty($config->csstreepostprocessor) && is_callable($config->csstreepostprocessor)) {
2595 return $config->csstreepostprocessor;
2598 return null;
2604 * This class keeps track of which HTML tags are currently open.
2606 * This makes it much easier to always generate well formed XHTML output, even
2607 * if execution terminates abruptly. Any time you output some opening HTML
2608 * without the matching closing HTML, you should push the necessary close tags
2609 * onto the stack.
2611 * @copyright 2009 Tim Hunt
2612 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2613 * @since Moodle 2.0
2614 * @package core
2615 * @category output
2617 class xhtml_container_stack {
2620 * @var array Stores the list of open containers.
2622 protected $opencontainers = array();
2625 * @var array In developer debug mode, stores a stack trace of all opens and
2626 * closes, so we can output helpful error messages when there is a mismatch.
2628 protected $log = array();
2631 * @var boolean Store whether we are developer debug mode. We need this in
2632 * several places including in the destructor where we may not have access to $CFG.
2634 protected $isdebugging;
2637 * Constructor
2639 public function __construct() {
2640 global $CFG;
2641 $this->isdebugging = $CFG->debugdeveloper;
2645 * Push the close HTML for a recently opened container onto the stack.
2647 * @param string $type The type of container. This is checked when {@link pop()}
2648 * is called and must match, otherwise a developer debug warning is output.
2649 * @param string $closehtml The HTML required to close the container.
2651 public function push($type, $closehtml) {
2652 $container = new stdClass;
2653 $container->type = $type;
2654 $container->closehtml = $closehtml;
2655 if ($this->isdebugging) {
2656 $this->log('Open', $type);
2658 array_push($this->opencontainers, $container);
2662 * Pop the HTML for the next closing container from the stack. The $type
2663 * must match the type passed when the container was opened, otherwise a
2664 * warning will be output.
2666 * @param string $type The type of container.
2667 * @return string the HTML required to close the container.
2669 public function pop($type) {
2670 if (empty($this->opencontainers)) {
2671 debugging('<p>There are no more open containers. This suggests there is a nesting problem.</p>' .
2672 $this->output_log(), DEBUG_DEVELOPER);
2673 return;
2676 $container = array_pop($this->opencontainers);
2677 if ($container->type != $type) {
2678 debugging('<p>The type of container to be closed (' . $container->type .
2679 ') does not match the type of the next open container (' . $type .
2680 '). This suggests there is a nesting problem.</p>' .
2681 $this->output_log(), DEBUG_DEVELOPER);
2683 if ($this->isdebugging) {
2684 $this->log('Close', $type);
2686 return $container->closehtml;
2690 * Close all but the last open container. This is useful in places like error
2691 * handling, where you want to close all the open containers (apart from <body>)
2692 * before outputting the error message.
2694 * @param bool $shouldbenone assert that the stack should be empty now - causes a
2695 * developer debug warning if it isn't.
2696 * @return string the HTML required to close any open containers inside <body>.
2698 public function pop_all_but_last($shouldbenone = false) {
2699 if ($shouldbenone && count($this->opencontainers) != 1) {
2700 debugging('<p>Some HTML tags were opened in the body of the page but not closed.</p>' .
2701 $this->output_log(), DEBUG_DEVELOPER);
2703 $output = '';
2704 while (count($this->opencontainers) > 1) {
2705 $container = array_pop($this->opencontainers);
2706 $output .= $container->closehtml;
2708 return $output;
2712 * You can call this function if you want to throw away an instance of this
2713 * class without properly emptying the stack (for example, in a unit test).
2714 * Calling this method stops the destruct method from outputting a developer
2715 * debug warning. After calling this method, the instance can no longer be used.
2717 public function discard() {
2718 $this->opencontainers = null;
2722 * Adds an entry to the log.
2724 * @param string $action The name of the action
2725 * @param string $type The type of action
2727 protected function log($action, $type) {
2728 $this->log[] = '<li>' . $action . ' ' . $type . ' at:' .
2729 format_backtrace(debug_backtrace()) . '</li>';
2733 * Outputs the log's contents as a HTML list.
2735 * @return string HTML list of the log
2737 protected function output_log() {
2738 return '<ul>' . implode("\n", $this->log) . '</ul>';