MDL-69542 enrol_lti: add LTI Advantage member sync task
[moodle.git] / lib / outputlib.php
bloba99c7cdca6aee7f4a7ffc81adc28149ca30bd06c
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 * Checks if the given device has a theme defined in config.php.
306 * @return bool
308 function theme_is_device_locked($device) {
309 global $CFG;
310 $themeconfigname = core_useragent::get_device_type_cfg_var_name($device);
311 return isset($CFG->config_php_settings[$themeconfigname]);
315 * Returns the theme named defined in config.php for the given device.
317 * @return string or null
319 function theme_get_locked_theme_for_device($device) {
320 global $CFG;
322 if (!theme_is_device_locked($device)) {
323 return null;
326 $themeconfigname = core_useragent::get_device_type_cfg_var_name($device);
327 return $CFG->config_php_settings[$themeconfigname];
331 * This class represents the configuration variables of a Moodle theme.
333 * All the variables with access: public below (with a few exceptions that are marked)
334 * are the properties you can set in your themes config.php file.
336 * There are also some methods and protected variables that are part of the inner
337 * workings of Moodle's themes system. If you are just editing a themes config.php
338 * file, you can just ignore those, and the following information for developers.
340 * Normally, to create an instance of this class, you should use the
341 * {@link theme_config::load()} factory method to load a themes config.php file.
342 * However, normally you don't need to bother, because moodle_page (that is, $PAGE)
343 * will create one for you, accessible as $PAGE->theme.
345 * @copyright 2009 Tim Hunt
346 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
347 * @since Moodle 2.0
348 * @package core
349 * @category output
351 class theme_config {
354 * @var string Default theme, used when requested theme not found.
356 const DEFAULT_THEME = 'boost';
358 /** The key under which the SCSS file is stored amongst the CSS files. */
359 const SCSS_KEY = '__SCSS__';
362 * @var array You can base your theme on other themes by linking to the other theme as
363 * parents. This lets you use the CSS and layouts from the other themes
364 * (see {@link theme_config::$layouts}).
365 * That makes it easy to create a new theme that is similar to another one
366 * but with a few changes. In this themes CSS you only need to override
367 * those rules you want to change.
369 public $parents;
372 * @var array The names of all the stylesheets from this theme that you would
373 * like included, in order. Give the names of the files without .css.
375 public $sheets = array();
378 * @var array The names of all the stylesheets from parents that should be excluded.
379 * true value may be used to specify all parents or all themes from one parent.
380 * If no value specified value from parent theme used.
382 public $parents_exclude_sheets = null;
385 * @var array List of plugin sheets to be excluded.
386 * If no value specified value from parent theme used.
388 public $plugins_exclude_sheets = null;
391 * @var array List of style sheets that are included in the text editor bodies.
392 * Sheets from parent themes are used automatically and can not be excluded.
394 public $editor_sheets = array();
397 * @var bool Whether a fallback version of the stylesheet will be used
398 * whilst the final version is generated.
400 public $usefallback = false;
403 * @var array The names of all the javascript files this theme that you would
404 * like included from head, in order. Give the names of the files without .js.
406 public $javascripts = array();
409 * @var array The names of all the javascript files this theme that you would
410 * like included from footer, in order. Give the names of the files without .js.
412 public $javascripts_footer = array();
415 * @var array The names of all the javascript files from parents that should
416 * be excluded. true value may be used to specify all parents or all themes
417 * from one parent.
418 * If no value specified value from parent theme used.
420 public $parents_exclude_javascripts = null;
423 * @var array Which file to use for each page layout.
425 * This is an array of arrays. The keys of the outer array are the different layouts.
426 * Pages in Moodle are using several different layouts like 'normal', 'course', 'home',
427 * 'popup', 'form', .... The most reliable way to get a complete list is to look at
428 * {@link http://cvs.moodle.org/moodle/theme/base/config.php?view=markup the base theme config.php file}.
429 * That file also has a good example of how to set this setting.
431 * For each layout, the value in the outer array is an array that describes
432 * how you want that type of page to look. For example
433 * <pre>
434 * $THEME->layouts = array(
435 * // Most pages - if we encounter an unknown or a missing page type, this one is used.
436 * 'standard' => array(
437 * 'theme' = 'mytheme',
438 * 'file' => 'normal.php',
439 * 'regions' => array('side-pre', 'side-post'),
440 * 'defaultregion' => 'side-post'
441 * ),
442 * // The site home page.
443 * 'home' => array(
444 * 'theme' = 'mytheme',
445 * 'file' => 'home.php',
446 * 'regions' => array('side-pre', 'side-post'),
447 * 'defaultregion' => 'side-post'
448 * ),
449 * // ...
450 * );
451 * </pre>
453 * 'theme' name of the theme where is the layout located
454 * 'file' is the layout file to use for this type of page.
455 * layout files are stored in layout subfolder
456 * 'regions' This lists the regions on the page where blocks may appear. For
457 * each region you list here, your layout file must include a call to
458 * <pre>
459 * echo $OUTPUT->blocks_for_region($regionname);
460 * </pre>
461 * or equivalent so that the blocks are actually visible.
463 * 'defaultregion' If the list of regions is non-empty, then you must pick
464 * one of the one of them as 'default'. This has two meanings. First, this is
465 * where new blocks are added. Second, if there are any blocks associated with
466 * the page, but in non-existent regions, they appear here. (Imaging, for example,
467 * that someone added blocks using a different theme that used different region
468 * names, and then switched to this theme.)
470 public $layouts = array();
473 * @var string Name of the renderer factory class to use. Must implement the
474 * {@link renderer_factory} interface.
476 * This is an advanced feature. Moodle output is generated by 'renderers',
477 * you can customise the HTML that is output by writing custom renderers,
478 * and then you need to specify 'renderer factory' so that Moodle can find
479 * your renderers.
481 * There are some renderer factories supplied with Moodle. Please follow these
482 * links to see what they do.
483 * <ul>
484 * <li>{@link standard_renderer_factory} - the default.</li>
485 * <li>{@link theme_overridden_renderer_factory} - use this if you want to write
486 * your own custom renderers in a lib.php file in this theme (or the parent theme).</li>
487 * </ul>
489 public $rendererfactory = 'standard_renderer_factory';
492 * @var string Function to do custom CSS post-processing.
494 * This is an advanced feature. If you want to do custom post-processing on the
495 * CSS before it is output (for example, to replace certain variable names
496 * with particular values) you can give the name of a function here.
498 public $csspostprocess = null;
501 * @var string Function to do custom CSS post-processing on a parsed CSS tree.
503 * This is an advanced feature. If you want to do custom post-processing on the
504 * CSS before it is output, you can provide the name of the function here. The
505 * function will receive a CSS tree document as first parameter, and the theme_config
506 * object as second parameter. A return value is not required, the tree can
507 * be edited in place.
509 public $csstreepostprocessor = null;
512 * @var string Accessibility: Right arrow-like character is
513 * used in the breadcrumb trail, course navigation menu
514 * (previous/next activity), calendar, and search forum block.
515 * If the theme does not set characters, appropriate defaults
516 * are set automatically. Please DO NOT
517 * use &lt; &gt; &raquo; - these are confusing for blind users.
519 public $rarrow = null;
522 * @var string Accessibility: Left arrow-like character is
523 * used in the breadcrumb trail, course navigation menu
524 * (previous/next activity), calendar, and search forum block.
525 * If the theme does not set characters, appropriate defaults
526 * are set automatically. Please DO NOT
527 * use &lt; &gt; &raquo; - these are confusing for blind users.
529 public $larrow = null;
532 * @var string Accessibility: Up arrow-like character is used in
533 * the book heirarchical navigation.
534 * If the theme does not set characters, appropriate defaults
535 * are set automatically. Please DO NOT
536 * use ^ - this is confusing for blind users.
538 public $uarrow = null;
541 * @var string Accessibility: Down arrow-like character.
542 * If the theme does not set characters, appropriate defaults
543 * are set automatically.
545 public $darrow = null;
548 * @var bool Some themes may want to disable ajax course editing.
550 public $enablecourseajax = true;
553 * @var string Determines served document types
554 * - 'html5' the only officially supported doctype in Moodle
555 * - 'xhtml5' may be used in development for validation (not intended for production servers!)
556 * - 'xhtml' XHTML 1.0 Strict for legacy themes only
558 public $doctype = 'html5';
561 * @var string requiredblocks If set to a string, will list the block types that cannot be deleted. Defaults to
562 * navigation and settings.
564 public $requiredblocks = false;
566 //==Following properties are not configurable from theme config.php==
569 * @var string The name of this theme. Set automatically when this theme is
570 * loaded. This can not be set in theme config.php
572 public $name;
575 * @var string The folder where this themes files are stored. This is set
576 * automatically. This can not be set in theme config.php
578 public $dir;
581 * @var stdClass Theme settings stored in config_plugins table.
582 * This can not be set in theme config.php
584 public $settings = null;
587 * @var bool If set to true and the theme enables the dock then blocks will be able
588 * to be moved to the special dock
590 public $enable_dock = false;
593 * @var bool If set to true then this theme will not be shown in the theme selector unless
594 * theme designer mode is turned on.
596 public $hidefromselector = false;
599 * @var array list of YUI CSS modules to be included on each page. This may be used
600 * to remove cssreset and use cssnormalise module instead.
602 public $yuicssmodules = array('cssreset', 'cssfonts', 'cssgrids', 'cssbase');
605 * An associative array of block manipulations that should be made if the user is using an rtl language.
606 * The key is the original block region, and the value is the block region to change to.
607 * This is used when displaying blocks for regions only.
608 * @var array
610 public $blockrtlmanipulations = array();
613 * @var renderer_factory Instance of the renderer_factory implementation
614 * we are using. Implementation detail.
616 protected $rf = null;
619 * @var array List of parent config objects.
621 protected $parent_configs = array();
624 * Used to determine whether we can serve SVG images or not.
625 * @var bool
627 private $usesvg = null;
630 * Whether in RTL mode or not.
631 * @var bool
633 protected $rtlmode = false;
636 * The SCSS file to compile (without .scss), located in the scss/ folder of the theme.
637 * Or a Closure, which receives the theme_config as argument and must
638 * return the SCSS content.
639 * @var string|Closure
641 public $scss = false;
644 * Local cache of the SCSS property.
645 * @var false|array
647 protected $scsscache = null;
650 * The name of the function to call to get the SCSS code to inject.
651 * @var string
653 public $extrascsscallback = null;
656 * The name of the function to call to get SCSS to prepend.
657 * @var string
659 public $prescsscallback = null;
662 * Sets the render method that should be used for rendering custom block regions by scripts such as my/index.php
663 * Defaults to {@link core_renderer::blocks_for_region()}
664 * @var string
666 public $blockrendermethod = null;
669 * Remember the results of icon remapping for the current page.
670 * @var array
672 public $remapiconcache = [];
675 * The name of the function to call to get precompiled CSS.
676 * @var string
678 public $precompiledcsscallback = null;
681 * Whether the theme uses course index.
682 * @var bool
684 public $usescourseindex = false;
687 * Load the config.php file for a particular theme, and return an instance
688 * of this class. (That is, this is a factory method.)
690 * @param string $themename the name of the theme.
691 * @return theme_config an instance of this class.
693 public static function load($themename) {
694 global $CFG;
696 // load theme settings from db
697 try {
698 $settings = get_config('theme_'.$themename);
699 } catch (dml_exception $e) {
700 // most probably moodle tables not created yet
701 $settings = new stdClass();
704 if ($config = theme_config::find_theme_config($themename, $settings)) {
705 return new theme_config($config);
707 } else if ($themename == theme_config::DEFAULT_THEME) {
708 throw new coding_exception('Default theme '.theme_config::DEFAULT_THEME.' not available or broken!');
710 } else if ($config = theme_config::find_theme_config($CFG->theme, $settings)) {
711 debugging('This page should be using theme ' . $themename .
712 ' which cannot be initialised. Falling back to the site theme ' . $CFG->theme, DEBUG_NORMAL);
713 return new theme_config($config);
715 } else {
716 // bad luck, the requested theme has some problems - admin see details in theme config
717 debugging('This page should be using theme ' . $themename .
718 ' which cannot be initialised. Nor can the site theme ' . $CFG->theme .
719 '. Falling back to ' . theme_config::DEFAULT_THEME, DEBUG_NORMAL);
720 return new theme_config(theme_config::find_theme_config(theme_config::DEFAULT_THEME, $settings));
725 * Theme diagnostic code. It is very problematic to send debug output
726 * to the actual CSS file, instead this functions is supposed to
727 * diagnose given theme and highlights all potential problems.
728 * This information should be available from the theme selection page
729 * or some other debug page for theme designers.
731 * @param string $themename
732 * @return array description of problems
734 public static function diagnose($themename) {
735 //TODO: MDL-21108
736 return array();
740 * Private constructor, can be called only from the factory method.
741 * @param stdClass $config
743 private function __construct($config) {
744 global $CFG; //needed for included lib.php files
746 $this->settings = $config->settings;
747 $this->name = $config->name;
748 $this->dir = $config->dir;
750 if ($this->name != self::DEFAULT_THEME) {
751 $baseconfig = self::find_theme_config(self::DEFAULT_THEME, $this->settings);
752 } else {
753 $baseconfig = $config;
756 $configurable = array(
757 'parents', 'sheets', 'parents_exclude_sheets', 'plugins_exclude_sheets', 'usefallback',
758 'javascripts', 'javascripts_footer', 'parents_exclude_javascripts',
759 'layouts', 'enablecourseajax', 'requiredblocks',
760 'rendererfactory', 'csspostprocess', 'editor_sheets', 'editor_scss', 'rarrow', 'larrow', 'uarrow', 'darrow',
761 'hidefromselector', 'doctype', 'yuicssmodules', 'blockrtlmanipulations', 'blockrendermethod',
762 'scss', 'extrascsscallback', 'prescsscallback', 'csstreepostprocessor', 'addblockposition',
763 'iconsystem', 'precompiledcsscallback', 'haseditswitch', 'usescourseindex', 'activityheaderconfig');
765 foreach ($config as $key=>$value) {
766 if (in_array($key, $configurable)) {
767 $this->$key = $value;
771 // verify all parents and load configs and renderers
772 foreach ($this->parents as $parent) {
773 if (!$parent_config = theme_config::find_theme_config($parent, $this->settings)) {
774 // this is not good - better exclude faulty parents
775 continue;
777 $libfile = $parent_config->dir.'/lib.php';
778 if (is_readable($libfile)) {
779 // theme may store various function here
780 include_once($libfile);
782 $renderersfile = $parent_config->dir.'/renderers.php';
783 if (is_readable($renderersfile)) {
784 // may contain core and plugin renderers and renderer factory
785 include_once($renderersfile);
787 $this->parent_configs[$parent] = $parent_config;
789 $libfile = $this->dir.'/lib.php';
790 if (is_readable($libfile)) {
791 // theme may store various function here
792 include_once($libfile);
794 $rendererfile = $this->dir.'/renderers.php';
795 if (is_readable($rendererfile)) {
796 // may contain core and plugin renderers and renderer factory
797 include_once($rendererfile);
798 } else {
799 // check if renderers.php file is missnamed renderer.php
800 if (is_readable($this->dir.'/renderer.php')) {
801 debugging('Developer hint: '.$this->dir.'/renderer.php should be renamed to ' . $this->dir."/renderers.php.
802 See: http://docs.moodle.org/dev/Output_renderers#Theme_renderers.", DEBUG_DEVELOPER);
806 // cascade all layouts properly
807 foreach ($baseconfig->layouts as $layout=>$value) {
808 if (!isset($this->layouts[$layout])) {
809 foreach ($this->parent_configs as $parent_config) {
810 if (isset($parent_config->layouts[$layout])) {
811 $this->layouts[$layout] = $parent_config->layouts[$layout];
812 continue 2;
815 $this->layouts[$layout] = $value;
819 //fix arrows if needed
820 $this->check_theme_arrows();
824 * Let the theme initialise the page object (usually $PAGE).
826 * This may be used for example to request jQuery in add-ons.
828 * @param moodle_page $page
830 public function init_page(moodle_page $page) {
831 $themeinitfunction = 'theme_'.$this->name.'_page_init';
832 if (function_exists($themeinitfunction)) {
833 $themeinitfunction($page);
838 * Checks if arrows $THEME->rarrow, $THEME->larrow, $THEME->uarrow, $THEME->darrow have been set (theme/-/config.php).
839 * If not it applies sensible defaults.
841 * Accessibility: right and left arrow Unicode characters for breadcrumb, calendar,
842 * search forum block, etc. Important: these are 'silent' in a screen-reader
843 * (unlike &gt; &raquo;), and must be accompanied by text.
845 private function check_theme_arrows() {
846 if (!isset($this->rarrow) and !isset($this->larrow)) {
847 // Default, looks good in Win XP/IE 6, Win/Firefox 1.5, Win/Netscape 8...
848 // Also OK in Win 9x/2K/IE 5.x
849 $this->rarrow = '&#x25BA;';
850 $this->larrow = '&#x25C4;';
851 $this->uarrow = '&#x25B2;';
852 $this->darrow = '&#x25BC;';
853 if (empty($_SERVER['HTTP_USER_AGENT'])) {
854 $uagent = '';
855 } else {
856 $uagent = $_SERVER['HTTP_USER_AGENT'];
858 if (false !== strpos($uagent, 'Opera')
859 || false !== strpos($uagent, 'Mac')) {
860 // Looks good in Win XP/Mac/Opera 8/9, Mac/Firefox 2, Camino, Safari.
861 // Not broken in Mac/IE 5, Mac/Netscape 7 (?).
862 $this->rarrow = '&#x25B6;&#xFE0E;';
863 $this->larrow = '&#x25C0;&#xFE0E;';
865 elseif ((false !== strpos($uagent, 'Konqueror'))
866 || (false !== strpos($uagent, 'Android'))) {
867 // The fonts on Android don't include the characters required for this to work as expected.
868 // So we use the same ones Konqueror uses.
869 $this->rarrow = '&rarr;';
870 $this->larrow = '&larr;';
871 $this->uarrow = '&uarr;';
872 $this->darrow = '&darr;';
874 elseif (isset($_SERVER['HTTP_ACCEPT_CHARSET'])
875 && false === stripos($_SERVER['HTTP_ACCEPT_CHARSET'], 'utf-8')) {
876 // (Win/IE 5 doesn't set ACCEPT_CHARSET, but handles Unicode.)
877 // To be safe, non-Unicode browsers!
878 $this->rarrow = '&gt;';
879 $this->larrow = '&lt;';
880 $this->uarrow = '^';
881 $this->darrow = 'v';
884 // RTL support - in RTL languages, swap r and l arrows
885 if (right_to_left()) {
886 $t = $this->rarrow;
887 $this->rarrow = $this->larrow;
888 $this->larrow = $t;
894 * Returns output renderer prefixes, these are used when looking
895 * for the overridden renderers in themes.
897 * @return array
899 public function renderer_prefixes() {
900 global $CFG; // just in case the included files need it
902 $prefixes = array('theme_'.$this->name);
904 foreach ($this->parent_configs as $parent) {
905 $prefixes[] = 'theme_'.$parent->name;
908 return $prefixes;
912 * Returns the stylesheet URL of this editor content
914 * @param bool $encoded false means use & and true use &amp; in URLs
915 * @return moodle_url
917 public function editor_css_url($encoded=true) {
918 global $CFG;
919 $rev = theme_get_revision();
920 if ($rev > -1) {
921 $themesubrevision = theme_get_sub_revision_for_theme($this->name);
923 // Provide the sub revision to allow us to invalidate cached theme CSS
924 // on a per theme basis, rather than globally.
925 if ($themesubrevision && $themesubrevision > 0) {
926 $rev .= "_{$themesubrevision}";
929 $url = new moodle_url("/theme/styles.php");
930 if (!empty($CFG->slasharguments)) {
931 $url->set_slashargument('/'.$this->name.'/'.$rev.'/editor', 'noparam', true);
932 } else {
933 $url->params(array('theme'=>$this->name,'rev'=>$rev, 'type'=>'editor'));
935 } else {
936 $params = array('theme'=>$this->name, 'type'=>'editor');
937 $url = new moodle_url('/theme/styles_debug.php', $params);
939 return $url;
943 * Returns the content of the CSS to be used in editor content
945 * @return array
947 public function editor_css_files() {
948 $files = array();
950 // First editor plugins.
951 $plugins = core_component::get_plugin_list('editor');
952 foreach ($plugins as $plugin=>$fulldir) {
953 $sheetfile = "$fulldir/editor_styles.css";
954 if (is_readable($sheetfile)) {
955 $files['plugin_'.$plugin] = $sheetfile;
958 // Then parent themes - base first, the immediate parent last.
959 foreach (array_reverse($this->parent_configs) as $parent_config) {
960 if (empty($parent_config->editor_sheets)) {
961 continue;
963 foreach ($parent_config->editor_sheets as $sheet) {
964 $sheetfile = "$parent_config->dir/style/$sheet.css";
965 if (is_readable($sheetfile)) {
966 $files['parent_'.$parent_config->name.'_'.$sheet] = $sheetfile;
970 // Finally this theme.
971 if (!empty($this->editor_sheets)) {
972 foreach ($this->editor_sheets as $sheet) {
973 $sheetfile = "$this->dir/style/$sheet.css";
974 if (is_readable($sheetfile)) {
975 $files['theme_'.$sheet] = $sheetfile;
980 return $files;
984 * Compiles and returns the content of the SCSS to be used in editor content
986 * @return string Compiled CSS from the editor SCSS
988 public function editor_scss_to_css() {
989 $css = '';
990 $dir = $this->dir;
991 $filenames = [];
993 // Use editor_scss file(s) provided by this theme if set.
994 if (!empty($this->editor_scss)) {
995 $filenames = $this->editor_scss;
996 } else {
997 // If no editor_scss set, move up theme hierarchy until one is found (if at all).
998 // This is so child themes only need to set editor_scss if an override is required.
999 foreach (array_reverse($this->parent_configs) as $parentconfig) {
1000 if (!empty($parentconfig->editor_scss)) {
1001 $dir = $parentconfig->dir;
1002 $filenames = $parentconfig->editor_scss;
1004 // Config found, stop looking.
1005 break;
1010 if (!empty($filenames)) {
1011 $compiler = new core_scss();
1013 foreach ($filenames as $filename) {
1014 $compiler->set_file("{$dir}/scss/{$filename}.scss");
1016 try {
1017 $css .= $compiler->to_css();
1018 } catch (\Exception $e) {
1019 debugging('Error while compiling editor SCSS: ' . $e->getMessage(), DEBUG_DEVELOPER);
1024 return $css;
1028 * Get the stylesheet URL of this theme.
1030 * @param moodle_page $page Not used... deprecated?
1031 * @return moodle_url[]
1033 public function css_urls(moodle_page $page) {
1034 global $CFG;
1036 $rev = theme_get_revision();
1038 $urls = array();
1040 $svg = $this->use_svg_icons();
1041 $separate = (core_useragent::is_ie() && !core_useragent::check_ie_version('10'));
1043 if ($rev > -1) {
1044 $filename = right_to_left() ? 'all-rtl' : 'all';
1045 $url = new moodle_url("/theme/styles.php");
1046 $themesubrevision = theme_get_sub_revision_for_theme($this->name);
1048 // Provide the sub revision to allow us to invalidate cached theme CSS
1049 // on a per theme basis, rather than globally.
1050 if ($themesubrevision && $themesubrevision > 0) {
1051 $rev .= "_{$themesubrevision}";
1054 if (!empty($CFG->slasharguments)) {
1055 $slashargs = '';
1056 if (!$svg) {
1057 // We add a simple /_s to the start of the path.
1058 // The underscore is used to ensure that it isn't a valid theme name.
1059 $slashargs .= '/_s'.$slashargs;
1061 $slashargs .= '/'.$this->name.'/'.$rev.'/'.$filename;
1062 if ($separate) {
1063 $slashargs .= '/chunk0';
1065 $url->set_slashargument($slashargs, 'noparam', true);
1066 } else {
1067 $params = array('theme' => $this->name, 'rev' => $rev, 'type' => $filename);
1068 if (!$svg) {
1069 // We add an SVG param so that we know not to serve SVG images.
1070 // We do this because all modern browsers support SVG and this param will one day be removed.
1071 $params['svg'] = '0';
1073 if ($separate) {
1074 $params['chunk'] = '0';
1076 $url->params($params);
1078 $urls[] = $url;
1080 } else {
1081 $baseurl = new moodle_url('/theme/styles_debug.php');
1083 $css = $this->get_css_files(true);
1084 if (!$svg) {
1085 // We add an SVG param so that we know not to serve SVG images.
1086 // We do this because all modern browsers support SVG and this param will one day be removed.
1087 $baseurl->param('svg', '0');
1089 if (right_to_left()) {
1090 $baseurl->param('rtl', 1);
1092 if ($separate) {
1093 // We might need to chunk long files.
1094 $baseurl->param('chunk', '0');
1096 if (core_useragent::is_ie()) {
1097 // Lalala, IE does not allow more than 31 linked CSS files from main document.
1098 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name, 'type'=>'ie', 'subtype'=>'plugins'));
1099 foreach ($css['parents'] as $parent=>$sheets) {
1100 // We need to serve parents individually otherwise we may easily exceed the style limit IE imposes (4096).
1101 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'ie', 'subtype'=>'parents', 'sheet'=>$parent));
1103 if ($this->get_scss_property()) {
1104 // No need to define the type as IE here.
1105 $urls[] = new moodle_url($baseurl, array('theme' => $this->name, 'type' => 'scss'));
1107 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name, 'type'=>'ie', 'subtype'=>'theme'));
1109 } else {
1110 foreach ($css['plugins'] as $plugin=>$unused) {
1111 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'plugin', 'subtype'=>$plugin));
1113 foreach ($css['parents'] as $parent=>$sheets) {
1114 foreach ($sheets as $sheet=>$unused2) {
1115 $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'parent', 'subtype'=>$parent, 'sheet'=>$sheet));
1118 foreach ($css['theme'] as $sheet => $filename) {
1119 if ($sheet === self::SCSS_KEY) {
1120 // This is the theme SCSS file.
1121 $urls[] = new moodle_url($baseurl, array('theme' => $this->name, 'type' => 'scss'));
1122 } else {
1123 // Sheet first in order to make long urls easier to read.
1124 $urls[] = new moodle_url($baseurl, array('sheet'=>$sheet, 'theme'=>$this->name, 'type'=>'theme'));
1130 // Allow themes to change the css url to something like theme/mytheme/mycss.php.
1131 component_callback('theme_' . $this->name, 'alter_css_urls', [&$urls]);
1132 return $urls;
1136 * Get the whole css stylesheet for production mode.
1138 * NOTE: this method is not expected to be used from any addons.
1140 * @return string CSS markup compressed
1142 public function get_css_content() {
1144 $csscontent = '';
1145 foreach ($this->get_css_files(false) as $type => $value) {
1146 foreach ($value as $identifier => $val) {
1147 if (is_array($val)) {
1148 foreach ($val as $v) {
1149 $csscontent .= file_get_contents($v) . "\n";
1151 } else {
1152 if ($type === 'theme' && $identifier === self::SCSS_KEY) {
1153 // We need the content from SCSS because this is the SCSS file from the theme.
1154 if ($compiled = $this->get_css_content_from_scss(false)) {
1155 $csscontent .= $compiled;
1156 } else {
1157 // The compiler failed so default back to any precompiled css that might
1158 // exist.
1159 $csscontent .= $this->get_precompiled_css_content();
1161 } else {
1162 $csscontent .= file_get_contents($val) . "\n";
1167 $csscontent = $this->post_process($csscontent);
1168 $csscontent = core_minify::css($csscontent);
1170 return $csscontent;
1173 * Set post processed CSS content cache.
1175 * @param string $csscontent The post processed CSS content.
1176 * @return bool True if the content was successfully cached.
1178 public function set_css_content_cache($csscontent) {
1180 $cache = cache::make('core', 'postprocessedcss');
1181 $key = $this->get_css_cache_key();
1183 return $cache->set($key, $csscontent);
1187 * Return whether the post processed CSS content has been cached.
1189 * @return bool Whether the post-processed CSS is available in the cache.
1191 public function has_css_cached_content() {
1193 $key = $this->get_css_cache_key();
1194 $cache = cache::make('core', 'postprocessedcss');
1196 return $cache->has($key);
1200 * Return cached post processed CSS content.
1202 * @return bool|string The cached css content or false if not found.
1204 public function get_css_cached_content() {
1206 $key = $this->get_css_cache_key();
1207 $cache = cache::make('core', 'postprocessedcss');
1209 return $cache->get($key);
1213 * Generate the css content cache key.
1215 * @return string The post processed css cache key.
1217 public function get_css_cache_key() {
1218 $nosvg = (!$this->use_svg_icons()) ? 'nosvg_' : '';
1219 $rtlmode = ($this->rtlmode == true) ? 'rtl' : 'ltr';
1221 return $nosvg . $this->name . '_' . $rtlmode;
1225 * Get the theme designer css markup,
1226 * the parameters are coming from css_urls().
1228 * NOTE: this method is not expected to be used from any addons.
1230 * @param string $type
1231 * @param string $subtype
1232 * @param string $sheet
1233 * @return string CSS markup
1235 public function get_css_content_debug($type, $subtype, $sheet) {
1236 if ($type === 'scss') {
1237 // The SCSS file of the theme is requested.
1238 $csscontent = $this->get_css_content_from_scss(true);
1239 if ($csscontent !== false) {
1240 return $this->post_process($csscontent);
1242 return '';
1245 $cssfiles = array();
1246 $css = $this->get_css_files(true);
1248 if ($type === 'ie') {
1249 // IE is a sloppy browser with weird limits, sorry.
1250 if ($subtype === 'plugins') {
1251 $cssfiles = $css['plugins'];
1253 } else if ($subtype === 'parents') {
1254 if (empty($sheet)) {
1255 // Do not bother with the empty parent here.
1256 } else {
1257 // Build up the CSS for that parent so we can serve it as one file.
1258 foreach ($css[$subtype][$sheet] as $parent => $css) {
1259 $cssfiles[] = $css;
1262 } else if ($subtype === 'theme') {
1263 $cssfiles = $css['theme'];
1264 foreach ($cssfiles as $key => $value) {
1265 if (in_array($key, [self::SCSS_KEY])) {
1266 // Remove the SCSS file from the theme CSS files.
1267 // The SCSS files use the type 'scss', not 'ie'.
1268 unset($cssfiles[$key]);
1273 } else if ($type === 'plugin') {
1274 if (isset($css['plugins'][$subtype])) {
1275 $cssfiles[] = $css['plugins'][$subtype];
1278 } else if ($type === 'parent') {
1279 if (isset($css['parents'][$subtype][$sheet])) {
1280 $cssfiles[] = $css['parents'][$subtype][$sheet];
1283 } else if ($type === 'theme') {
1284 if (isset($css['theme'][$sheet])) {
1285 $cssfiles[] = $css['theme'][$sheet];
1289 $csscontent = '';
1290 foreach ($cssfiles as $file) {
1291 $contents = file_get_contents($file);
1292 $contents = $this->post_process($contents);
1293 $comment = "/** Path: $type $subtype $sheet.' **/\n";
1294 $stats = '';
1295 $csscontent .= $comment.$stats.$contents."\n\n";
1298 return $csscontent;
1302 * Get the whole css stylesheet for editor iframe.
1304 * NOTE: this method is not expected to be used from any addons.
1306 * @return string CSS markup
1308 public function get_css_content_editor() {
1309 $css = '';
1310 $cssfiles = $this->editor_css_files();
1312 // If editor has static CSS, include it.
1313 foreach ($cssfiles as $file) {
1314 $css .= file_get_contents($file)."\n";
1317 // If editor has SCSS, compile and include it.
1318 if (($convertedscss = $this->editor_scss_to_css())) {
1319 $css .= $convertedscss;
1322 $output = $this->post_process($css);
1324 return $output;
1328 * Returns an array of organised CSS files required for this output.
1330 * @param bool $themedesigner
1331 * @return array nested array of file paths
1333 protected function get_css_files($themedesigner) {
1334 global $CFG;
1336 $cache = null;
1337 $cachekey = 'cssfiles';
1338 if ($themedesigner) {
1339 require_once($CFG->dirroot.'/lib/csslib.php');
1340 // We need some kind of caching here because otherwise the page navigation becomes
1341 // way too slow in theme designer mode. Feel free to create full cache definition later...
1342 $cache = cache::make_from_params(cache_store::MODE_APPLICATION, 'core', 'themedesigner', array('theme' => $this->name));
1343 if ($files = $cache->get($cachekey)) {
1344 if ($files['created'] > time() - THEME_DESIGNER_CACHE_LIFETIME) {
1345 unset($files['created']);
1346 return $files;
1351 $cssfiles = array('plugins'=>array(), 'parents'=>array(), 'theme'=>array());
1353 // Get all plugin sheets.
1354 $excludes = $this->resolve_excludes('plugins_exclude_sheets');
1355 if ($excludes !== true) {
1356 foreach (core_component::get_plugin_types() as $type=>$unused) {
1357 if ($type === 'theme' || (!empty($excludes[$type]) and $excludes[$type] === true)) {
1358 continue;
1360 $plugins = core_component::get_plugin_list($type);
1361 foreach ($plugins as $plugin=>$fulldir) {
1362 if (!empty($excludes[$type]) and is_array($excludes[$type])
1363 and in_array($plugin, $excludes[$type])) {
1364 continue;
1367 // Get the CSS from the plugin.
1368 $sheetfile = "$fulldir/styles.css";
1369 if (is_readable($sheetfile)) {
1370 $cssfiles['plugins'][$type.'_'.$plugin] = $sheetfile;
1373 // Create a list of candidate sheets from parents (direct parent last) and current theme.
1374 $candidates = array();
1375 foreach (array_reverse($this->parent_configs) as $parent_config) {
1376 $candidates[] = $parent_config->name;
1378 $candidates[] = $this->name;
1380 // Add the sheets found.
1381 foreach ($candidates as $candidate) {
1382 $sheetthemefile = "$fulldir/styles_{$candidate}.css";
1383 if (is_readable($sheetthemefile)) {
1384 $cssfiles['plugins'][$type.'_'.$plugin.'_'.$candidate] = $sheetthemefile;
1391 // Find out wanted parent sheets.
1392 $excludes = $this->resolve_excludes('parents_exclude_sheets');
1393 if ($excludes !== true) {
1394 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
1395 $parent = $parent_config->name;
1396 if (empty($parent_config->sheets) || (!empty($excludes[$parent]) and $excludes[$parent] === true)) {
1397 continue;
1399 foreach ($parent_config->sheets as $sheet) {
1400 if (!empty($excludes[$parent]) && is_array($excludes[$parent])
1401 && in_array($sheet, $excludes[$parent])) {
1402 continue;
1405 // We never refer to the parent LESS files.
1406 $sheetfile = "$parent_config->dir/style/$sheet.css";
1407 if (is_readable($sheetfile)) {
1408 $cssfiles['parents'][$parent][$sheet] = $sheetfile;
1415 // Current theme sheets.
1416 // We first add the SCSS file because we want the CSS ones to
1417 // be included after the SCSS code.
1418 if ($this->get_scss_property()) {
1419 $cssfiles['theme'][self::SCSS_KEY] = true;
1421 if (is_array($this->sheets)) {
1422 foreach ($this->sheets as $sheet) {
1423 $sheetfile = "$this->dir/style/$sheet.css";
1424 if (is_readable($sheetfile) && !isset($cssfiles['theme'][$sheet])) {
1425 $cssfiles['theme'][$sheet] = $sheetfile;
1430 if ($cache) {
1431 $files = $cssfiles;
1432 $files['created'] = time();
1433 $cache->set($cachekey, $files);
1435 return $cssfiles;
1439 * Return the CSS content generated from the SCSS file.
1441 * @param bool $themedesigner True if theme designer is enabled.
1442 * @return bool|string Return false when the compilation failed. Else the compiled string.
1444 protected function get_css_content_from_scss($themedesigner) {
1445 global $CFG;
1447 list($paths, $scss) = $this->get_scss_property();
1448 if (!$scss) {
1449 throw new coding_exception('The theme did not define a SCSS file, or it is not readable.');
1452 // We might need more memory/time to do this, so let's play safe.
1453 raise_memory_limit(MEMORY_EXTRA);
1454 core_php_time_limit::raise(300);
1456 // TODO: MDL-62757 When changing anything in this method please do not forget to check
1457 // if the validate() method in class admin_setting_configthemepreset needs updating too.
1459 $cachedir = make_localcache_directory('scsscache-' . $this->name, false);
1460 $cacheoptions = [];
1461 if ($themedesigner) {
1462 $cacheoptions = array(
1463 'cacheDir' => $cachedir,
1464 'prefix' => 'scssphp_',
1465 'forceRefresh' => false,
1467 } else {
1468 if (file_exists($cachedir)) {
1469 remove_dir($cachedir);
1473 // Set-up the compiler.
1474 $compiler = new core_scss($cacheoptions);
1476 if ($this->supports_source_maps($themedesigner)) {
1477 // Enable source maps.
1478 $compiler->setSourceMapOptions([
1479 'sourceMapBasepath' => str_replace('\\', '/', $CFG->dirroot),
1480 'sourceMapRootpath' => $CFG->wwwroot . '/'
1482 $compiler->setSourceMap($compiler::SOURCE_MAP_INLINE);
1485 $compiler->prepend_raw_scss($this->get_pre_scss_code());
1486 if (is_string($scss)) {
1487 $compiler->set_file($scss);
1488 } else {
1489 $compiler->append_raw_scss($scss($this));
1490 $compiler->setImportPaths($paths);
1492 $compiler->append_raw_scss($this->get_extra_scss_code());
1494 try {
1495 // Compile!
1496 $compiled = $compiler->to_css();
1498 } catch (\Exception $e) {
1499 $compiled = false;
1500 debugging('Error while compiling SCSS: ' . $e->getMessage(), DEBUG_DEVELOPER);
1503 // Try to save memory.
1504 $compiler = null;
1505 unset($compiler);
1507 return $compiled;
1511 * Return the precompiled CSS if the precompiledcsscallback exists.
1513 * @return string Return compiled css.
1515 public function get_precompiled_css_content() {
1516 $configs = array_reverse($this->parent_configs) + [$this];
1517 $css = '';
1519 foreach ($configs as $config) {
1520 if (isset($config->precompiledcsscallback)) {
1521 $function = $config->precompiledcsscallback;
1522 if (function_exists($function)) {
1523 $css .= $function($this);
1527 return $css;
1531 * Get the icon system to use.
1533 * @return string
1535 public function get_icon_system() {
1537 // Getting all the candidate functions.
1538 $system = false;
1539 if (isset($this->iconsystem) && \core\output\icon_system::is_valid_system($this->iconsystem)) {
1540 return $this->iconsystem;
1542 foreach ($this->parent_configs as $parent_config) {
1543 if (isset($parent_config->iconsystem) && \core\output\icon_system::is_valid_system($parent_config->iconsystem)) {
1544 return $parent_config->iconsystem;
1547 return \core\output\icon_system::STANDARD;
1551 * Return extra SCSS code to add when compiling.
1553 * This is intended to be used by themes to inject some SCSS code
1554 * before it gets compiled. If you want to inject variables you
1555 * should use {@link self::get_scss_variables()}.
1557 * @return string The SCSS code to inject.
1559 public function get_extra_scss_code() {
1560 $content = '';
1562 // Getting all the candidate functions.
1563 $candidates = array();
1564 foreach ($this->parent_configs as $parent_config) {
1565 if (!isset($parent_config->extrascsscallback)) {
1566 continue;
1568 $candidates[] = $parent_config->extrascsscallback;
1570 $candidates[] = $this->extrascsscallback;
1572 // Calling the functions.
1573 foreach ($candidates as $function) {
1574 if (function_exists($function)) {
1575 $content .= "\n/** Extra SCSS from $function **/\n" . $function($this) . "\n";
1579 return $content;
1583 * SCSS code to prepend when compiling.
1585 * This is intended to be used by themes to inject SCSS code before it gets compiled.
1587 * @return string The SCSS code to inject.
1589 public function get_pre_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->prescsscallback)) {
1596 continue;
1598 $candidates[] = $parent_config->prescsscallback;
1600 $candidates[] = $this->prescsscallback;
1602 // Calling the functions.
1603 foreach ($candidates as $function) {
1604 if (function_exists($function)) {
1605 $content .= "\n/** Pre-SCSS from $function **/\n" . $function($this) . "\n";
1609 return $content;
1613 * Get the SCSS property.
1615 * This resolves whether a SCSS file (or content) has to be used when generating
1616 * the stylesheet for the theme. It will look at parents themes and check the
1617 * SCSS properties there.
1619 * @return False when SCSS is not used.
1620 * An array with the import paths, and the path to the SCSS file or Closure as second.
1622 public function get_scss_property() {
1623 if ($this->scsscache === null) {
1624 $configs = [$this] + $this->parent_configs;
1625 $scss = null;
1627 foreach ($configs as $config) {
1628 $path = "{$config->dir}/scss";
1630 // We collect the SCSS property until we've found one.
1631 if (empty($scss) && !empty($config->scss)) {
1632 $candidate = is_string($config->scss) ? "{$path}/{$config->scss}.scss" : $config->scss;
1633 if ($candidate instanceof Closure) {
1634 $scss = $candidate;
1635 } else if (is_string($candidate) && is_readable($candidate)) {
1636 $scss = $candidate;
1640 // We collect the import paths once we've found a SCSS property.
1641 if ($scss && is_dir($path)) {
1642 $paths[] = $path;
1647 $this->scsscache = $scss !== null ? [$paths, $scss] : false;
1650 return $this->scsscache;
1654 * Generate a URL to the file that serves theme JavaScript files.
1656 * If we determine that the theme has no relevant files, then we return
1657 * early with a null value.
1659 * @param bool $inhead true means head url, false means footer
1660 * @return moodle_url|null
1662 public function javascript_url($inhead) {
1663 global $CFG;
1665 $rev = theme_get_revision();
1666 $params = array('theme'=>$this->name,'rev'=>$rev);
1667 $params['type'] = $inhead ? 'head' : 'footer';
1669 // Return early if there are no files to serve
1670 if (count($this->javascript_files($params['type'])) === 0) {
1671 return null;
1674 if (!empty($CFG->slasharguments) and $rev > 0) {
1675 $url = new moodle_url("/theme/javascript.php");
1676 $url->set_slashargument('/'.$this->name.'/'.$rev.'/'.$params['type'], 'noparam', true);
1677 return $url;
1678 } else {
1679 return new moodle_url('/theme/javascript.php', $params);
1684 * Get the URL's for the JavaScript files used by this theme.
1685 * They won't be served directly, instead they'll be mediated through
1686 * theme/javascript.php.
1688 * @param string $type Either javascripts_footer, or javascripts
1689 * @return array
1691 public function javascript_files($type) {
1692 if ($type === 'footer') {
1693 $type = 'javascripts_footer';
1694 } else {
1695 $type = 'javascripts';
1698 $js = array();
1699 // find out wanted parent javascripts
1700 $excludes = $this->resolve_excludes('parents_exclude_javascripts');
1701 if ($excludes !== true) {
1702 foreach (array_reverse($this->parent_configs) as $parent_config) { // base first, the immediate parent last
1703 $parent = $parent_config->name;
1704 if (empty($parent_config->$type)) {
1705 continue;
1707 if (!empty($excludes[$parent]) and $excludes[$parent] === true) {
1708 continue;
1710 foreach ($parent_config->$type as $javascript) {
1711 if (!empty($excludes[$parent]) and is_array($excludes[$parent])
1712 and in_array($javascript, $excludes[$parent])) {
1713 continue;
1715 $javascriptfile = "$parent_config->dir/javascript/$javascript.js";
1716 if (is_readable($javascriptfile)) {
1717 $js[] = $javascriptfile;
1723 // current theme javascripts
1724 if (is_array($this->$type)) {
1725 foreach ($this->$type as $javascript) {
1726 $javascriptfile = "$this->dir/javascript/$javascript.js";
1727 if (is_readable($javascriptfile)) {
1728 $js[] = $javascriptfile;
1732 return $js;
1736 * Resolves an exclude setting to the themes setting is applicable or the
1737 * setting of its closest parent.
1739 * @param string $variable The name of the setting the exclude setting to resolve
1740 * @param string $default
1741 * @return mixed
1743 protected function resolve_excludes($variable, $default = null) {
1744 $setting = $default;
1745 if (is_array($this->{$variable}) or $this->{$variable} === true) {
1746 $setting = $this->{$variable};
1747 } else {
1748 foreach ($this->parent_configs as $parent_config) { // the immediate parent first, base last
1749 if (!isset($parent_config->{$variable})) {
1750 continue;
1752 if (is_array($parent_config->{$variable}) or $parent_config->{$variable} === true) {
1753 $setting = $parent_config->{$variable};
1754 break;
1758 return $setting;
1762 * Returns the content of the one huge javascript file merged from all theme javascript files.
1764 * @param bool $type
1765 * @return string
1767 public function javascript_content($type) {
1768 $jsfiles = $this->javascript_files($type);
1769 $js = '';
1770 foreach ($jsfiles as $jsfile) {
1771 $js .= file_get_contents($jsfile)."\n";
1773 return $js;
1777 * Post processes CSS.
1779 * This method post processes all of the CSS before it is served for this theme.
1780 * This is done so that things such as image URL's can be swapped in and to
1781 * run any specific CSS post process method the theme has requested.
1782 * This allows themes to use CSS settings.
1784 * @param string $css The CSS to process.
1785 * @return string The processed CSS.
1787 public function post_process($css) {
1788 // now resolve all image locations
1789 if (preg_match_all('/\[\[pix:([a-z0-9_]+\|)?([^\]]+)\]\]/', $css, $matches, PREG_SET_ORDER)) {
1790 $replaced = array();
1791 foreach ($matches as $match) {
1792 if (isset($replaced[$match[0]])) {
1793 continue;
1795 $replaced[$match[0]] = true;
1796 $imagename = $match[2];
1797 $component = rtrim($match[1], '|');
1798 $imageurl = $this->image_url($imagename, $component)->out(false);
1799 // we do not need full url because the image.php is always in the same dir
1800 $imageurl = preg_replace('|^http.?://[^/]+|', '', $imageurl);
1801 $css = str_replace($match[0], $imageurl, $css);
1805 // Now resolve all font locations.
1806 if (preg_match_all('/\[\[font:([a-z0-9_]+\|)?([^\]]+)\]\]/', $css, $matches, PREG_SET_ORDER)) {
1807 $replaced = array();
1808 foreach ($matches as $match) {
1809 if (isset($replaced[$match[0]])) {
1810 continue;
1812 $replaced[$match[0]] = true;
1813 $fontname = $match[2];
1814 $component = rtrim($match[1], '|');
1815 $fonturl = $this->font_url($fontname, $component)->out(false);
1816 // We do not need full url because the font.php is always in the same dir.
1817 $fonturl = preg_replace('|^http.?://[^/]+|', '', $fonturl);
1818 $css = str_replace($match[0], $fonturl, $css);
1822 // Now resolve all theme settings or do any other postprocessing.
1823 // This needs to be done before calling core parser, since the parser strips [[settings]] tags.
1824 $csspostprocess = $this->csspostprocess;
1825 if (function_exists($csspostprocess)) {
1826 $css = $csspostprocess($css, $this);
1829 // Post processing using an object representation of CSS.
1830 $treeprocessor = $this->get_css_tree_post_processor();
1831 $needsparsing = !empty($treeprocessor) || !empty($this->rtlmode);
1832 if ($needsparsing) {
1834 // We might need more memory/time to do this, so let's play safe.
1835 raise_memory_limit(MEMORY_EXTRA);
1836 core_php_time_limit::raise(300);
1838 $parser = new core_cssparser($css);
1839 $csstree = $parser->parse();
1840 unset($parser);
1842 if ($this->rtlmode) {
1843 $this->rtlize($csstree);
1846 if ($treeprocessor) {
1847 $treeprocessor($csstree, $this);
1850 $css = $csstree->render();
1851 unset($csstree);
1854 return $css;
1858 * Flip a stylesheet to RTL.
1860 * @param Object $csstree The parsed CSS tree structure to flip.
1861 * @return void
1863 protected function rtlize($csstree) {
1864 $rtlcss = new core_rtlcss($csstree);
1865 $rtlcss->flip();
1869 * Return the direct URL for an image from the pix folder.
1871 * Use this function sparingly and never for icons. For icons use pix_icon or the pix helper in a mustache template.
1873 * @deprecated since Moodle 3.3
1874 * @param string $imagename the name of the icon.
1875 * @param string $component specification of one plugin like in get_string()
1876 * @return moodle_url
1878 public function pix_url($imagename, $component) {
1879 debugging('pix_url is deprecated. Use image_url for images and pix_icon for icons.', DEBUG_DEVELOPER);
1880 return $this->image_url($imagename, $component);
1884 * Return the direct URL for an image from the pix folder.
1886 * Use this function sparingly and never for icons. For icons use pix_icon or the pix helper in a mustache template.
1888 * @param string $imagename the name of the icon.
1889 * @param string $component specification of one plugin like in get_string()
1890 * @return moodle_url
1892 public function image_url($imagename, $component) {
1893 global $CFG;
1895 $params = array('theme'=>$this->name);
1896 $svg = $this->use_svg_icons();
1898 if (empty($component) or $component === 'moodle' or $component === 'core') {
1899 $params['component'] = 'core';
1900 } else {
1901 $params['component'] = $component;
1904 $rev = theme_get_revision();
1905 if ($rev != -1) {
1906 $params['rev'] = $rev;
1909 $params['image'] = $imagename;
1911 $url = new moodle_url("/theme/image.php");
1912 if (!empty($CFG->slasharguments) and $rev > 0) {
1913 $path = '/'.$params['theme'].'/'.$params['component'].'/'.$params['rev'].'/'.$params['image'];
1914 if (!$svg) {
1915 // We add a simple /_s to the start of the path.
1916 // The underscore is used to ensure that it isn't a valid theme name.
1917 $path = '/_s'.$path;
1919 $url->set_slashargument($path, 'noparam', true);
1920 } else {
1921 if (!$svg) {
1922 // We add an SVG param so that we know not to serve SVG images.
1923 // We do this because all modern browsers support SVG and this param will one day be removed.
1924 $params['svg'] = '0';
1926 $url->params($params);
1929 return $url;
1933 * Return the URL for a font
1935 * @param string $font the name of the font (including extension).
1936 * @param string $component specification of one plugin like in get_string()
1937 * @return moodle_url
1939 public function font_url($font, $component) {
1940 global $CFG;
1942 $params = array('theme'=>$this->name);
1944 if (empty($component) or $component === 'moodle' or $component === 'core') {
1945 $params['component'] = 'core';
1946 } else {
1947 $params['component'] = $component;
1950 $rev = theme_get_revision();
1951 if ($rev != -1) {
1952 $params['rev'] = $rev;
1955 $params['font'] = $font;
1957 $url = new moodle_url("/theme/font.php");
1958 if (!empty($CFG->slasharguments) and $rev > 0) {
1959 $path = '/'.$params['theme'].'/'.$params['component'].'/'.$params['rev'].'/'.$params['font'];
1960 $url->set_slashargument($path, 'noparam', true);
1961 } else {
1962 $url->params($params);
1965 return $url;
1969 * Returns URL to the stored file via pluginfile.php.
1971 * Note the theme must also implement pluginfile.php handler,
1972 * theme revision is used instead of the itemid.
1974 * @param string $setting
1975 * @param string $filearea
1976 * @return string protocol relative URL or null if not present
1978 public function setting_file_url($setting, $filearea) {
1979 global $CFG;
1981 if (empty($this->settings->$setting)) {
1982 return null;
1985 $component = 'theme_'.$this->name;
1986 $itemid = theme_get_revision();
1987 $filepath = $this->settings->$setting;
1988 $syscontext = context_system::instance();
1990 $url = moodle_url::make_file_url("$CFG->wwwroot/pluginfile.php", "/$syscontext->id/$component/$filearea/$itemid".$filepath);
1992 // Now this is tricky because the we can not hardcode http or https here, lets use the relative link.
1993 // Note: unfortunately moodle_url does not support //urls yet.
1995 $url = preg_replace('|^https?://|i', '//', $url->out(false));
1997 return $url;
2001 * Serve the theme setting file.
2003 * @param string $filearea
2004 * @param array $args
2005 * @param bool $forcedownload
2006 * @param array $options
2007 * @return bool may terminate if file not found or donotdie not specified
2009 public function setting_file_serve($filearea, $args, $forcedownload, $options) {
2010 global $CFG;
2011 require_once("$CFG->libdir/filelib.php");
2013 $syscontext = context_system::instance();
2014 $component = 'theme_'.$this->name;
2016 $revision = array_shift($args);
2017 if ($revision < 0) {
2018 $lifetime = 0;
2019 } else {
2020 $lifetime = 60*60*24*60;
2021 // By default, theme files must be cache-able by both browsers and proxies.
2022 if (!array_key_exists('cacheability', $options)) {
2023 $options['cacheability'] = 'public';
2027 $fs = get_file_storage();
2028 $relativepath = implode('/', $args);
2030 $fullpath = "/{$syscontext->id}/{$component}/{$filearea}/0/{$relativepath}";
2031 $fullpath = rtrim($fullpath, '/');
2032 if ($file = $fs->get_file_by_hash(sha1($fullpath))) {
2033 send_stored_file($file, $lifetime, 0, $forcedownload, $options);
2034 return true;
2035 } else {
2036 send_file_not_found();
2041 * Resolves the real image location.
2043 * $svg was introduced as an arg in 2.4. It is important because not all supported browsers support the use of SVG
2044 * and we need a way in which to turn it off.
2045 * By default SVG won't be used unless asked for. This is done for two reasons:
2046 * 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
2047 * browser supports SVG.
2048 * 2. We only serve SVG images from locations we trust. This must NOT include any areas where the image may have been uploaded
2049 * by the user due to security concerns.
2051 * @param string $image name of image, may contain relative path
2052 * @param string $component
2053 * @param bool $svg|null Should SVG images also be looked for? If null, resorts to $CFG->svgicons if that is set; falls back to
2054 * auto-detection of browser support otherwise
2055 * @return string full file path
2057 public function resolve_image_location($image, $component, $svg = false) {
2058 global $CFG;
2060 if (!is_bool($svg)) {
2061 // If $svg isn't a bool then we need to decide for ourselves.
2062 $svg = $this->use_svg_icons();
2065 if ($component === 'moodle' or $component === 'core' or empty($component)) {
2066 if ($imagefile = $this->image_exists("$this->dir/pix_core/$image", $svg)) {
2067 return $imagefile;
2069 foreach (array_reverse($this->parent_configs) as $parent_config) { // base first, the immediate parent last
2070 if ($imagefile = $this->image_exists("$parent_config->dir/pix_core/$image", $svg)) {
2071 return $imagefile;
2074 if ($imagefile = $this->image_exists("$CFG->dataroot/pix/$image", $svg)) {
2075 return $imagefile;
2077 if ($imagefile = $this->image_exists("$CFG->dirroot/pix/$image", $svg)) {
2078 return $imagefile;
2080 return null;
2082 } else if ($component === 'theme') { //exception
2083 if ($image === 'favicon') {
2084 return "$this->dir/pix/favicon.ico";
2086 if ($imagefile = $this->image_exists("$this->dir/pix/$image", $svg)) {
2087 return $imagefile;
2089 foreach (array_reverse($this->parent_configs) as $parent_config) { // base first, the immediate parent last
2090 if ($imagefile = $this->image_exists("$parent_config->dir/pix/$image", $svg)) {
2091 return $imagefile;
2094 return null;
2096 } else {
2097 if (strpos($component, '_') === false) {
2098 $component = 'mod_'.$component;
2100 list($type, $plugin) = explode('_', $component, 2);
2102 if ($imagefile = $this->image_exists("$this->dir/pix_plugins/$type/$plugin/$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_plugins/$type/$plugin/$image", $svg)) {
2107 return $imagefile;
2110 if ($imagefile = $this->image_exists("$CFG->dataroot/pix_plugins/$type/$plugin/$image", $svg)) {
2111 return $imagefile;
2113 $dir = core_component::get_plugin_directory($type, $plugin);
2114 if ($imagefile = $this->image_exists("$dir/pix/$image", $svg)) {
2115 return $imagefile;
2117 return null;
2122 * Resolves the real font location.
2124 * @param string $font name of font file
2125 * @param string $component
2126 * @return string full file path
2128 public function resolve_font_location($font, $component) {
2129 global $CFG;
2131 if ($component === 'moodle' or $component === 'core' or empty($component)) {
2132 if (file_exists("$this->dir/fonts_core/$font")) {
2133 return "$this->dir/fonts_core/$font";
2135 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
2136 if (file_exists("$parent_config->dir/fonts_core/$font")) {
2137 return "$parent_config->dir/fonts_core/$font";
2140 if (file_exists("$CFG->dataroot/fonts/$font")) {
2141 return "$CFG->dataroot/fonts/$font";
2143 if (file_exists("$CFG->dirroot/lib/fonts/$font")) {
2144 return "$CFG->dirroot/lib/fonts/$font";
2146 return null;
2148 } else if ($component === 'theme') { // Exception.
2149 if (file_exists("$this->dir/fonts/$font")) {
2150 return "$this->dir/fonts/$font";
2152 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
2153 if (file_exists("$parent_config->dir/fonts/$font")) {
2154 return "$parent_config->dir/fonts/$font";
2157 return null;
2159 } else {
2160 if (strpos($component, '_') === false) {
2161 $component = 'mod_'.$component;
2163 list($type, $plugin) = explode('_', $component, 2);
2165 if (file_exists("$this->dir/fonts_plugins/$type/$plugin/$font")) {
2166 return "$this->dir/fonts_plugins/$type/$plugin/$font";
2168 foreach (array_reverse($this->parent_configs) as $parent_config) { // Base first, the immediate parent last.
2169 if (file_exists("$parent_config->dir/fonts_plugins/$type/$plugin/$font")) {
2170 return "$parent_config->dir/fonts_plugins/$type/$plugin/$font";
2173 if (file_exists("$CFG->dataroot/fonts_plugins/$type/$plugin/$font")) {
2174 return "$CFG->dataroot/fonts_plugins/$type/$plugin/$font";
2176 $dir = core_component::get_plugin_directory($type, $plugin);
2177 if (file_exists("$dir/fonts/$font")) {
2178 return "$dir/fonts/$font";
2180 return null;
2185 * Return true if we should look for SVG images as well.
2187 * @return bool
2189 public function use_svg_icons() {
2190 global $CFG;
2191 if ($this->usesvg === null) {
2193 if (!isset($CFG->svgicons)) {
2194 $this->usesvg = core_useragent::supports_svg();
2195 } else {
2196 // Force them on/off depending upon the setting.
2197 $this->usesvg = (bool)$CFG->svgicons;
2200 return $this->usesvg;
2204 * Forces the usesvg setting to either true or false, avoiding any decision making.
2206 * This function should only ever be used when absolutely required, and before any generation of image URL's has occurred.
2207 * DO NOT ABUSE THIS FUNCTION... not that you'd want to right ;)
2209 * @param bool $setting True to force the use of svg when available, null otherwise.
2211 public function force_svg_use($setting) {
2212 $this->usesvg = (bool)$setting;
2216 * Set to be in RTL mode.
2218 * This will likely be used when post processing the CSS before serving it.
2220 * @param bool $inrtl True when in RTL mode.
2222 public function set_rtl_mode($inrtl = true) {
2223 $this->rtlmode = $inrtl;
2227 * Checks if source maps are supported
2229 * @param bool $themedesigner True if theme designer is enabled.
2230 * @return boolean True if source maps are supported.
2232 public function supports_source_maps($themedesigner): bool {
2233 if (empty($this->rtlmode) && $themedesigner) {
2234 return true;
2236 return false;
2240 * Whether the theme is being served in RTL mode.
2242 * @return bool True when in RTL mode.
2244 public function get_rtl_mode() {
2245 return $this->rtlmode;
2249 * Checks if file with any image extension exists.
2251 * The order to these images was adjusted prior to the release of 2.4
2252 * At that point the were the following image counts in Moodle core:
2254 * - png = 667 in pix dirs (1499 total)
2255 * - gif = 385 in pix dirs (606 total)
2256 * - jpg = 62 in pix dirs (74 total)
2257 * - jpeg = 0 in pix dirs (1 total)
2259 * There is work in progress to move towards SVG presently hence that has been prioritiesed.
2261 * @param string $filepath
2262 * @param bool $svg If set to true SVG images will also be looked for.
2263 * @return string image name with extension
2265 private static function image_exists($filepath, $svg = false) {
2266 if ($svg && file_exists("$filepath.svg")) {
2267 return "$filepath.svg";
2268 } else if (file_exists("$filepath.png")) {
2269 return "$filepath.png";
2270 } else if (file_exists("$filepath.gif")) {
2271 return "$filepath.gif";
2272 } else if (file_exists("$filepath.jpg")) {
2273 return "$filepath.jpg";
2274 } else if (file_exists("$filepath.jpeg")) {
2275 return "$filepath.jpeg";
2276 } else {
2277 return false;
2282 * Loads the theme config from config.php file.
2284 * @param string $themename
2285 * @param stdClass $settings from config_plugins table
2286 * @param boolean $parentscheck true to also check the parents. .
2287 * @return stdClass The theme configuration
2289 private static function find_theme_config($themename, $settings, $parentscheck = true) {
2290 // We have to use the variable name $THEME (upper case) because that
2291 // is what is used in theme config.php files.
2293 if (!$dir = theme_config::find_theme_location($themename)) {
2294 return null;
2297 $THEME = new stdClass();
2298 $THEME->name = $themename;
2299 $THEME->dir = $dir;
2300 $THEME->settings = $settings;
2302 global $CFG; // just in case somebody tries to use $CFG in theme config
2303 include("$THEME->dir/config.php");
2305 // verify the theme configuration is OK
2306 if (!is_array($THEME->parents)) {
2307 // parents option is mandatory now
2308 return null;
2309 } else {
2310 // We use $parentscheck to only check the direct parents (avoid infinite loop).
2311 if ($parentscheck) {
2312 // Find all parent theme configs.
2313 foreach ($THEME->parents as $parent) {
2314 $parentconfig = theme_config::find_theme_config($parent, $settings, false);
2315 if (empty($parentconfig)) {
2316 return null;
2322 return $THEME;
2326 * Finds the theme location and verifies the theme has all needed files
2327 * and is not obsoleted.
2329 * @param string $themename
2330 * @return string full dir path or null if not found
2332 private static function find_theme_location($themename) {
2333 global $CFG;
2335 if (file_exists("$CFG->dirroot/theme/$themename/config.php")) {
2336 $dir = "$CFG->dirroot/theme/$themename";
2338 } else if (!empty($CFG->themedir) and file_exists("$CFG->themedir/$themename/config.php")) {
2339 $dir = "$CFG->themedir/$themename";
2341 } else {
2342 return null;
2345 if (file_exists("$dir/styles.php")) {
2346 //legacy theme - needs to be upgraded - upgrade info is displayed on the admin settings page
2347 return null;
2350 return $dir;
2354 * Get the renderer for a part of Moodle for this theme.
2356 * @param moodle_page $page the page we are rendering
2357 * @param string $component the name of part of moodle. E.g. 'core', 'quiz', 'qtype_multichoice'.
2358 * @param string $subtype optional subtype such as 'news' resulting to 'mod_forum_news'
2359 * @param string $target one of rendering target constants
2360 * @return renderer_base the requested renderer.
2362 public function get_renderer(moodle_page $page, $component, $subtype = null, $target = null) {
2363 if (is_null($this->rf)) {
2364 $classname = $this->rendererfactory;
2365 $this->rf = new $classname($this);
2368 return $this->rf->get_renderer($page, $component, $subtype, $target);
2372 * Get the information from {@link $layouts} for this type of page.
2374 * @param string $pagelayout the the page layout name.
2375 * @return array the appropriate part of {@link $layouts}.
2377 protected function layout_info_for_page($pagelayout) {
2378 if (array_key_exists($pagelayout, $this->layouts)) {
2379 return $this->layouts[$pagelayout];
2380 } else {
2381 debugging('Invalid page layout specified: ' . $pagelayout);
2382 return $this->layouts['standard'];
2387 * Given the settings of this theme, and the page pagelayout, return the
2388 * full path of the page layout file to use.
2390 * Used by {@link core_renderer::header()}.
2392 * @param string $pagelayout the the page layout name.
2393 * @return string Full path to the lyout file to use
2395 public function layout_file($pagelayout) {
2396 global $CFG;
2398 $layoutinfo = $this->layout_info_for_page($pagelayout);
2399 $layoutfile = $layoutinfo['file'];
2401 if (array_key_exists('theme', $layoutinfo)) {
2402 $themes = array($layoutinfo['theme']);
2403 } else {
2404 $themes = array_merge(array($this->name),$this->parents);
2407 foreach ($themes as $theme) {
2408 if ($dir = $this->find_theme_location($theme)) {
2409 $path = "$dir/layout/$layoutfile";
2411 // Check the template exists, return general base theme template if not.
2412 if (is_readable($path)) {
2413 return $path;
2418 debugging('Can not find layout file for: ' . $pagelayout);
2419 // fallback to standard normal layout
2420 return "$CFG->dirroot/theme/base/layout/general.php";
2424 * Returns auxiliary page layout options specified in layout configuration array.
2426 * @param string $pagelayout
2427 * @return array
2429 public function pagelayout_options($pagelayout) {
2430 $info = $this->layout_info_for_page($pagelayout);
2431 if (!empty($info['options'])) {
2432 return $info['options'];
2434 return array();
2438 * Inform a block_manager about the block regions this theme wants on this
2439 * page layout.
2441 * @param string $pagelayout the general type of the page.
2442 * @param block_manager $blockmanager the block_manger to set up.
2444 public function setup_blocks($pagelayout, $blockmanager) {
2445 $layoutinfo = $this->layout_info_for_page($pagelayout);
2446 if (!empty($layoutinfo['regions'])) {
2447 $blockmanager->add_regions($layoutinfo['regions'], false);
2448 $blockmanager->set_default_region($layoutinfo['defaultregion']);
2453 * Gets the visible name for the requested block region.
2455 * @param string $region The region name to get
2456 * @param string $theme The theme the region belongs to (may come from the parent theme)
2457 * @return string
2459 protected function get_region_name($region, $theme) {
2461 $stringman = get_string_manager();
2463 // Check if the name is defined in the theme.
2464 if ($stringman->string_exists('region-' . $region, 'theme_' . $theme)) {
2465 return get_string('region-' . $region, 'theme_' . $theme);
2468 // Check the theme parents.
2469 foreach ($this->parents as $parentthemename) {
2470 if ($stringman->string_exists('region-' . $region, 'theme_' . $parentthemename)) {
2471 return get_string('region-' . $region, 'theme_' . $parentthemename);
2475 // Last resort, try the boost theme for names.
2476 return get_string('region-' . $region, 'theme_boost');
2480 * Get the list of all block regions known to this theme in all templates.
2482 * @return array internal region name => human readable name.
2484 public function get_all_block_regions() {
2485 $regions = array();
2486 foreach ($this->layouts as $layoutinfo) {
2487 foreach ($layoutinfo['regions'] as $region) {
2488 $regions[$region] = $this->get_region_name($region, $this->name);
2491 return $regions;
2495 * Returns the human readable name of the theme
2497 * @return string
2499 public function get_theme_name() {
2500 return get_string('pluginname', 'theme_'.$this->name);
2504 * Returns the block render method.
2506 * It is set by the theme via:
2507 * $THEME->blockrendermethod = '...';
2509 * It can be one of two values, blocks or blocks_for_region.
2510 * It should be set to the method being used by the theme layouts.
2512 * @return string
2514 public function get_block_render_method() {
2515 if ($this->blockrendermethod) {
2516 // Return the specified block render method.
2517 return $this->blockrendermethod;
2519 // Its not explicitly set, check the parent theme configs.
2520 foreach ($this->parent_configs as $config) {
2521 if (isset($config->blockrendermethod)) {
2522 return $config->blockrendermethod;
2525 // Default it to blocks.
2526 return 'blocks';
2530 * Get the callable for CSS tree post processing.
2532 * @return string|null
2534 public function get_css_tree_post_processor() {
2535 $configs = [$this] + $this->parent_configs;
2536 foreach ($configs as $config) {
2537 if (!empty($config->csstreepostprocessor) && is_callable($config->csstreepostprocessor)) {
2538 return $config->csstreepostprocessor;
2541 return null;
2547 * This class keeps track of which HTML tags are currently open.
2549 * This makes it much easier to always generate well formed XHTML output, even
2550 * if execution terminates abruptly. Any time you output some opening HTML
2551 * without the matching closing HTML, you should push the necessary close tags
2552 * onto the stack.
2554 * @copyright 2009 Tim Hunt
2555 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2556 * @since Moodle 2.0
2557 * @package core
2558 * @category output
2560 class xhtml_container_stack {
2563 * @var array Stores the list of open containers.
2565 protected $opencontainers = array();
2568 * @var array In developer debug mode, stores a stack trace of all opens and
2569 * closes, so we can output helpful error messages when there is a mismatch.
2571 protected $log = array();
2574 * @var boolean Store whether we are developer debug mode. We need this in
2575 * several places including in the destructor where we may not have access to $CFG.
2577 protected $isdebugging;
2580 * Constructor
2582 public function __construct() {
2583 global $CFG;
2584 $this->isdebugging = $CFG->debugdeveloper;
2588 * Push the close HTML for a recently opened container onto the stack.
2590 * @param string $type The type of container. This is checked when {@link pop()}
2591 * is called and must match, otherwise a developer debug warning is output.
2592 * @param string $closehtml The HTML required to close the container.
2594 public function push($type, $closehtml) {
2595 $container = new stdClass;
2596 $container->type = $type;
2597 $container->closehtml = $closehtml;
2598 if ($this->isdebugging) {
2599 $this->log('Open', $type);
2601 array_push($this->opencontainers, $container);
2605 * Pop the HTML for the next closing container from the stack. The $type
2606 * must match the type passed when the container was opened, otherwise a
2607 * warning will be output.
2609 * @param string $type The type of container.
2610 * @return string the HTML required to close the container.
2612 public function pop($type) {
2613 if (empty($this->opencontainers)) {
2614 debugging('<p>There are no more open containers. This suggests there is a nesting problem.</p>' .
2615 $this->output_log(), DEBUG_DEVELOPER);
2616 return;
2619 $container = array_pop($this->opencontainers);
2620 if ($container->type != $type) {
2621 debugging('<p>The type of container to be closed (' . $container->type .
2622 ') does not match the type of the next open container (' . $type .
2623 '). This suggests there is a nesting problem.</p>' .
2624 $this->output_log(), DEBUG_DEVELOPER);
2626 if ($this->isdebugging) {
2627 $this->log('Close', $type);
2629 return $container->closehtml;
2633 * Close all but the last open container. This is useful in places like error
2634 * handling, where you want to close all the open containers (apart from <body>)
2635 * before outputting the error message.
2637 * @param bool $shouldbenone assert that the stack should be empty now - causes a
2638 * developer debug warning if it isn't.
2639 * @return string the HTML required to close any open containers inside <body>.
2641 public function pop_all_but_last($shouldbenone = false) {
2642 if ($shouldbenone && count($this->opencontainers) != 1) {
2643 debugging('<p>Some HTML tags were opened in the body of the page but not closed.</p>' .
2644 $this->output_log(), DEBUG_DEVELOPER);
2646 $output = '';
2647 while (count($this->opencontainers) > 1) {
2648 $container = array_pop($this->opencontainers);
2649 $output .= $container->closehtml;
2651 return $output;
2655 * You can call this function if you want to throw away an instance of this
2656 * class without properly emptying the stack (for example, in a unit test).
2657 * Calling this method stops the destruct method from outputting a developer
2658 * debug warning. After calling this method, the instance can no longer be used.
2660 public function discard() {
2661 $this->opencontainers = null;
2665 * Adds an entry to the log.
2667 * @param string $action The name of the action
2668 * @param string $type The type of action
2670 protected function log($action, $type) {
2671 $this->log[] = '<li>' . $action . ' ' . $type . ' at:' .
2672 format_backtrace(debug_backtrace()) . '</li>';
2676 * Outputs the log's contents as a HTML list.
2678 * @return string HTML list of the log
2680 protected function output_log() {
2681 return '<ul>' . implode("\n", $this->log) . '</ul>';