MDL-59079 core_analytics: Refactor community of inquiry indicators
[moodle.git] / lib / outputrenderers.php
blob139e6f9d3dbea4d5ff2c2d91f02dfae4ecef1b07
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 * Classes for rendering HTML output for Moodle.
20 * Please see {@link http://docs.moodle.org/en/Developement:How_Moodle_outputs_HTML}
21 * for an overview.
23 * Included in this file are the primary renderer classes:
24 * - renderer_base: The renderer outline class that all renderers
25 * should inherit from.
26 * - core_renderer: The standard HTML renderer.
27 * - core_renderer_cli: An adaption of the standard renderer for CLI scripts.
28 * - core_renderer_ajax: An adaption of the standard renderer for AJAX scripts.
29 * - plugin_renderer_base: A renderer class that should be extended by all
30 * plugin renderers.
32 * @package core
33 * @category output
34 * @copyright 2009 Tim Hunt
35 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 defined('MOODLE_INTERNAL') || die();
40 /**
41 * Simple base class for Moodle renderers.
43 * Tracks the xhtml_container_stack to use, which is passed in in the constructor.
45 * Also has methods to facilitate generating HTML output.
47 * @copyright 2009 Tim Hunt
48 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
49 * @since Moodle 2.0
50 * @package core
51 * @category output
53 class renderer_base {
54 /**
55 * @var xhtml_container_stack The xhtml_container_stack to use.
57 protected $opencontainers;
59 /**
60 * @var moodle_page The Moodle page the renderer has been created to assist with.
62 protected $page;
64 /**
65 * @var string The requested rendering target.
67 protected $target;
69 /**
70 * @var Mustache_Engine $mustache The mustache template compiler
72 private $mustache;
74 /**
75 * Return an instance of the mustache class.
77 * @since 2.9
78 * @return Mustache_Engine
80 protected function get_mustache() {
81 global $CFG;
83 if ($this->mustache === null) {
84 $themename = $this->page->theme->name;
85 $themerev = theme_get_revision();
87 $cachedir = make_localcache_directory("mustache/$themerev/$themename");
89 $loader = new \core\output\mustache_filesystem_loader();
90 $stringhelper = new \core\output\mustache_string_helper();
91 $quotehelper = new \core\output\mustache_quote_helper();
92 $jshelper = new \core\output\mustache_javascript_helper($this->page);
93 $pixhelper = new \core\output\mustache_pix_helper($this);
94 $shortentexthelper = new \core\output\mustache_shorten_text_helper();
95 $userdatehelper = new \core\output\mustache_user_date_helper();
97 // We only expose the variables that are exposed to JS templates.
98 $safeconfig = $this->page->requires->get_config_for_javascript($this->page, $this);
100 $helpers = array('config' => $safeconfig,
101 'str' => array($stringhelper, 'str'),
102 'quote' => array($quotehelper, 'quote'),
103 'js' => array($jshelper, 'help'),
104 'pix' => array($pixhelper, 'pix'),
105 'shortentext' => array($shortentexthelper, 'shorten'),
106 'userdate' => array($userdatehelper, 'transform'),
109 $this->mustache = new Mustache_Engine(array(
110 'cache' => $cachedir,
111 'escape' => 's',
112 'loader' => $loader,
113 'helpers' => $helpers,
114 'pragmas' => [Mustache_Engine::PRAGMA_BLOCKS]));
118 return $this->mustache;
123 * Constructor
125 * The constructor takes two arguments. The first is the page that the renderer
126 * has been created to assist with, and the second is the target.
127 * The target is an additional identifier that can be used to load different
128 * renderers for different options.
130 * @param moodle_page $page the page we are doing output for.
131 * @param string $target one of rendering target constants
133 public function __construct(moodle_page $page, $target) {
134 $this->opencontainers = $page->opencontainers;
135 $this->page = $page;
136 $this->target = $target;
140 * Renders a template by name with the given context.
142 * The provided data needs to be array/stdClass made up of only simple types.
143 * Simple types are array,stdClass,bool,int,float,string
145 * @since 2.9
146 * @param array|stdClass $context Context containing data for the template.
147 * @return string|boolean
149 public function render_from_template($templatename, $context) {
150 static $templatecache = array();
151 $mustache = $this->get_mustache();
153 try {
154 // Grab a copy of the existing helper to be restored later.
155 $uniqidhelper = $mustache->getHelper('uniqid');
156 } catch (Mustache_Exception_UnknownHelperException $e) {
157 // Helper doesn't exist.
158 $uniqidhelper = null;
161 // Provide 1 random value that will not change within a template
162 // but will be different from template to template. This is useful for
163 // e.g. aria attributes that only work with id attributes and must be
164 // unique in a page.
165 $mustache->addHelper('uniqid', new \core\output\mustache_uniqid_helper());
166 if (isset($templatecache[$templatename])) {
167 $template = $templatecache[$templatename];
168 } else {
169 try {
170 $template = $mustache->loadTemplate($templatename);
171 $templatecache[$templatename] = $template;
172 } catch (Mustache_Exception_UnknownTemplateException $e) {
173 throw new moodle_exception('Unknown template: ' . $templatename);
177 $renderedtemplate = trim($template->render($context));
179 // If we had an existing uniqid helper then we need to restore it to allow
180 // handle nested calls of render_from_template.
181 if ($uniqidhelper) {
182 $mustache->addHelper('uniqid', $uniqidhelper);
185 return $renderedtemplate;
190 * Returns rendered widget.
192 * The provided widget needs to be an object that extends the renderable
193 * interface.
194 * If will then be rendered by a method based upon the classname for the widget.
195 * For instance a widget of class `crazywidget` will be rendered by a protected
196 * render_crazywidget method of this renderer.
198 * @param renderable $widget instance with renderable interface
199 * @return string
201 public function render(renderable $widget) {
202 $classname = get_class($widget);
203 // Strip namespaces.
204 $classname = preg_replace('/^.*\\\/', '', $classname);
205 // Remove _renderable suffixes
206 $classname = preg_replace('/_renderable$/', '', $classname);
208 $rendermethod = 'render_'.$classname;
209 if (method_exists($this, $rendermethod)) {
210 return $this->$rendermethod($widget);
212 throw new coding_exception('Can not render widget, renderer method ('.$rendermethod.') not found.');
216 * Adds a JS action for the element with the provided id.
218 * This method adds a JS event for the provided component action to the page
219 * and then returns the id that the event has been attached to.
220 * If no id has been provided then a new ID is generated by {@link html_writer::random_id()}
222 * @param component_action $action
223 * @param string $id
224 * @return string id of element, either original submitted or random new if not supplied
226 public function add_action_handler(component_action $action, $id = null) {
227 if (!$id) {
228 $id = html_writer::random_id($action->event);
230 $this->page->requires->event_handler("#$id", $action->event, $action->jsfunction, $action->jsfunctionargs);
231 return $id;
235 * Returns true is output has already started, and false if not.
237 * @return boolean true if the header has been printed.
239 public function has_started() {
240 return $this->page->state >= moodle_page::STATE_IN_BODY;
244 * Given an array or space-separated list of classes, prepares and returns the HTML class attribute value
246 * @param mixed $classes Space-separated string or array of classes
247 * @return string HTML class attribute value
249 public static function prepare_classes($classes) {
250 if (is_array($classes)) {
251 return implode(' ', array_unique($classes));
253 return $classes;
257 * Return the direct URL for an image from the pix folder.
259 * Use this function sparingly and never for icons. For icons use pix_icon or the pix helper in a mustache template.
261 * @deprecated since Moodle 3.3
262 * @param string $imagename the name of the icon.
263 * @param string $component specification of one plugin like in get_string()
264 * @return moodle_url
266 public function pix_url($imagename, $component = 'moodle') {
267 debugging('pix_url is deprecated. Use image_url for images and pix_icon for icons.', DEBUG_DEVELOPER);
268 return $this->page->theme->image_url($imagename, $component);
272 * Return the moodle_url for an image.
274 * The exact image location and extension is determined
275 * automatically by searching for gif|png|jpg|jpeg, please
276 * note there can not be diferent images with the different
277 * extension. The imagename is for historical reasons
278 * a relative path name, it may be changed later for core
279 * images. It is recommended to not use subdirectories
280 * in plugin and theme pix directories.
282 * There are three types of images:
283 * 1/ theme images - stored in theme/mytheme/pix/,
284 * use component 'theme'
285 * 2/ core images - stored in /pix/,
286 * overridden via theme/mytheme/pix_core/
287 * 3/ plugin images - stored in mod/mymodule/pix,
288 * overridden via theme/mytheme/pix_plugins/mod/mymodule/,
289 * example: image_url('comment', 'mod_glossary')
291 * @param string $imagename the pathname of the image
292 * @param string $component full plugin name (aka component) or 'theme'
293 * @return moodle_url
295 public function image_url($imagename, $component = 'moodle') {
296 return $this->page->theme->image_url($imagename, $component);
300 * Return the site's logo URL, if any.
302 * @param int $maxwidth The maximum width, or null when the maximum width does not matter.
303 * @param int $maxheight The maximum height, or null when the maximum height does not matter.
304 * @return moodle_url|false
306 public function get_logo_url($maxwidth = null, $maxheight = 200) {
307 global $CFG;
308 $logo = get_config('core_admin', 'logo');
309 if (empty($logo)) {
310 return false;
313 // 200px high is the default image size which should be displayed at 100px in the page to account for retina displays.
314 // It's not worth the overhead of detecting and serving 2 different images based on the device.
316 // Hide the requested size in the file path.
317 $filepath = ((int) $maxwidth . 'x' . (int) $maxheight) . '/';
319 // Use $CFG->themerev to prevent browser caching when the file changes.
320 return moodle_url::make_pluginfile_url(context_system::instance()->id, 'core_admin', 'logo', $filepath,
321 theme_get_revision(), $logo);
325 * Return the site's compact logo URL, if any.
327 * @param int $maxwidth The maximum width, or null when the maximum width does not matter.
328 * @param int $maxheight The maximum height, or null when the maximum height does not matter.
329 * @return moodle_url|false
331 public function get_compact_logo_url($maxwidth = 100, $maxheight = 100) {
332 global $CFG;
333 $logo = get_config('core_admin', 'logocompact');
334 if (empty($logo)) {
335 return false;
338 // Hide the requested size in the file path.
339 $filepath = ((int) $maxwidth . 'x' . (int) $maxheight) . '/';
341 // Use $CFG->themerev to prevent browser caching when the file changes.
342 return moodle_url::make_pluginfile_url(context_system::instance()->id, 'core_admin', 'logocompact', $filepath,
343 theme_get_revision(), $logo);
350 * Basis for all plugin renderers.
352 * @copyright Petr Skoda (skodak)
353 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
354 * @since Moodle 2.0
355 * @package core
356 * @category output
358 class plugin_renderer_base extends renderer_base {
361 * @var renderer_base|core_renderer A reference to the current renderer.
362 * The renderer provided here will be determined by the page but will in 90%
363 * of cases by the {@link core_renderer}
365 protected $output;
368 * Constructor method, calls the parent constructor
370 * @param moodle_page $page
371 * @param string $target one of rendering target constants
373 public function __construct(moodle_page $page, $target) {
374 if (empty($target) && $page->pagelayout === 'maintenance') {
375 // If the page is using the maintenance layout then we're going to force the target to maintenance.
376 // This way we'll get a special maintenance renderer that is designed to block access to API's that are likely
377 // unavailable for this page layout.
378 $target = RENDERER_TARGET_MAINTENANCE;
380 $this->output = $page->get_renderer('core', null, $target);
381 parent::__construct($page, $target);
385 * Renders the provided widget and returns the HTML to display it.
387 * @param renderable $widget instance with renderable interface
388 * @return string
390 public function render(renderable $widget) {
391 $classname = get_class($widget);
392 // Strip namespaces.
393 $classname = preg_replace('/^.*\\\/', '', $classname);
394 // Keep a copy at this point, we may need to look for a deprecated method.
395 $deprecatedmethod = 'render_'.$classname;
396 // Remove _renderable suffixes
397 $classname = preg_replace('/_renderable$/', '', $classname);
399 $rendermethod = 'render_'.$classname;
400 if (method_exists($this, $rendermethod)) {
401 return $this->$rendermethod($widget);
403 if ($rendermethod !== $deprecatedmethod && method_exists($this, $deprecatedmethod)) {
404 // This is exactly where we don't want to be.
405 // If you have arrived here you have a renderable component within your plugin that has the name
406 // blah_renderable, and you have a render method render_blah_renderable on your plugin.
407 // In 2.8 we revamped output, as part of this change we changed slightly how renderables got rendered
408 // and the _renderable suffix now gets removed when looking for a render method.
409 // You need to change your renderers render_blah_renderable to render_blah.
410 // Until you do this it will not be possible for a theme to override the renderer to override your method.
411 // Please do it ASAP.
412 static $debugged = array();
413 if (!isset($debugged[$deprecatedmethod])) {
414 debugging(sprintf('Deprecated call. Please rename your renderables render method from %s to %s.',
415 $deprecatedmethod, $rendermethod), DEBUG_DEVELOPER);
416 $debugged[$deprecatedmethod] = true;
418 return $this->$deprecatedmethod($widget);
420 // pass to core renderer if method not found here
421 return $this->output->render($widget);
425 * Magic method used to pass calls otherwise meant for the standard renderer
426 * to it to ensure we don't go causing unnecessary grief.
428 * @param string $method
429 * @param array $arguments
430 * @return mixed
432 public function __call($method, $arguments) {
433 if (method_exists('renderer_base', $method)) {
434 throw new coding_exception('Protected method called against '.get_class($this).' :: '.$method);
436 if (method_exists($this->output, $method)) {
437 return call_user_func_array(array($this->output, $method), $arguments);
438 } else {
439 throw new coding_exception('Unknown method called against '.get_class($this).' :: '.$method);
446 * The standard implementation of the core_renderer interface.
448 * @copyright 2009 Tim Hunt
449 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
450 * @since Moodle 2.0
451 * @package core
452 * @category output
454 class core_renderer extends renderer_base {
456 * Do NOT use, please use <?php echo $OUTPUT->main_content() ?>
457 * in layout files instead.
458 * @deprecated
459 * @var string used in {@link core_renderer::header()}.
461 const MAIN_CONTENT_TOKEN = '[MAIN CONTENT GOES HERE]';
464 * @var string Used to pass information from {@link core_renderer::doctype()} to
465 * {@link core_renderer::standard_head_html()}.
467 protected $contenttype;
470 * @var string Used by {@link core_renderer::redirect_message()} method to communicate
471 * with {@link core_renderer::header()}.
473 protected $metarefreshtag = '';
476 * @var string Unique token for the closing HTML
478 protected $unique_end_html_token;
481 * @var string Unique token for performance information
483 protected $unique_performance_info_token;
486 * @var string Unique token for the main content.
488 protected $unique_main_content_token;
491 * Constructor
493 * @param moodle_page $page the page we are doing output for.
494 * @param string $target one of rendering target constants
496 public function __construct(moodle_page $page, $target) {
497 $this->opencontainers = $page->opencontainers;
498 $this->page = $page;
499 $this->target = $target;
501 $this->unique_end_html_token = '%%ENDHTML-'.sesskey().'%%';
502 $this->unique_performance_info_token = '%%PERFORMANCEINFO-'.sesskey().'%%';
503 $this->unique_main_content_token = '[MAIN CONTENT GOES HERE - '.sesskey().']';
507 * Get the DOCTYPE declaration that should be used with this page. Designed to
508 * be called in theme layout.php files.
510 * @return string the DOCTYPE declaration that should be used.
512 public function doctype() {
513 if ($this->page->theme->doctype === 'html5') {
514 $this->contenttype = 'text/html; charset=utf-8';
515 return "<!DOCTYPE html>\n";
517 } else if ($this->page->theme->doctype === 'xhtml5') {
518 $this->contenttype = 'application/xhtml+xml; charset=utf-8';
519 return "<!DOCTYPE html>\n";
521 } else {
522 // legacy xhtml 1.0
523 $this->contenttype = 'text/html; charset=utf-8';
524 return ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . "\n");
529 * The attributes that should be added to the <html> tag. Designed to
530 * be called in theme layout.php files.
532 * @return string HTML fragment.
534 public function htmlattributes() {
535 $return = get_html_lang(true);
536 $attributes = array();
537 if ($this->page->theme->doctype !== 'html5') {
538 $attributes['xmlns'] = 'http://www.w3.org/1999/xhtml';
541 // Give plugins an opportunity to add things like xml namespaces to the html element.
542 // This function should return an array of html attribute names => values.
543 $pluginswithfunction = get_plugins_with_function('add_htmlattributes', 'lib.php');
544 foreach ($pluginswithfunction as $plugins) {
545 foreach ($plugins as $function) {
546 $newattrs = $function();
547 unset($newattrs['dir']);
548 unset($newattrs['lang']);
549 unset($newattrs['xmlns']);
550 unset($newattrs['xml:lang']);
551 $attributes += $newattrs;
555 foreach ($attributes as $key => $val) {
556 $val = s($val);
557 $return .= " $key=\"$val\"";
560 return $return;
564 * The standard tags (meta tags, links to stylesheets and JavaScript, etc.)
565 * that should be included in the <head> tag. Designed to be called in theme
566 * layout.php files.
568 * @return string HTML fragment.
570 public function standard_head_html() {
571 global $CFG, $SESSION;
573 // Before we output any content, we need to ensure that certain
574 // page components are set up.
576 // Blocks must be set up early as they may require javascript which
577 // has to be included in the page header before output is created.
578 foreach ($this->page->blocks->get_regions() as $region) {
579 $this->page->blocks->ensure_content_created($region, $this);
582 $output = '';
584 // Give plugins an opportunity to add any head elements. The callback
585 // must always return a string containing valid html head content.
586 $pluginswithfunction = get_plugins_with_function('before_standard_html_head', 'lib.php');
587 foreach ($pluginswithfunction as $plugins) {
588 foreach ($plugins as $function) {
589 $output .= $function();
593 // Allow a url_rewrite plugin to setup any dynamic head content.
594 if (isset($CFG->urlrewriteclass) && !isset($CFG->upgraderunning)) {
595 $class = $CFG->urlrewriteclass;
596 $output .= $class::html_head_setup();
599 $output .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . "\n";
600 $output .= '<meta name="keywords" content="moodle, ' . $this->page->title . '" />' . "\n";
601 // This is only set by the {@link redirect()} method
602 $output .= $this->metarefreshtag;
604 // Check if a periodic refresh delay has been set and make sure we arn't
605 // already meta refreshing
606 if ($this->metarefreshtag=='' && $this->page->periodicrefreshdelay!==null) {
607 $output .= '<meta http-equiv="refresh" content="'.$this->page->periodicrefreshdelay.';url='.$this->page->url->out().'" />';
610 // Set up help link popups for all links with the helptooltip class
611 $this->page->requires->js_init_call('M.util.help_popups.setup');
613 $focus = $this->page->focuscontrol;
614 if (!empty($focus)) {
615 if (preg_match("#forms\['([a-zA-Z0-9]+)'\].elements\['([a-zA-Z0-9]+)'\]#", $focus, $matches)) {
616 // This is a horrifically bad way to handle focus but it is passed in
617 // through messy formslib::moodleform
618 $this->page->requires->js_function_call('old_onload_focus', array($matches[1], $matches[2]));
619 } else if (strpos($focus, '.')!==false) {
620 // Old style of focus, bad way to do it
621 debugging('This code is using the old style focus event, Please update this code to focus on an element id or the moodleform focus method.', DEBUG_DEVELOPER);
622 $this->page->requires->js_function_call('old_onload_focus', explode('.', $focus, 2));
623 } else {
624 // Focus element with given id
625 $this->page->requires->js_function_call('focuscontrol', array($focus));
629 // Get the theme stylesheet - this has to be always first CSS, this loads also styles.css from all plugins;
630 // any other custom CSS can not be overridden via themes and is highly discouraged
631 $urls = $this->page->theme->css_urls($this->page);
632 foreach ($urls as $url) {
633 $this->page->requires->css_theme($url);
636 // Get the theme javascript head and footer
637 if ($jsurl = $this->page->theme->javascript_url(true)) {
638 $this->page->requires->js($jsurl, true);
640 if ($jsurl = $this->page->theme->javascript_url(false)) {
641 $this->page->requires->js($jsurl);
644 // Get any HTML from the page_requirements_manager.
645 $output .= $this->page->requires->get_head_code($this->page, $this);
647 // List alternate versions.
648 foreach ($this->page->alternateversions as $type => $alt) {
649 $output .= html_writer::empty_tag('link', array('rel' => 'alternate',
650 'type' => $type, 'title' => $alt->title, 'href' => $alt->url));
653 // Add noindex tag if relevant page and setting applied.
654 $allowindexing = isset($CFG->allowindexing) ? $CFG->allowindexing : 0;
655 $loginpages = array('login-index', 'login-signup');
656 if ($allowindexing == 2 || ($allowindexing == 0 && in_array($this->page->pagetype, $loginpages))) {
657 if (!isset($CFG->additionalhtmlhead)) {
658 $CFG->additionalhtmlhead = '';
660 $CFG->additionalhtmlhead .= '<meta name="robots" content="noindex" />';
663 if (!empty($CFG->additionalhtmlhead)) {
664 $output .= "\n".$CFG->additionalhtmlhead;
667 return $output;
671 * The standard tags (typically skip links) that should be output just inside
672 * the start of the <body> tag. Designed to be called in theme layout.php files.
674 * @return string HTML fragment.
676 public function standard_top_of_body_html() {
677 global $CFG;
678 $output = $this->page->requires->get_top_of_body_code($this);
679 if ($this->page->pagelayout !== 'embedded' && !empty($CFG->additionalhtmltopofbody)) {
680 $output .= "\n".$CFG->additionalhtmltopofbody;
683 // Give plugins an opportunity to inject extra html content. The callback
684 // must always return a string containing valid html.
685 $pluginswithfunction = get_plugins_with_function('before_standard_top_of_body_html', 'lib.php');
686 foreach ($pluginswithfunction as $plugins) {
687 foreach ($plugins as $function) {
688 $output .= $function();
692 $output .= $this->maintenance_warning();
694 return $output;
698 * Scheduled maintenance warning message.
700 * Note: This is a nasty hack to display maintenance notice, this should be moved
701 * to some general notification area once we have it.
703 * @return string
705 public function maintenance_warning() {
706 global $CFG;
708 $output = '';
709 if (isset($CFG->maintenance_later) and $CFG->maintenance_later > time()) {
710 $timeleft = $CFG->maintenance_later - time();
711 // If timeleft less than 30 sec, set the class on block to error to highlight.
712 $errorclass = ($timeleft < 30) ? 'alert-error alert-danger' : 'alert-warning';
713 $output .= $this->box_start($errorclass . ' moodle-has-zindex maintenancewarning m-a-1 alert');
714 $a = new stdClass();
715 $a->hour = (int)($timeleft / 3600);
716 $a->min = (int)(($timeleft / 60) % 60);
717 $a->sec = (int)($timeleft % 60);
718 if ($a->hour > 0) {
719 $output .= get_string('maintenancemodeisscheduledlong', 'admin', $a);
720 } else {
721 $output .= get_string('maintenancemodeisscheduled', 'admin', $a);
724 $output .= $this->box_end();
725 $this->page->requires->yui_module('moodle-core-maintenancemodetimer', 'M.core.maintenancemodetimer',
726 array(array('timeleftinsec' => $timeleft)));
727 $this->page->requires->strings_for_js(
728 array('maintenancemodeisscheduled', 'maintenancemodeisscheduledlong', 'sitemaintenance'),
729 'admin');
731 return $output;
735 * The standard tags (typically performance information and validation links,
736 * if we are in developer debug mode) that should be output in the footer area
737 * of the page. Designed to be called in theme layout.php files.
739 * @return string HTML fragment.
741 public function standard_footer_html() {
742 global $CFG, $SCRIPT;
744 $output = '';
745 if (during_initial_install()) {
746 // Debugging info can not work before install is finished,
747 // in any case we do not want any links during installation!
748 return $output;
751 // Give plugins an opportunity to add any footer elements.
752 // The callback must always return a string containing valid html footer content.
753 $pluginswithfunction = get_plugins_with_function('standard_footer_html', 'lib.php');
754 foreach ($pluginswithfunction as $plugins) {
755 foreach ($plugins as $function) {
756 $output .= $function();
760 // This function is normally called from a layout.php file in {@link core_renderer::header()}
761 // but some of the content won't be known until later, so we return a placeholder
762 // for now. This will be replaced with the real content in {@link core_renderer::footer()}.
763 $output .= $this->unique_performance_info_token;
764 if ($this->page->devicetypeinuse == 'legacy') {
765 // The legacy theme is in use print the notification
766 $output .= html_writer::tag('div', get_string('legacythemeinuse'), array('class'=>'legacythemeinuse'));
769 // Get links to switch device types (only shown for users not on a default device)
770 $output .= $this->theme_switch_links();
772 if (!empty($CFG->debugpageinfo)) {
773 $output .= '<div class="performanceinfo pageinfo">This page is: ' . $this->page->debug_summary() . '</div>';
775 if (debugging(null, DEBUG_DEVELOPER) and has_capability('moodle/site:config', context_system::instance())) { // Only in developer mode
776 // Add link to profiling report if necessary
777 if (function_exists('profiling_is_running') && profiling_is_running()) {
778 $txt = get_string('profiledscript', 'admin');
779 $title = get_string('profiledscriptview', 'admin');
780 $url = $CFG->wwwroot . '/admin/tool/profiling/index.php?script=' . urlencode($SCRIPT);
781 $link= '<a title="' . $title . '" href="' . $url . '">' . $txt . '</a>';
782 $output .= '<div class="profilingfooter">' . $link . '</div>';
784 $purgeurl = new moodle_url('/admin/purgecaches.php', array('confirm' => 1,
785 'sesskey' => sesskey(), 'returnurl' => $this->page->url->out_as_local_url(false)));
786 $output .= '<div class="purgecaches">' .
787 html_writer::link($purgeurl, get_string('purgecaches', 'admin')) . '</div>';
789 if (!empty($CFG->debugvalidators)) {
790 // NOTE: this is not a nice hack, $PAGE->url is not always accurate and $FULLME neither, it is not a bug if it fails. --skodak
791 $output .= '<div class="validators"><ul class="list-unstyled m-l-1">
792 <li><a href="http://validator.w3.org/check?verbose=1&amp;ss=1&amp;uri=' . urlencode(qualified_me()) . '">Validate HTML</a></li>
793 <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&amp;url1=' . urlencode(qualified_me()) . '">Section 508 Check</a></li>
794 <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=0&amp;warnp2n3e=1&amp;url1=' . urlencode(qualified_me()) . '">WCAG 1 (2,3) Check</a></li>
795 </ul></div>';
797 return $output;
801 * Returns standard main content placeholder.
802 * Designed to be called in theme layout.php files.
804 * @return string HTML fragment.
806 public function main_content() {
807 // This is here because it is the only place we can inject the "main" role over the entire main content area
808 // without requiring all theme's to manually do it, and without creating yet another thing people need to
809 // remember in the theme.
810 // This is an unfortunate hack. DO NO EVER add anything more here.
811 // DO NOT add classes.
812 // DO NOT add an id.
813 return '<div role="main">'.$this->unique_main_content_token.'</div>';
817 * The standard tags (typically script tags that are not needed earlier) that
818 * should be output after everything else. Designed to be called in theme layout.php files.
820 * @return string HTML fragment.
822 public function standard_end_of_body_html() {
823 global $CFG;
825 // This function is normally called from a layout.php file in {@link core_renderer::header()}
826 // but some of the content won't be known until later, so we return a placeholder
827 // for now. This will be replaced with the real content in {@link core_renderer::footer()}.
828 $output = '';
829 if ($this->page->pagelayout !== 'embedded' && !empty($CFG->additionalhtmlfooter)) {
830 $output .= "\n".$CFG->additionalhtmlfooter;
832 $output .= $this->unique_end_html_token;
833 return $output;
837 * Return the standard string that says whether you are logged in (and switched
838 * roles/logged in as another user).
839 * @param bool $withlinks if false, then don't include any links in the HTML produced.
840 * If not set, the default is the nologinlinks option from the theme config.php file,
841 * and if that is not set, then links are included.
842 * @return string HTML fragment.
844 public function login_info($withlinks = null) {
845 global $USER, $CFG, $DB, $SESSION;
847 if (during_initial_install()) {
848 return '';
851 if (is_null($withlinks)) {
852 $withlinks = empty($this->page->layout_options['nologinlinks']);
855 $course = $this->page->course;
856 if (\core\session\manager::is_loggedinas()) {
857 $realuser = \core\session\manager::get_realuser();
858 $fullname = fullname($realuser, true);
859 if ($withlinks) {
860 $loginastitle = get_string('loginas');
861 $realuserinfo = " [<a href=\"$CFG->wwwroot/course/loginas.php?id=$course->id&amp;sesskey=".sesskey()."\"";
862 $realuserinfo .= "title =\"".$loginastitle."\">$fullname</a>] ";
863 } else {
864 $realuserinfo = " [$fullname] ";
866 } else {
867 $realuserinfo = '';
870 $loginpage = $this->is_login_page();
871 $loginurl = get_login_url();
873 if (empty($course->id)) {
874 // $course->id is not defined during installation
875 return '';
876 } else if (isloggedin()) {
877 $context = context_course::instance($course->id);
879 $fullname = fullname($USER, true);
880 // Since Moodle 2.0 this link always goes to the public profile page (not the course profile page)
881 if ($withlinks) {
882 $linktitle = get_string('viewprofile');
883 $username = "<a href=\"$CFG->wwwroot/user/profile.php?id=$USER->id\" title=\"$linktitle\">$fullname</a>";
884 } else {
885 $username = $fullname;
887 if (is_mnet_remote_user($USER) and $idprovider = $DB->get_record('mnet_host', array('id'=>$USER->mnethostid))) {
888 if ($withlinks) {
889 $username .= " from <a href=\"{$idprovider->wwwroot}\">{$idprovider->name}</a>";
890 } else {
891 $username .= " from {$idprovider->name}";
894 if (isguestuser()) {
895 $loggedinas = $realuserinfo.get_string('loggedinasguest');
896 if (!$loginpage && $withlinks) {
897 $loggedinas .= " (<a href=\"$loginurl\">".get_string('login').'</a>)';
899 } else if (is_role_switched($course->id)) { // Has switched roles
900 $rolename = '';
901 if ($role = $DB->get_record('role', array('id'=>$USER->access['rsw'][$context->path]))) {
902 $rolename = ': '.role_get_name($role, $context);
904 $loggedinas = get_string('loggedinas', 'moodle', $username).$rolename;
905 if ($withlinks) {
906 $url = new moodle_url('/course/switchrole.php', array('id'=>$course->id,'sesskey'=>sesskey(), 'switchrole'=>0, 'returnurl'=>$this->page->url->out_as_local_url(false)));
907 $loggedinas .= ' ('.html_writer::tag('a', get_string('switchrolereturn'), array('href' => $url)).')';
909 } else {
910 $loggedinas = $realuserinfo.get_string('loggedinas', 'moodle', $username);
911 if ($withlinks) {
912 $loggedinas .= " (<a href=\"$CFG->wwwroot/login/logout.php?sesskey=".sesskey()."\">".get_string('logout').'</a>)';
915 } else {
916 $loggedinas = get_string('loggedinnot', 'moodle');
917 if (!$loginpage && $withlinks) {
918 $loggedinas .= " (<a href=\"$loginurl\">".get_string('login').'</a>)';
922 $loggedinas = '<div class="logininfo">'.$loggedinas.'</div>';
924 if (isset($SESSION->justloggedin)) {
925 unset($SESSION->justloggedin);
926 if (!empty($CFG->displayloginfailures)) {
927 if (!isguestuser()) {
928 // Include this file only when required.
929 require_once($CFG->dirroot . '/user/lib.php');
930 if ($count = user_count_login_failures($USER)) {
931 $loggedinas .= '<div class="loginfailures">';
932 $a = new stdClass();
933 $a->attempts = $count;
934 $loggedinas .= get_string('failedloginattempts', '', $a);
935 if (file_exists("$CFG->dirroot/report/log/index.php") and has_capability('report/log:view', context_system::instance())) {
936 $loggedinas .= ' ('.html_writer::link(new moodle_url('/report/log/index.php', array('chooselog' => 1,
937 'id' => 0 , 'modid' => 'site_errors')), get_string('logs')).')';
939 $loggedinas .= '</div>';
945 return $loggedinas;
949 * Check whether the current page is a login page.
951 * @since Moodle 2.9
952 * @return bool
954 protected function is_login_page() {
955 // This is a real bit of a hack, but its a rarety that we need to do something like this.
956 // In fact the login pages should be only these two pages and as exposing this as an option for all pages
957 // could lead to abuse (or at least unneedingly complex code) the hack is the way to go.
958 return in_array(
959 $this->page->url->out_as_local_url(false, array()),
960 array(
961 '/login/index.php',
962 '/login/forgot_password.php',
968 * Return the 'back' link that normally appears in the footer.
970 * @return string HTML fragment.
972 public function home_link() {
973 global $CFG, $SITE;
975 if ($this->page->pagetype == 'site-index') {
976 // Special case for site home page - please do not remove
977 return '<div class="sitelink">' .
978 '<a title="Moodle" href="http://moodle.org/">' .
979 '<img src="' . $this->image_url('moodlelogo') . '" alt="'.get_string('moodlelogo').'" /></a></div>';
981 } else if (!empty($CFG->target_release) && $CFG->target_release != $CFG->release) {
982 // Special case for during install/upgrade.
983 return '<div class="sitelink">'.
984 '<a title="Moodle" href="http://docs.moodle.org/en/Administrator_documentation" onclick="this.target=\'_blank\'">' .
985 '<img src="' . $this->image_url('moodlelogo') . '" alt="'.get_string('moodlelogo').'" /></a></div>';
987 } else if ($this->page->course->id == $SITE->id || strpos($this->page->pagetype, 'course-view') === 0) {
988 return '<div class="homelink"><a href="' . $CFG->wwwroot . '/">' .
989 get_string('home') . '</a></div>';
991 } else {
992 return '<div class="homelink"><a href="' . $CFG->wwwroot . '/course/view.php?id=' . $this->page->course->id . '">' .
993 format_string($this->page->course->shortname, true, array('context' => $this->page->context)) . '</a></div>';
998 * Redirects the user by any means possible given the current state
1000 * This function should not be called directly, it should always be called using
1001 * the redirect function in lib/weblib.php
1003 * The redirect function should really only be called before page output has started
1004 * however it will allow itself to be called during the state STATE_IN_BODY
1006 * @param string $encodedurl The URL to send to encoded if required
1007 * @param string $message The message to display to the user if any
1008 * @param int $delay The delay before redirecting a user, if $message has been
1009 * set this is a requirement and defaults to 3, set to 0 no delay
1010 * @param boolean $debugdisableredirect this redirect has been disabled for
1011 * debugging purposes. Display a message that explains, and don't
1012 * trigger the redirect.
1013 * @param string $messagetype The type of notification to show the message in.
1014 * See constants on \core\output\notification.
1015 * @return string The HTML to display to the user before dying, may contain
1016 * meta refresh, javascript refresh, and may have set header redirects
1018 public function redirect_message($encodedurl, $message, $delay, $debugdisableredirect,
1019 $messagetype = \core\output\notification::NOTIFY_INFO) {
1020 global $CFG;
1021 $url = str_replace('&amp;', '&', $encodedurl);
1023 switch ($this->page->state) {
1024 case moodle_page::STATE_BEFORE_HEADER :
1025 // No output yet it is safe to delivery the full arsenal of redirect methods
1026 if (!$debugdisableredirect) {
1027 // Don't use exactly the same time here, it can cause problems when both redirects fire at the same time.
1028 $this->metarefreshtag = '<meta http-equiv="refresh" content="'. $delay .'; url='. $encodedurl .'" />'."\n";
1029 $this->page->requires->js_function_call('document.location.replace', array($url), false, ($delay + 3));
1031 $output = $this->header();
1032 break;
1033 case moodle_page::STATE_PRINTING_HEADER :
1034 // We should hopefully never get here
1035 throw new coding_exception('You cannot redirect while printing the page header');
1036 break;
1037 case moodle_page::STATE_IN_BODY :
1038 // We really shouldn't be here but we can deal with this
1039 debugging("You should really redirect before you start page output");
1040 if (!$debugdisableredirect) {
1041 $this->page->requires->js_function_call('document.location.replace', array($url), false, $delay);
1043 $output = $this->opencontainers->pop_all_but_last();
1044 break;
1045 case moodle_page::STATE_DONE :
1046 // Too late to be calling redirect now
1047 throw new coding_exception('You cannot redirect after the entire page has been generated');
1048 break;
1050 $output .= $this->notification($message, $messagetype);
1051 $output .= '<div class="continuebutton">(<a href="'. $encodedurl .'">'. get_string('continue') .'</a>)</div>';
1052 if ($debugdisableredirect) {
1053 $output .= '<p><strong>'.get_string('erroroutput', 'error').'</strong></p>';
1055 $output .= $this->footer();
1056 return $output;
1060 * Start output by sending the HTTP headers, and printing the HTML <head>
1061 * and the start of the <body>.
1063 * To control what is printed, you should set properties on $PAGE. If you
1064 * are familiar with the old {@link print_header()} function from Moodle 1.9
1065 * you will find that there are properties on $PAGE that correspond to most
1066 * of the old parameters to could be passed to print_header.
1068 * Not that, in due course, the remaining $navigation, $menu parameters here
1069 * will be replaced by more properties of $PAGE, but that is still to do.
1071 * @return string HTML that you must output this, preferably immediately.
1073 public function header() {
1074 global $USER, $CFG, $SESSION;
1076 // Give plugins an opportunity touch things before the http headers are sent
1077 // such as adding additional headers. The return value is ignored.
1078 $pluginswithfunction = get_plugins_with_function('before_http_headers', 'lib.php');
1079 foreach ($pluginswithfunction as $plugins) {
1080 foreach ($plugins as $function) {
1081 $function();
1085 if (\core\session\manager::is_loggedinas()) {
1086 $this->page->add_body_class('userloggedinas');
1089 if (isset($SESSION->justloggedin) && !empty($CFG->displayloginfailures)) {
1090 require_once($CFG->dirroot . '/user/lib.php');
1091 // Set second parameter to false as we do not want reset the counter, the same message appears on footer.
1092 if ($count = user_count_login_failures($USER, false)) {
1093 $this->page->add_body_class('loginfailures');
1097 // If the user is logged in, and we're not in initial install,
1098 // check to see if the user is role-switched and add the appropriate
1099 // CSS class to the body element.
1100 if (!during_initial_install() && isloggedin() && is_role_switched($this->page->course->id)) {
1101 $this->page->add_body_class('userswitchedrole');
1104 // Give themes a chance to init/alter the page object.
1105 $this->page->theme->init_page($this->page);
1107 $this->page->set_state(moodle_page::STATE_PRINTING_HEADER);
1109 // Find the appropriate page layout file, based on $this->page->pagelayout.
1110 $layoutfile = $this->page->theme->layout_file($this->page->pagelayout);
1111 // Render the layout using the layout file.
1112 $rendered = $this->render_page_layout($layoutfile);
1114 // Slice the rendered output into header and footer.
1115 $cutpos = strpos($rendered, $this->unique_main_content_token);
1116 if ($cutpos === false) {
1117 $cutpos = strpos($rendered, self::MAIN_CONTENT_TOKEN);
1118 $token = self::MAIN_CONTENT_TOKEN;
1119 } else {
1120 $token = $this->unique_main_content_token;
1123 if ($cutpos === false) {
1124 throw new coding_exception('page layout file ' . $layoutfile . ' does not contain the main content placeholder, please include "<?php echo $OUTPUT->main_content() ?>" in theme layout file.');
1126 $header = substr($rendered, 0, $cutpos);
1127 $footer = substr($rendered, $cutpos + strlen($token));
1129 if (empty($this->contenttype)) {
1130 debugging('The page layout file did not call $OUTPUT->doctype()');
1131 $header = $this->doctype() . $header;
1134 // If this theme version is below 2.4 release and this is a course view page
1135 if ((!isset($this->page->theme->settings->version) || $this->page->theme->settings->version < 2012101500) &&
1136 $this->page->pagelayout === 'course' && $this->page->url->compare(new moodle_url('/course/view.php'), URL_MATCH_BASE)) {
1137 // check if course content header/footer have not been output during render of theme layout
1138 $coursecontentheader = $this->course_content_header(true);
1139 $coursecontentfooter = $this->course_content_footer(true);
1140 if (!empty($coursecontentheader)) {
1141 // display debug message and add header and footer right above and below main content
1142 // Please note that course header and footer (to be displayed above and below the whole page)
1143 // are not displayed in this case at all.
1144 // Besides the content header and footer are not displayed on any other course page
1145 debugging('The current theme is not optimised for 2.4, the course-specific header and footer defined in course format will not be output', DEBUG_DEVELOPER);
1146 $header .= $coursecontentheader;
1147 $footer = $coursecontentfooter. $footer;
1151 send_headers($this->contenttype, $this->page->cacheable);
1153 $this->opencontainers->push('header/footer', $footer);
1154 $this->page->set_state(moodle_page::STATE_IN_BODY);
1156 return $header . $this->skip_link_target('maincontent');
1160 * Renders and outputs the page layout file.
1162 * This is done by preparing the normal globals available to a script, and
1163 * then including the layout file provided by the current theme for the
1164 * requested layout.
1166 * @param string $layoutfile The name of the layout file
1167 * @return string HTML code
1169 protected function render_page_layout($layoutfile) {
1170 global $CFG, $SITE, $USER;
1171 // The next lines are a bit tricky. The point is, here we are in a method
1172 // of a renderer class, and this object may, or may not, be the same as
1173 // the global $OUTPUT object. When rendering the page layout file, we want to use
1174 // this object. However, people writing Moodle code expect the current
1175 // renderer to be called $OUTPUT, not $this, so define a variable called
1176 // $OUTPUT pointing at $this. The same comment applies to $PAGE and $COURSE.
1177 $OUTPUT = $this;
1178 $PAGE = $this->page;
1179 $COURSE = $this->page->course;
1181 ob_start();
1182 include($layoutfile);
1183 $rendered = ob_get_contents();
1184 ob_end_clean();
1185 return $rendered;
1189 * Outputs the page's footer
1191 * @return string HTML fragment
1193 public function footer() {
1194 global $CFG, $DB, $PAGE;
1196 // Give plugins an opportunity to touch the page before JS is finalized.
1197 $pluginswithfunction = get_plugins_with_function('before_footer', 'lib.php');
1198 foreach ($pluginswithfunction as $plugins) {
1199 foreach ($plugins as $function) {
1200 $function();
1204 $output = $this->container_end_all(true);
1206 $footer = $this->opencontainers->pop('header/footer');
1208 if (debugging() and $DB and $DB->is_transaction_started()) {
1209 // TODO: MDL-20625 print warning - transaction will be rolled back
1212 // Provide some performance info if required
1213 $performanceinfo = '';
1214 if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) {
1215 $perf = get_performance_info();
1216 if (defined('MDL_PERFTOFOOT') || debugging() || $CFG->perfdebug > 7) {
1217 $performanceinfo = $perf['html'];
1221 // We always want performance data when running a performance test, even if the user is redirected to another page.
1222 if (MDL_PERF_TEST && strpos($footer, $this->unique_performance_info_token) === false) {
1223 $footer = $this->unique_performance_info_token . $footer;
1225 $footer = str_replace($this->unique_performance_info_token, $performanceinfo, $footer);
1227 // Only show notifications when we have a $PAGE context id.
1228 if (!empty($PAGE->context->id)) {
1229 $this->page->requires->js_call_amd('core/notification', 'init', array(
1230 $PAGE->context->id,
1231 \core\notification::fetch_as_array($this)
1234 $footer = str_replace($this->unique_end_html_token, $this->page->requires->get_end_code(), $footer);
1236 $this->page->set_state(moodle_page::STATE_DONE);
1238 return $output . $footer;
1242 * Close all but the last open container. This is useful in places like error
1243 * handling, where you want to close all the open containers (apart from <body>)
1244 * before outputting the error message.
1246 * @param bool $shouldbenone assert that the stack should be empty now - causes a
1247 * developer debug warning if it isn't.
1248 * @return string the HTML required to close any open containers inside <body>.
1250 public function container_end_all($shouldbenone = false) {
1251 return $this->opencontainers->pop_all_but_last($shouldbenone);
1255 * Returns course-specific information to be output immediately above content on any course page
1256 * (for the current course)
1258 * @param bool $onlyifnotcalledbefore output content only if it has not been output before
1259 * @return string
1261 public function course_content_header($onlyifnotcalledbefore = false) {
1262 global $CFG;
1263 static $functioncalled = false;
1264 if ($functioncalled && $onlyifnotcalledbefore) {
1265 // we have already output the content header
1266 return '';
1269 // Output any session notification.
1270 $notifications = \core\notification::fetch();
1272 $bodynotifications = '';
1273 foreach ($notifications as $notification) {
1274 $bodynotifications .= $this->render_from_template(
1275 $notification->get_template_name(),
1276 $notification->export_for_template($this)
1280 $output = html_writer::span($bodynotifications, 'notifications', array('id' => 'user-notifications'));
1282 if ($this->page->course->id == SITEID) {
1283 // return immediately and do not include /course/lib.php if not necessary
1284 return $output;
1287 require_once($CFG->dirroot.'/course/lib.php');
1288 $functioncalled = true;
1289 $courseformat = course_get_format($this->page->course);
1290 if (($obj = $courseformat->course_content_header()) !== null) {
1291 $output .= html_writer::div($courseformat->get_renderer($this->page)->render($obj), 'course-content-header');
1293 return $output;
1297 * Returns course-specific information to be output immediately below content on any course page
1298 * (for the current course)
1300 * @param bool $onlyifnotcalledbefore output content only if it has not been output before
1301 * @return string
1303 public function course_content_footer($onlyifnotcalledbefore = false) {
1304 global $CFG;
1305 if ($this->page->course->id == SITEID) {
1306 // return immediately and do not include /course/lib.php if not necessary
1307 return '';
1309 static $functioncalled = false;
1310 if ($functioncalled && $onlyifnotcalledbefore) {
1311 // we have already output the content footer
1312 return '';
1314 $functioncalled = true;
1315 require_once($CFG->dirroot.'/course/lib.php');
1316 $courseformat = course_get_format($this->page->course);
1317 if (($obj = $courseformat->course_content_footer()) !== null) {
1318 return html_writer::div($courseformat->get_renderer($this->page)->render($obj), 'course-content-footer');
1320 return '';
1324 * Returns course-specific information to be output on any course page in the header area
1325 * (for the current course)
1327 * @return string
1329 public function course_header() {
1330 global $CFG;
1331 if ($this->page->course->id == SITEID) {
1332 // return immediately and do not include /course/lib.php if not necessary
1333 return '';
1335 require_once($CFG->dirroot.'/course/lib.php');
1336 $courseformat = course_get_format($this->page->course);
1337 if (($obj = $courseformat->course_header()) !== null) {
1338 return $courseformat->get_renderer($this->page)->render($obj);
1340 return '';
1344 * Returns course-specific information to be output on any course page in the footer area
1345 * (for the current course)
1347 * @return string
1349 public function course_footer() {
1350 global $CFG;
1351 if ($this->page->course->id == SITEID) {
1352 // return immediately and do not include /course/lib.php if not necessary
1353 return '';
1355 require_once($CFG->dirroot.'/course/lib.php');
1356 $courseformat = course_get_format($this->page->course);
1357 if (($obj = $courseformat->course_footer()) !== null) {
1358 return $courseformat->get_renderer($this->page)->render($obj);
1360 return '';
1364 * Returns lang menu or '', this method also checks forcing of languages in courses.
1366 * This function calls {@link core_renderer::render_single_select()} to actually display the language menu.
1368 * @return string The lang menu HTML or empty string
1370 public function lang_menu() {
1371 global $CFG;
1373 if (empty($CFG->langmenu)) {
1374 return '';
1377 if ($this->page->course != SITEID and !empty($this->page->course->lang)) {
1378 // do not show lang menu if language forced
1379 return '';
1382 $currlang = current_language();
1383 $langs = get_string_manager()->get_list_of_translations();
1385 if (count($langs) < 2) {
1386 return '';
1389 $s = new single_select($this->page->url, 'lang', $langs, $currlang, null);
1390 $s->label = get_accesshide(get_string('language'));
1391 $s->class = 'langmenu';
1392 return $this->render($s);
1396 * Output the row of editing icons for a block, as defined by the controls array.
1398 * @param array $controls an array like {@link block_contents::$controls}.
1399 * @param string $blockid The ID given to the block.
1400 * @return string HTML fragment.
1402 public function block_controls($actions, $blockid = null) {
1403 global $CFG;
1404 if (empty($actions)) {
1405 return '';
1407 $menu = new action_menu($actions);
1408 if ($blockid !== null) {
1409 $menu->set_owner_selector('#'.$blockid);
1411 $menu->set_constraint('.block-region');
1412 $menu->attributes['class'] .= ' block-control-actions commands';
1413 return $this->render($menu);
1417 * Renders an action menu component.
1419 * ARIA references:
1420 * - http://www.w3.org/WAI/GL/wiki/Using_ARIA_menus
1421 * - http://stackoverflow.com/questions/12279113/recommended-wai-aria-implementation-for-navigation-bar-menu
1423 * @param action_menu $menu
1424 * @return string HTML
1426 public function render_action_menu(action_menu $menu) {
1427 $context = $menu->export_for_template($this);
1428 return $this->render_from_template('core/action_menu', $context);
1432 * Renders an action_menu_link item.
1434 * @param action_menu_link $action
1435 * @return string HTML fragment
1437 protected function render_action_menu_link(action_menu_link $action) {
1438 return $this->render_from_template('core/action_menu_link', $action->export_for_template($this));
1442 * Renders a primary action_menu_filler item.
1444 * @param action_menu_link_filler $action
1445 * @return string HTML fragment
1447 protected function render_action_menu_filler(action_menu_filler $action) {
1448 return html_writer::span('&nbsp;', 'filler');
1452 * Renders a primary action_menu_link item.
1454 * @param action_menu_link_primary $action
1455 * @return string HTML fragment
1457 protected function render_action_menu_link_primary(action_menu_link_primary $action) {
1458 return $this->render_action_menu_link($action);
1462 * Renders a secondary action_menu_link item.
1464 * @param action_menu_link_secondary $action
1465 * @return string HTML fragment
1467 protected function render_action_menu_link_secondary(action_menu_link_secondary $action) {
1468 return $this->render_action_menu_link($action);
1472 * Prints a nice side block with an optional header.
1474 * The content is described
1475 * by a {@link core_renderer::block_contents} object.
1477 * <div id="inst{$instanceid}" class="block_{$blockname} block">
1478 * <div class="header"></div>
1479 * <div class="content">
1480 * ...CONTENT...
1481 * <div class="footer">
1482 * </div>
1483 * </div>
1484 * <div class="annotation">
1485 * </div>
1486 * </div>
1488 * @param block_contents $bc HTML for the content
1489 * @param string $region the region the block is appearing in.
1490 * @return string the HTML to be output.
1492 public function block(block_contents $bc, $region) {
1493 $bc = clone($bc); // Avoid messing up the object passed in.
1494 if (empty($bc->blockinstanceid) || !strip_tags($bc->title)) {
1495 $bc->collapsible = block_contents::NOT_HIDEABLE;
1497 if (!empty($bc->blockinstanceid)) {
1498 $bc->attributes['data-instanceid'] = $bc->blockinstanceid;
1500 $skiptitle = strip_tags($bc->title);
1501 if ($bc->blockinstanceid && !empty($skiptitle)) {
1502 $bc->attributes['aria-labelledby'] = 'instance-'.$bc->blockinstanceid.'-header';
1503 } else if (!empty($bc->arialabel)) {
1504 $bc->attributes['aria-label'] = $bc->arialabel;
1506 if ($bc->dockable) {
1507 $bc->attributes['data-dockable'] = 1;
1509 if ($bc->collapsible == block_contents::HIDDEN) {
1510 $bc->add_class('hidden');
1512 if (!empty($bc->controls)) {
1513 $bc->add_class('block_with_controls');
1517 if (empty($skiptitle)) {
1518 $output = '';
1519 $skipdest = '';
1520 } else {
1521 $output = html_writer::link('#sb-'.$bc->skipid, get_string('skipa', 'access', $skiptitle),
1522 array('class' => 'skip skip-block', 'id' => 'fsb-' . $bc->skipid));
1523 $skipdest = html_writer::span('', 'skip-block-to',
1524 array('id' => 'sb-' . $bc->skipid));
1527 $output .= html_writer::start_tag('div', $bc->attributes);
1529 $output .= $this->block_header($bc);
1530 $output .= $this->block_content($bc);
1532 $output .= html_writer::end_tag('div');
1534 $output .= $this->block_annotation($bc);
1536 $output .= $skipdest;
1538 $this->init_block_hider_js($bc);
1539 return $output;
1543 * Produces a header for a block
1545 * @param block_contents $bc
1546 * @return string
1548 protected function block_header(block_contents $bc) {
1550 $title = '';
1551 if ($bc->title) {
1552 $attributes = array();
1553 if ($bc->blockinstanceid) {
1554 $attributes['id'] = 'instance-'.$bc->blockinstanceid.'-header';
1556 $title = html_writer::tag('h2', $bc->title, $attributes);
1559 $blockid = null;
1560 if (isset($bc->attributes['id'])) {
1561 $blockid = $bc->attributes['id'];
1563 $controlshtml = $this->block_controls($bc->controls, $blockid);
1565 $output = '';
1566 if ($title || $controlshtml) {
1567 $output .= html_writer::tag('div', html_writer::tag('div', html_writer::tag('div', '', array('class'=>'block_action')). $title . $controlshtml, array('class' => 'title')), array('class' => 'header'));
1569 return $output;
1573 * Produces the content area for a block
1575 * @param block_contents $bc
1576 * @return string
1578 protected function block_content(block_contents $bc) {
1579 $output = html_writer::start_tag('div', array('class' => 'content'));
1580 if (!$bc->title && !$this->block_controls($bc->controls)) {
1581 $output .= html_writer::tag('div', '', array('class'=>'block_action notitle'));
1583 $output .= $bc->content;
1584 $output .= $this->block_footer($bc);
1585 $output .= html_writer::end_tag('div');
1587 return $output;
1591 * Produces the footer for a block
1593 * @param block_contents $bc
1594 * @return string
1596 protected function block_footer(block_contents $bc) {
1597 $output = '';
1598 if ($bc->footer) {
1599 $output .= html_writer::tag('div', $bc->footer, array('class' => 'footer'));
1601 return $output;
1605 * Produces the annotation for a block
1607 * @param block_contents $bc
1608 * @return string
1610 protected function block_annotation(block_contents $bc) {
1611 $output = '';
1612 if ($bc->annotation) {
1613 $output .= html_writer::tag('div', $bc->annotation, array('class' => 'blockannotation'));
1615 return $output;
1619 * Calls the JS require function to hide a block.
1621 * @param block_contents $bc A block_contents object
1623 protected function init_block_hider_js(block_contents $bc) {
1624 if (!empty($bc->attributes['id']) and $bc->collapsible != block_contents::NOT_HIDEABLE) {
1625 $config = new stdClass;
1626 $config->id = $bc->attributes['id'];
1627 $config->title = strip_tags($bc->title);
1628 $config->preference = 'block' . $bc->blockinstanceid . 'hidden';
1629 $config->tooltipVisible = get_string('hideblocka', 'access', $config->title);
1630 $config->tooltipHidden = get_string('showblocka', 'access', $config->title);
1632 $this->page->requires->js_init_call('M.util.init_block_hider', array($config));
1633 user_preference_allow_ajax_update($config->preference, PARAM_BOOL);
1638 * Render the contents of a block_list.
1640 * @param array $icons the icon for each item.
1641 * @param array $items the content of each item.
1642 * @return string HTML
1644 public function list_block_contents($icons, $items) {
1645 $row = 0;
1646 $lis = array();
1647 foreach ($items as $key => $string) {
1648 $item = html_writer::start_tag('li', array('class' => 'r' . $row));
1649 if (!empty($icons[$key])) { //test if the content has an assigned icon
1650 $item .= html_writer::tag('div', $icons[$key], array('class' => 'icon column c0'));
1652 $item .= html_writer::tag('div', $string, array('class' => 'column c1'));
1653 $item .= html_writer::end_tag('li');
1654 $lis[] = $item;
1655 $row = 1 - $row; // Flip even/odd.
1657 return html_writer::tag('ul', implode("\n", $lis), array('class' => 'unlist'));
1661 * Output all the blocks in a particular region.
1663 * @param string $region the name of a region on this page.
1664 * @return string the HTML to be output.
1666 public function blocks_for_region($region) {
1667 $blockcontents = $this->page->blocks->get_content_for_region($region, $this);
1668 $blocks = $this->page->blocks->get_blocks_for_region($region);
1669 $lastblock = null;
1670 $zones = array();
1671 foreach ($blocks as $block) {
1672 $zones[] = $block->title;
1674 $output = '';
1676 foreach ($blockcontents as $bc) {
1677 if ($bc instanceof block_contents) {
1678 $output .= $this->block($bc, $region);
1679 $lastblock = $bc->title;
1680 } else if ($bc instanceof block_move_target) {
1681 $output .= $this->block_move_target($bc, $zones, $lastblock, $region);
1682 } else {
1683 throw new coding_exception('Unexpected type of thing (' . get_class($bc) . ') found in list of block contents.');
1686 return $output;
1690 * Output a place where the block that is currently being moved can be dropped.
1692 * @param block_move_target $target with the necessary details.
1693 * @param array $zones array of areas where the block can be moved to
1694 * @param string $previous the block located before the area currently being rendered.
1695 * @param string $region the name of the region
1696 * @return string the HTML to be output.
1698 public function block_move_target($target, $zones, $previous, $region) {
1699 if ($previous == null) {
1700 if (empty($zones)) {
1701 // There are no zones, probably because there are no blocks.
1702 $regions = $this->page->theme->get_all_block_regions();
1703 $position = get_string('moveblockinregion', 'block', $regions[$region]);
1704 } else {
1705 $position = get_string('moveblockbefore', 'block', $zones[0]);
1707 } else {
1708 $position = get_string('moveblockafter', 'block', $previous);
1710 return html_writer::tag('a', html_writer::tag('span', $position, array('class' => 'accesshide')), array('href' => $target->url, 'class' => 'blockmovetarget'));
1714 * Renders a special html link with attached action
1716 * Theme developers: DO NOT OVERRIDE! Please override function
1717 * {@link core_renderer::render_action_link()} instead.
1719 * @param string|moodle_url $url
1720 * @param string $text HTML fragment
1721 * @param component_action $action
1722 * @param array $attributes associative array of html link attributes + disabled
1723 * @param pix_icon optional pix icon to render with the link
1724 * @return string HTML fragment
1726 public function action_link($url, $text, component_action $action = null, array $attributes = null, $icon = null) {
1727 if (!($url instanceof moodle_url)) {
1728 $url = new moodle_url($url);
1730 $link = new action_link($url, $text, $action, $attributes, $icon);
1732 return $this->render($link);
1736 * Renders an action_link object.
1738 * The provided link is renderer and the HTML returned. At the same time the
1739 * associated actions are setup in JS by {@link core_renderer::add_action_handler()}
1741 * @param action_link $link
1742 * @return string HTML fragment
1744 protected function render_action_link(action_link $link) {
1745 return $this->render_from_template('core/action_link', $link->export_for_template($this));
1749 * Renders an action_icon.
1751 * This function uses the {@link core_renderer::action_link()} method for the
1752 * most part. What it does different is prepare the icon as HTML and use it
1753 * as the link text.
1755 * Theme developers: If you want to change how action links and/or icons are rendered,
1756 * consider overriding function {@link core_renderer::render_action_link()} and
1757 * {@link core_renderer::render_pix_icon()}.
1759 * @param string|moodle_url $url A string URL or moodel_url
1760 * @param pix_icon $pixicon
1761 * @param component_action $action
1762 * @param array $attributes associative array of html link attributes + disabled
1763 * @param bool $linktext show title next to image in link
1764 * @return string HTML fragment
1766 public function action_icon($url, pix_icon $pixicon, component_action $action = null, array $attributes = null, $linktext=false) {
1767 if (!($url instanceof moodle_url)) {
1768 $url = new moodle_url($url);
1770 $attributes = (array)$attributes;
1772 if (empty($attributes['class'])) {
1773 // let ppl override the class via $options
1774 $attributes['class'] = 'action-icon';
1777 $icon = $this->render($pixicon);
1779 if ($linktext) {
1780 $text = $pixicon->attributes['alt'];
1781 } else {
1782 $text = '';
1785 return $this->action_link($url, $text.$icon, $action, $attributes);
1789 * Print a message along with button choices for Continue/Cancel
1791 * If a string or moodle_url is given instead of a single_button, method defaults to post.
1793 * @param string $message The question to ask the user
1794 * @param single_button|moodle_url|string $continue The single_button component representing the Continue answer. Can also be a moodle_url or string URL
1795 * @param single_button|moodle_url|string $cancel The single_button component representing the Cancel answer. Can also be a moodle_url or string URL
1796 * @return string HTML fragment
1798 public function confirm($message, $continue, $cancel) {
1799 if ($continue instanceof single_button) {
1800 // ok
1801 $continue->primary = true;
1802 } else if (is_string($continue)) {
1803 $continue = new single_button(new moodle_url($continue), get_string('continue'), 'post', true);
1804 } else if ($continue instanceof moodle_url) {
1805 $continue = new single_button($continue, get_string('continue'), 'post', true);
1806 } else {
1807 throw new coding_exception('The continue param to $OUTPUT->confirm() must be either a URL (string/moodle_url) or a single_button instance.');
1810 if ($cancel instanceof single_button) {
1811 // ok
1812 } else if (is_string($cancel)) {
1813 $cancel = new single_button(new moodle_url($cancel), get_string('cancel'), 'get');
1814 } else if ($cancel instanceof moodle_url) {
1815 $cancel = new single_button($cancel, get_string('cancel'), 'get');
1816 } else {
1817 throw new coding_exception('The cancel param to $OUTPUT->confirm() must be either a URL (string/moodle_url) or a single_button instance.');
1820 $output = $this->box_start('generalbox modal modal-dialog modal-in-page show', 'notice');
1821 $output .= $this->box_start('modal-content', 'modal-content');
1822 $output .= $this->box_start('modal-header', 'modal-header');
1823 $output .= html_writer::tag('h4', get_string('confirm'));
1824 $output .= $this->box_end();
1825 $output .= $this->box_start('modal-body', 'modal-body');
1826 $output .= html_writer::tag('p', $message);
1827 $output .= $this->box_end();
1828 $output .= $this->box_start('modal-footer', 'modal-footer');
1829 $output .= html_writer::tag('div', $this->render($continue) . $this->render($cancel), array('class' => 'buttons'));
1830 $output .= $this->box_end();
1831 $output .= $this->box_end();
1832 $output .= $this->box_end();
1833 return $output;
1837 * Returns a form with a single button.
1839 * Theme developers: DO NOT OVERRIDE! Please override function
1840 * {@link core_renderer::render_single_button()} instead.
1842 * @param string|moodle_url $url
1843 * @param string $label button text
1844 * @param string $method get or post submit method
1845 * @param array $options associative array {disabled, title, etc.}
1846 * @return string HTML fragment
1848 public function single_button($url, $label, $method='post', array $options=null) {
1849 if (!($url instanceof moodle_url)) {
1850 $url = new moodle_url($url);
1852 $button = new single_button($url, $label, $method);
1854 foreach ((array)$options as $key=>$value) {
1855 if (array_key_exists($key, $button)) {
1856 $button->$key = $value;
1860 return $this->render($button);
1864 * Renders a single button widget.
1866 * This will return HTML to display a form containing a single button.
1868 * @param single_button $button
1869 * @return string HTML fragment
1871 protected function render_single_button(single_button $button) {
1872 $attributes = array('type' => 'submit',
1873 'value' => $button->label,
1874 'disabled' => $button->disabled ? 'disabled' : null,
1875 'title' => $button->tooltip);
1877 if ($button->actions) {
1878 $id = html_writer::random_id('single_button');
1879 $attributes['id'] = $id;
1880 foreach ($button->actions as $action) {
1881 $this->add_action_handler($action, $id);
1885 // first the input element
1886 $output = html_writer::empty_tag('input', $attributes);
1888 // then hidden fields
1889 $params = $button->url->params();
1890 if ($button->method === 'post') {
1891 $params['sesskey'] = sesskey();
1893 foreach ($params as $var => $val) {
1894 $output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => $var, 'value' => $val));
1897 // then div wrapper for xhtml strictness
1898 $output = html_writer::tag('div', $output);
1900 // now the form itself around it
1901 if ($button->method === 'get') {
1902 $url = $button->url->out_omit_querystring(true); // url without params, the anchor part allowed
1903 } else {
1904 $url = $button->url->out_omit_querystring(); // url without params, the anchor part not allowed
1906 if ($url === '') {
1907 $url = '#'; // there has to be always some action
1909 $attributes = array('method' => $button->method,
1910 'action' => $url,
1911 'id' => $button->formid);
1912 $output = html_writer::tag('form', $output, $attributes);
1914 // and finally one more wrapper with class
1915 return html_writer::tag('div', $output, array('class' => $button->class));
1919 * Returns a form with a single select widget.
1921 * Theme developers: DO NOT OVERRIDE! Please override function
1922 * {@link core_renderer::render_single_select()} instead.
1924 * @param moodle_url $url form action target, includes hidden fields
1925 * @param string $name name of selection field - the changing parameter in url
1926 * @param array $options list of options
1927 * @param string $selected selected element
1928 * @param array $nothing
1929 * @param string $formid
1930 * @param array $attributes other attributes for the single select
1931 * @return string HTML fragment
1933 public function single_select($url, $name, array $options, $selected = '',
1934 $nothing = array('' => 'choosedots'), $formid = null, $attributes = array()) {
1935 if (!($url instanceof moodle_url)) {
1936 $url = new moodle_url($url);
1938 $select = new single_select($url, $name, $options, $selected, $nothing, $formid);
1940 if (array_key_exists('label', $attributes)) {
1941 $select->set_label($attributes['label']);
1942 unset($attributes['label']);
1944 $select->attributes = $attributes;
1946 return $this->render($select);
1950 * Returns a dataformat selection and download form
1952 * @param string $label A text label
1953 * @param moodle_url|string $base The download page url
1954 * @param string $name The query param which will hold the type of the download
1955 * @param array $params Extra params sent to the download page
1956 * @return string HTML fragment
1958 public function download_dataformat_selector($label, $base, $name = 'dataformat', $params = array()) {
1960 $formats = core_plugin_manager::instance()->get_plugins_of_type('dataformat');
1961 $options = array();
1962 foreach ($formats as $format) {
1963 if ($format->is_enabled()) {
1964 $options[] = array(
1965 'value' => $format->name,
1966 'label' => get_string('dataformat', $format->component),
1970 $hiddenparams = array();
1971 foreach ($params as $key => $value) {
1972 $hiddenparams[] = array(
1973 'name' => $key,
1974 'value' => $value,
1977 $data = array(
1978 'label' => $label,
1979 'base' => $base,
1980 'name' => $name,
1981 'params' => $hiddenparams,
1982 'options' => $options,
1983 'sesskey' => sesskey(),
1984 'submit' => get_string('download'),
1987 return $this->render_from_template('core/dataformat_selector', $data);
1992 * Internal implementation of single_select rendering
1994 * @param single_select $select
1995 * @return string HTML fragment
1997 protected function render_single_select(single_select $select) {
1998 return $this->render_from_template('core/single_select', $select->export_for_template($this));
2002 * Returns a form with a url select widget.
2004 * Theme developers: DO NOT OVERRIDE! Please override function
2005 * {@link core_renderer::render_url_select()} instead.
2007 * @param array $urls list of urls - array('/course/view.php?id=1'=>'Frontpage', ....)
2008 * @param string $selected selected element
2009 * @param array $nothing
2010 * @param string $formid
2011 * @return string HTML fragment
2013 public function url_select(array $urls, $selected, $nothing = array('' => 'choosedots'), $formid = null) {
2014 $select = new url_select($urls, $selected, $nothing, $formid);
2015 return $this->render($select);
2019 * Internal implementation of url_select rendering
2021 * @param url_select $select
2022 * @return string HTML fragment
2024 protected function render_url_select(url_select $select) {
2025 return $this->render_from_template('core/url_select', $select->export_for_template($this));
2029 * Returns a string containing a link to the user documentation.
2030 * Also contains an icon by default. Shown to teachers and admin only.
2032 * @param string $path The page link after doc root and language, no leading slash.
2033 * @param string $text The text to be displayed for the link
2034 * @param boolean $forcepopup Whether to force a popup regardless of the value of $CFG->doctonewwindow
2035 * @return string
2037 public function doc_link($path, $text = '', $forcepopup = false) {
2038 global $CFG;
2040 $icon = $this->pix_icon('docs', '', 'moodle', array('class'=>'iconhelp icon-pre', 'role'=>'presentation'));
2042 $url = new moodle_url(get_docs_url($path));
2044 $attributes = array('href'=>$url);
2045 if (!empty($CFG->doctonewwindow) || $forcepopup) {
2046 $attributes['class'] = 'helplinkpopup';
2049 return html_writer::tag('a', $icon.$text, $attributes);
2053 * Return HTML for an image_icon.
2055 * Theme developers: DO NOT OVERRIDE! Please override function
2056 * {@link core_renderer::render_image_icon()} instead.
2058 * @param string $pix short pix name
2059 * @param string $alt mandatory alt attribute
2060 * @param string $component standard compoennt name like 'moodle', 'mod_forum', etc.
2061 * @param array $attributes htm lattributes
2062 * @return string HTML fragment
2064 public function image_icon($pix, $alt, $component='moodle', array $attributes = null) {
2065 $icon = new image_icon($pix, $alt, $component, $attributes);
2066 return $this->render($icon);
2070 * Renders a pix_icon widget and returns the HTML to display it.
2072 * @param image_icon $icon
2073 * @return string HTML fragment
2075 protected function render_image_icon(image_icon $icon) {
2076 $system = \core\output\icon_system::instance(\core\output\icon_system::STANDARD);
2077 return $system->render_pix_icon($this, $icon);
2081 * Return HTML for a pix_icon.
2083 * Theme developers: DO NOT OVERRIDE! Please override function
2084 * {@link core_renderer::render_pix_icon()} instead.
2086 * @param string $pix short pix name
2087 * @param string $alt mandatory alt attribute
2088 * @param string $component standard compoennt name like 'moodle', 'mod_forum', etc.
2089 * @param array $attributes htm lattributes
2090 * @return string HTML fragment
2092 public function pix_icon($pix, $alt, $component='moodle', array $attributes = null) {
2093 $icon = new pix_icon($pix, $alt, $component, $attributes);
2094 return $this->render($icon);
2098 * Renders a pix_icon widget and returns the HTML to display it.
2100 * @param pix_icon $icon
2101 * @return string HTML fragment
2103 protected function render_pix_icon(pix_icon $icon) {
2104 $system = \core\output\icon_system::instance();
2105 return $system->render_pix_icon($this, $icon);
2109 * Return HTML to display an emoticon icon.
2111 * @param pix_emoticon $emoticon
2112 * @return string HTML fragment
2114 protected function render_pix_emoticon(pix_emoticon $emoticon) {
2115 $system = \core\output\icon_system::instance(\core\output\icon_system::STANDARD);
2116 return $system->render_pix_icon($this, $emoticon);
2120 * Produces the html that represents this rating in the UI
2122 * @param rating $rating the page object on which this rating will appear
2123 * @return string
2125 function render_rating(rating $rating) {
2126 global $CFG, $USER;
2128 if ($rating->settings->aggregationmethod == RATING_AGGREGATE_NONE) {
2129 return null;//ratings are turned off
2132 $ratingmanager = new rating_manager();
2133 // Initialise the JavaScript so ratings can be done by AJAX.
2134 $ratingmanager->initialise_rating_javascript($this->page);
2136 $strrate = get_string("rate", "rating");
2137 $ratinghtml = ''; //the string we'll return
2139 // permissions check - can they view the aggregate?
2140 if ($rating->user_can_view_aggregate()) {
2142 $aggregatelabel = $ratingmanager->get_aggregate_label($rating->settings->aggregationmethod);
2143 $aggregatestr = $rating->get_aggregate_string();
2145 $aggregatehtml = html_writer::tag('span', $aggregatestr, array('id' => 'ratingaggregate'.$rating->itemid, 'class' => 'ratingaggregate')).' ';
2146 if ($rating->count > 0) {
2147 $countstr = "({$rating->count})";
2148 } else {
2149 $countstr = '-';
2151 $aggregatehtml .= html_writer::tag('span', $countstr, array('id'=>"ratingcount{$rating->itemid}", 'class' => 'ratingcount')).' ';
2153 $ratinghtml .= html_writer::tag('span', $aggregatelabel, array('class'=>'rating-aggregate-label'));
2154 if ($rating->settings->permissions->viewall && $rating->settings->pluginpermissions->viewall) {
2156 $nonpopuplink = $rating->get_view_ratings_url();
2157 $popuplink = $rating->get_view_ratings_url(true);
2159 $action = new popup_action('click', $popuplink, 'ratings', array('height' => 400, 'width' => 600));
2160 $ratinghtml .= $this->action_link($nonpopuplink, $aggregatehtml, $action);
2161 } else {
2162 $ratinghtml .= $aggregatehtml;
2166 $formstart = null;
2167 // if the item doesn't belong to the current user, the user has permission to rate
2168 // and we're within the assessable period
2169 if ($rating->user_can_rate()) {
2171 $rateurl = $rating->get_rate_url();
2172 $inputs = $rateurl->params();
2174 //start the rating form
2175 $formattrs = array(
2176 'id' => "postrating{$rating->itemid}",
2177 'class' => 'postratingform',
2178 'method' => 'post',
2179 'action' => $rateurl->out_omit_querystring()
2181 $formstart = html_writer::start_tag('form', $formattrs);
2182 $formstart .= html_writer::start_tag('div', array('class' => 'ratingform'));
2184 // add the hidden inputs
2185 foreach ($inputs as $name => $value) {
2186 $attributes = array('type' => 'hidden', 'class' => 'ratinginput', 'name' => $name, 'value' => $value);
2187 $formstart .= html_writer::empty_tag('input', $attributes);
2190 if (empty($ratinghtml)) {
2191 $ratinghtml .= $strrate.': ';
2193 $ratinghtml = $formstart.$ratinghtml;
2195 $scalearray = array(RATING_UNSET_RATING => $strrate.'...') + $rating->settings->scale->scaleitems;
2196 $scaleattrs = array('class'=>'postratingmenu ratinginput','id'=>'menurating'.$rating->itemid);
2197 $ratinghtml .= html_writer::label($rating->rating, 'menurating'.$rating->itemid, false, array('class' => 'accesshide'));
2198 $ratinghtml .= html_writer::select($scalearray, 'rating', $rating->rating, false, $scaleattrs);
2200 //output submit button
2201 $ratinghtml .= html_writer::start_tag('span', array('class'=>"ratingsubmit"));
2203 $attributes = array('type' => 'submit', 'class' => 'postratingmenusubmit', 'id' => 'postratingsubmit'.$rating->itemid, 'value' => s(get_string('rate', 'rating')));
2204 $ratinghtml .= html_writer::empty_tag('input', $attributes);
2206 if (!$rating->settings->scale->isnumeric) {
2207 // If a global scale, try to find current course ID from the context
2208 if (empty($rating->settings->scale->courseid) and $coursecontext = $rating->context->get_course_context(false)) {
2209 $courseid = $coursecontext->instanceid;
2210 } else {
2211 $courseid = $rating->settings->scale->courseid;
2213 $ratinghtml .= $this->help_icon_scale($courseid, $rating->settings->scale);
2215 $ratinghtml .= html_writer::end_tag('span');
2216 $ratinghtml .= html_writer::end_tag('div');
2217 $ratinghtml .= html_writer::end_tag('form');
2220 return $ratinghtml;
2224 * Centered heading with attached help button (same title text)
2225 * and optional icon attached.
2227 * @param string $text A heading text
2228 * @param string $helpidentifier The keyword that defines a help page
2229 * @param string $component component name
2230 * @param string|moodle_url $icon
2231 * @param string $iconalt icon alt text
2232 * @param int $level The level of importance of the heading. Defaulting to 2
2233 * @param string $classnames A space-separated list of CSS classes. Defaulting to null
2234 * @return string HTML fragment
2236 public function heading_with_help($text, $helpidentifier, $component = 'moodle', $icon = '', $iconalt = '', $level = 2, $classnames = null) {
2237 $image = '';
2238 if ($icon) {
2239 $image = $this->pix_icon($icon, $iconalt, $component, array('class'=>'icon iconlarge'));
2242 $help = '';
2243 if ($helpidentifier) {
2244 $help = $this->help_icon($helpidentifier, $component);
2247 return $this->heading($image.$text.$help, $level, $classnames);
2251 * Returns HTML to display a help icon.
2253 * @deprecated since Moodle 2.0
2255 public function old_help_icon($helpidentifier, $title, $component = 'moodle', $linktext = '') {
2256 throw new coding_exception('old_help_icon() can not be used any more, please see help_icon().');
2260 * Returns HTML to display a help icon.
2262 * Theme developers: DO NOT OVERRIDE! Please override function
2263 * {@link core_renderer::render_help_icon()} instead.
2265 * @param string $identifier The keyword that defines a help page
2266 * @param string $component component name
2267 * @param string|bool $linktext true means use $title as link text, string means link text value
2268 * @return string HTML fragment
2270 public function help_icon($identifier, $component = 'moodle', $linktext = '') {
2271 $icon = new help_icon($identifier, $component);
2272 $icon->diag_strings();
2273 if ($linktext === true) {
2274 $icon->linktext = get_string($icon->identifier, $icon->component);
2275 } else if (!empty($linktext)) {
2276 $icon->linktext = $linktext;
2278 return $this->render($icon);
2282 * Implementation of user image rendering.
2284 * @param help_icon $helpicon A help icon instance
2285 * @return string HTML fragment
2287 protected function render_help_icon(help_icon $helpicon) {
2288 return $this->render_from_template('core/help_icon', $helpicon->export_for_template($this));
2292 * Returns HTML to display a scale help icon.
2294 * @param int $courseid
2295 * @param stdClass $scale instance
2296 * @return string HTML fragment
2298 public function help_icon_scale($courseid, stdClass $scale) {
2299 global $CFG;
2301 $title = get_string('helpprefix2', '', $scale->name) .' ('.get_string('newwindow').')';
2303 $icon = $this->pix_icon('help', get_string('scales'), 'moodle', array('class'=>'iconhelp'));
2305 $scaleid = abs($scale->id);
2307 $link = new moodle_url('/course/scales.php', array('id' => $courseid, 'list' => true, 'scaleid' => $scaleid));
2308 $action = new popup_action('click', $link, 'ratingscale');
2310 return html_writer::tag('span', $this->action_link($link, $icon, $action), array('class' => 'helplink'));
2314 * Creates and returns a spacer image with optional line break.
2316 * @param array $attributes Any HTML attributes to add to the spaced.
2317 * @param bool $br Include a BR after the spacer.... DON'T USE THIS. Don't be
2318 * laxy do it with CSS which is a much better solution.
2319 * @return string HTML fragment
2321 public function spacer(array $attributes = null, $br = false) {
2322 $attributes = (array)$attributes;
2323 if (empty($attributes['width'])) {
2324 $attributes['width'] = 1;
2326 if (empty($attributes['height'])) {
2327 $attributes['height'] = 1;
2329 $attributes['class'] = 'spacer';
2331 $output = $this->pix_icon('spacer', '', 'moodle', $attributes);
2333 if (!empty($br)) {
2334 $output .= '<br />';
2337 return $output;
2341 * Returns HTML to display the specified user's avatar.
2343 * User avatar may be obtained in two ways:
2344 * <pre>
2345 * // Option 1: (shortcut for simple cases, preferred way)
2346 * // $user has come from the DB and has fields id, picture, imagealt, firstname and lastname
2347 * $OUTPUT->user_picture($user, array('popup'=>true));
2349 * // Option 2:
2350 * $userpic = new user_picture($user);
2351 * // Set properties of $userpic
2352 * $userpic->popup = true;
2353 * $OUTPUT->render($userpic);
2354 * </pre>
2356 * Theme developers: DO NOT OVERRIDE! Please override function
2357 * {@link core_renderer::render_user_picture()} instead.
2359 * @param stdClass $user Object with at least fields id, picture, imagealt, firstname, lastname
2360 * If any of these are missing, the database is queried. Avoid this
2361 * if at all possible, particularly for reports. It is very bad for performance.
2362 * @param array $options associative array with user picture options, used only if not a user_picture object,
2363 * options are:
2364 * - courseid=$this->page->course->id (course id of user profile in link)
2365 * - size=35 (size of image)
2366 * - link=true (make image clickable - the link leads to user profile)
2367 * - popup=false (open in popup)
2368 * - alttext=true (add image alt attribute)
2369 * - class = image class attribute (default 'userpicture')
2370 * - visibletoscreenreaders=true (whether to be visible to screen readers)
2371 * @return string HTML fragment
2373 public function user_picture(stdClass $user, array $options = null) {
2374 $userpicture = new user_picture($user);
2375 foreach ((array)$options as $key=>$value) {
2376 if (array_key_exists($key, $userpicture)) {
2377 $userpicture->$key = $value;
2380 return $this->render($userpicture);
2384 * Internal implementation of user image rendering.
2386 * @param user_picture $userpicture
2387 * @return string
2389 protected function render_user_picture(user_picture $userpicture) {
2390 global $CFG, $DB;
2392 $user = $userpicture->user;
2394 if ($userpicture->alttext) {
2395 if (!empty($user->imagealt)) {
2396 $alt = $user->imagealt;
2397 } else {
2398 $alt = get_string('pictureof', '', fullname($user));
2400 } else {
2401 $alt = '';
2404 if (empty($userpicture->size)) {
2405 $size = 35;
2406 } else if ($userpicture->size === true or $userpicture->size == 1) {
2407 $size = 100;
2408 } else {
2409 $size = $userpicture->size;
2412 $class = $userpicture->class;
2414 if ($user->picture == 0) {
2415 $class .= ' defaultuserpic';
2418 $src = $userpicture->get_url($this->page, $this);
2420 $attributes = array('src'=>$src, 'alt'=>$alt, 'title'=>$alt, 'class'=>$class, 'width'=>$size, 'height'=>$size);
2421 if (!$userpicture->visibletoscreenreaders) {
2422 $attributes['role'] = 'presentation';
2425 // get the image html output fisrt
2426 $output = html_writer::empty_tag('img', $attributes);
2428 // then wrap it in link if needed
2429 if (!$userpicture->link) {
2430 return $output;
2433 if (empty($userpicture->courseid)) {
2434 $courseid = $this->page->course->id;
2435 } else {
2436 $courseid = $userpicture->courseid;
2439 if ($courseid == SITEID) {
2440 $url = new moodle_url('/user/profile.php', array('id' => $user->id));
2441 } else {
2442 $url = new moodle_url('/user/view.php', array('id' => $user->id, 'course' => $courseid));
2445 $attributes = array('href'=>$url);
2446 if (!$userpicture->visibletoscreenreaders) {
2447 $attributes['tabindex'] = '-1';
2448 $attributes['aria-hidden'] = 'true';
2451 if ($userpicture->popup) {
2452 $id = html_writer::random_id('userpicture');
2453 $attributes['id'] = $id;
2454 $this->add_action_handler(new popup_action('click', $url), $id);
2457 return html_writer::tag('a', $output, $attributes);
2461 * Internal implementation of file tree viewer items rendering.
2463 * @param array $dir
2464 * @return string
2466 public function htmllize_file_tree($dir) {
2467 if (empty($dir['subdirs']) and empty($dir['files'])) {
2468 return '';
2470 $result = '<ul>';
2471 foreach ($dir['subdirs'] as $subdir) {
2472 $result .= '<li>'.s($subdir['dirname']).' '.$this->htmllize_file_tree($subdir).'</li>';
2474 foreach ($dir['files'] as $file) {
2475 $filename = $file->get_filename();
2476 $result .= '<li><span>'.html_writer::link($file->fileurl, $filename).'</span></li>';
2478 $result .= '</ul>';
2480 return $result;
2484 * Returns HTML to display the file picker
2486 * <pre>
2487 * $OUTPUT->file_picker($options);
2488 * </pre>
2490 * Theme developers: DO NOT OVERRIDE! Please override function
2491 * {@link core_renderer::render_file_picker()} instead.
2493 * @param array $options associative array with file manager options
2494 * options are:
2495 * maxbytes=>-1,
2496 * itemid=>0,
2497 * client_id=>uniqid(),
2498 * acepted_types=>'*',
2499 * return_types=>FILE_INTERNAL,
2500 * context=>$PAGE->context
2501 * @return string HTML fragment
2503 public function file_picker($options) {
2504 $fp = new file_picker($options);
2505 return $this->render($fp);
2509 * Internal implementation of file picker rendering.
2511 * @param file_picker $fp
2512 * @return string
2514 public function render_file_picker(file_picker $fp) {
2515 global $CFG, $OUTPUT, $USER;
2516 $options = $fp->options;
2517 $client_id = $options->client_id;
2518 $strsaved = get_string('filesaved', 'repository');
2519 $straddfile = get_string('openpicker', 'repository');
2520 $strloading = get_string('loading', 'repository');
2521 $strdndenabled = get_string('dndenabled_inbox', 'moodle');
2522 $strdroptoupload = get_string('droptoupload', 'moodle');
2523 $icon_progress = $OUTPUT->pix_icon('i/loading_small', $strloading).'';
2525 $currentfile = $options->currentfile;
2526 if (empty($currentfile)) {
2527 $currentfile = '';
2528 } else {
2529 $currentfile .= ' - ';
2531 if ($options->maxbytes) {
2532 $size = $options->maxbytes;
2533 } else {
2534 $size = get_max_upload_file_size();
2536 if ($size == -1) {
2537 $maxsize = '';
2538 } else {
2539 $maxsize = get_string('maxfilesize', 'moodle', display_size($size));
2541 if ($options->buttonname) {
2542 $buttonname = ' name="' . $options->buttonname . '"';
2543 } else {
2544 $buttonname = '';
2546 $html = <<<EOD
2547 <div class="filemanager-loading mdl-align" id='filepicker-loading-{$client_id}'>
2548 $icon_progress
2549 </div>
2550 <div id="filepicker-wrapper-{$client_id}" class="mdl-left" style="display:none">
2551 <div>
2552 <input type="button" class="btn btn-secondary fp-btn-choose" id="filepicker-button-{$client_id}" value="{$straddfile}"{$buttonname}/>
2553 <span> $maxsize </span>
2554 </div>
2555 EOD;
2556 if ($options->env != 'url') {
2557 $html .= <<<EOD
2558 <div id="file_info_{$client_id}" class="mdl-left filepicker-filelist" style="position: relative">
2559 <div class="filepicker-filename">
2560 <div class="filepicker-container">$currentfile<div class="dndupload-message">$strdndenabled <br/><div class="dndupload-arrow"></div></div></div>
2561 <div class="dndupload-progressbars"></div>
2562 </div>
2563 <div><div class="dndupload-target">{$strdroptoupload}<br/><div class="dndupload-arrow"></div></div></div>
2564 </div>
2565 EOD;
2567 $html .= '</div>';
2568 return $html;
2572 * Returns HTML to display the 'Update this Modulename' button that appears on module pages.
2574 * @deprecated since Moodle 3.2
2576 * @param string $cmid the course_module id.
2577 * @param string $modulename the module name, eg. "forum", "quiz" or "workshop"
2578 * @return string the HTML for the button, if this user has permission to edit it, else an empty string.
2580 public function update_module_button($cmid, $modulename) {
2581 global $CFG;
2583 debugging('core_renderer::update_module_button() has been deprecated and should not be used anymore. Activity modules ' .
2584 'should not add the edit module button, the link is already available in the Administration block. Themes can choose ' .
2585 'to display the link in the buttons row consistently for all module types.', DEBUG_DEVELOPER);
2587 if (has_capability('moodle/course:manageactivities', context_module::instance($cmid))) {
2588 $modulename = get_string('modulename', $modulename);
2589 $string = get_string('updatethis', '', $modulename);
2590 $url = new moodle_url("$CFG->wwwroot/course/mod.php", array('update' => $cmid, 'return' => true, 'sesskey' => sesskey()));
2591 return $this->single_button($url, $string);
2592 } else {
2593 return '';
2598 * Returns HTML to display a "Turn editing on/off" button in a form.
2600 * @param moodle_url $url The URL + params to send through when clicking the button
2601 * @return string HTML the button
2603 public function edit_button(moodle_url $url) {
2605 $url->param('sesskey', sesskey());
2606 if ($this->page->user_is_editing()) {
2607 $url->param('edit', 'off');
2608 $editstring = get_string('turneditingoff');
2609 } else {
2610 $url->param('edit', 'on');
2611 $editstring = get_string('turneditingon');
2614 return $this->single_button($url, $editstring);
2618 * Returns HTML to display a simple button to close a window
2620 * @param string $text The lang string for the button's label (already output from get_string())
2621 * @return string html fragment
2623 public function close_window_button($text='') {
2624 if (empty($text)) {
2625 $text = get_string('closewindow');
2627 $button = new single_button(new moodle_url('#'), $text, 'get');
2628 $button->add_action(new component_action('click', 'close_window'));
2630 return $this->container($this->render($button), 'closewindow');
2634 * Output an error message. By default wraps the error message in <span class="error">.
2635 * If the error message is blank, nothing is output.
2637 * @param string $message the error message.
2638 * @return string the HTML to output.
2640 public function error_text($message) {
2641 if (empty($message)) {
2642 return '';
2644 $message = $this->pix_icon('i/warning', get_string('error'), '', array('class' => 'icon icon-pre', 'title'=>'')) . $message;
2645 return html_writer::tag('span', $message, array('class' => 'error'));
2649 * Do not call this function directly.
2651 * To terminate the current script with a fatal error, call the {@link print_error}
2652 * function, or throw an exception. Doing either of those things will then call this
2653 * function to display the error, before terminating the execution.
2655 * @param string $message The message to output
2656 * @param string $moreinfourl URL where more info can be found about the error
2657 * @param string $link Link for the Continue button
2658 * @param array $backtrace The execution backtrace
2659 * @param string $debuginfo Debugging information
2660 * @return string the HTML to output.
2662 public function fatal_error($message, $moreinfourl, $link, $backtrace, $debuginfo = null, $errorcode = "") {
2663 global $CFG;
2665 $output = '';
2666 $obbuffer = '';
2668 if ($this->has_started()) {
2669 // we can not always recover properly here, we have problems with output buffering,
2670 // html tables, etc.
2671 $output .= $this->opencontainers->pop_all_but_last();
2673 } else {
2674 // It is really bad if library code throws exception when output buffering is on,
2675 // because the buffered text would be printed before our start of page.
2676 // NOTE: this hack might be behave unexpectedly in case output buffering is enabled in PHP.ini
2677 error_reporting(0); // disable notices from gzip compression, etc.
2678 while (ob_get_level() > 0) {
2679 $buff = ob_get_clean();
2680 if ($buff === false) {
2681 break;
2683 $obbuffer .= $buff;
2685 error_reporting($CFG->debug);
2687 // Output not yet started.
2688 $protocol = (isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0');
2689 if (empty($_SERVER['HTTP_RANGE'])) {
2690 @header($protocol . ' 404 Not Found');
2691 } else if (core_useragent::check_safari_ios_version(602) && !empty($_SERVER['HTTP_X_PLAYBACK_SESSION_ID'])) {
2692 // Coax iOS 10 into sending the session cookie.
2693 @header($protocol . ' 403 Forbidden');
2694 } else {
2695 // Must stop byteserving attempts somehow,
2696 // this is weird but Chrome PDF viewer can be stopped only with 407!
2697 @header($protocol . ' 407 Proxy Authentication Required');
2700 $this->page->set_context(null); // ugly hack - make sure page context is set to something, we do not want bogus warnings here
2701 $this->page->set_url('/'); // no url
2702 //$this->page->set_pagelayout('base'); //TODO: MDL-20676 blocks on error pages are weird, unfortunately it somehow detect the pagelayout from URL :-(
2703 $this->page->set_title(get_string('error'));
2704 $this->page->set_heading($this->page->course->fullname);
2705 $output .= $this->header();
2708 $message = '<p class="errormessage">' . $message . '</p>'.
2709 '<p class="errorcode"><a href="' . $moreinfourl . '">' .
2710 get_string('moreinformation') . '</a></p>';
2711 if (empty($CFG->rolesactive)) {
2712 $message .= '<p class="errormessage">' . get_string('installproblem', 'error') . '</p>';
2713 //It is usually not possible to recover from errors triggered during installation, you may need to create a new database or use a different database prefix for new installation.
2715 $output .= $this->box($message, 'errorbox', null, array('data-rel' => 'fatalerror'));
2717 if ($CFG->debugdeveloper) {
2718 if (!empty($debuginfo)) {
2719 $debuginfo = s($debuginfo); // removes all nasty JS
2720 $debuginfo = str_replace("\n", '<br />', $debuginfo); // keep newlines
2721 $output .= $this->notification('<strong>Debug info:</strong> '.$debuginfo, 'notifytiny');
2723 if (!empty($backtrace)) {
2724 $output .= $this->notification('<strong>Stack trace:</strong> '.format_backtrace($backtrace), 'notifytiny');
2726 if ($obbuffer !== '' ) {
2727 $output .= $this->notification('<strong>Output buffer:</strong> '.s($obbuffer), 'notifytiny');
2731 if (empty($CFG->rolesactive)) {
2732 // continue does not make much sense if moodle is not installed yet because error is most probably not recoverable
2733 } else if (!empty($link)) {
2734 $output .= $this->continue_button($link);
2737 $output .= $this->footer();
2739 // Padding to encourage IE to display our error page, rather than its own.
2740 $output .= str_repeat(' ', 512);
2742 return $output;
2746 * Output a notification (that is, a status message about something that has just happened).
2748 * Note: \core\notification::add() may be more suitable for your usage.
2750 * @param string $message The message to print out.
2751 * @param string $type The type of notification. See constants on \core\output\notification.
2752 * @return string the HTML to output.
2754 public function notification($message, $type = null) {
2755 $typemappings = [
2756 // Valid types.
2757 'success' => \core\output\notification::NOTIFY_SUCCESS,
2758 'info' => \core\output\notification::NOTIFY_INFO,
2759 'warning' => \core\output\notification::NOTIFY_WARNING,
2760 'error' => \core\output\notification::NOTIFY_ERROR,
2762 // Legacy types mapped to current types.
2763 'notifyproblem' => \core\output\notification::NOTIFY_ERROR,
2764 'notifytiny' => \core\output\notification::NOTIFY_ERROR,
2765 'notifyerror' => \core\output\notification::NOTIFY_ERROR,
2766 'notifysuccess' => \core\output\notification::NOTIFY_SUCCESS,
2767 'notifymessage' => \core\output\notification::NOTIFY_INFO,
2768 'notifyredirect' => \core\output\notification::NOTIFY_INFO,
2769 'redirectmessage' => \core\output\notification::NOTIFY_INFO,
2772 $extraclasses = [];
2774 if ($type) {
2775 if (strpos($type, ' ') === false) {
2776 // No spaces in the list of classes, therefore no need to loop over and determine the class.
2777 if (isset($typemappings[$type])) {
2778 $type = $typemappings[$type];
2779 } else {
2780 // The value provided did not match a known type. It must be an extra class.
2781 $extraclasses = [$type];
2783 } else {
2784 // Identify what type of notification this is.
2785 $classarray = explode(' ', self::prepare_classes($type));
2787 // Separate out the type of notification from the extra classes.
2788 foreach ($classarray as $class) {
2789 if (isset($typemappings[$class])) {
2790 $type = $typemappings[$class];
2791 } else {
2792 $extraclasses[] = $class;
2798 $notification = new \core\output\notification($message, $type);
2799 if (count($extraclasses)) {
2800 $notification->set_extra_classes($extraclasses);
2803 // Return the rendered template.
2804 return $this->render_from_template($notification->get_template_name(), $notification->export_for_template($this));
2808 * Output a notification at a particular level - in this case, NOTIFY_PROBLEM.
2810 * @param string $message the message to print out
2811 * @return string HTML fragment.
2812 * @deprecated since Moodle 3.1 MDL-30811 - please do not use this function any more.
2813 * @todo MDL-53113 This will be removed in Moodle 3.5.
2814 * @see \core\output\notification
2816 public function notify_problem($message) {
2817 debugging(__FUNCTION__ . ' is deprecated.' .
2818 'Please use \core\notification::add, or \core\output\notification as required',
2819 DEBUG_DEVELOPER);
2820 $n = new \core\output\notification($message, \core\output\notification::NOTIFY_ERROR);
2821 return $this->render($n);
2825 * Output a notification at a particular level - in this case, NOTIFY_SUCCESS.
2827 * @param string $message the message to print out
2828 * @return string HTML fragment.
2829 * @deprecated since Moodle 3.1 MDL-30811 - please do not use this function any more.
2830 * @todo MDL-53113 This will be removed in Moodle 3.5.
2831 * @see \core\output\notification
2833 public function notify_success($message) {
2834 debugging(__FUNCTION__ . ' is deprecated.' .
2835 'Please use \core\notification::add, or \core\output\notification as required',
2836 DEBUG_DEVELOPER);
2837 $n = new \core\output\notification($message, \core\output\notification::NOTIFY_SUCCESS);
2838 return $this->render($n);
2842 * Output a notification at a particular level - in this case, NOTIFY_MESSAGE.
2844 * @param string $message the message to print out
2845 * @return string HTML fragment.
2846 * @deprecated since Moodle 3.1 MDL-30811 - please do not use this function any more.
2847 * @todo MDL-53113 This will be removed in Moodle 3.5.
2848 * @see \core\output\notification
2850 public function notify_message($message) {
2851 debugging(__FUNCTION__ . ' is deprecated.' .
2852 'Please use \core\notification::add, or \core\output\notification as required',
2853 DEBUG_DEVELOPER);
2854 $n = new \core\output\notification($message, \core\output\notification::NOTIFY_INFO);
2855 return $this->render($n);
2859 * Output a notification at a particular level - in this case, NOTIFY_REDIRECT.
2861 * @param string $message the message to print out
2862 * @return string HTML fragment.
2863 * @deprecated since Moodle 3.1 MDL-30811 - please do not use this function any more.
2864 * @todo MDL-53113 This will be removed in Moodle 3.5.
2865 * @see \core\output\notification
2867 public function notify_redirect($message) {
2868 debugging(__FUNCTION__ . ' is deprecated.' .
2869 'Please use \core\notification::add, or \core\output\notification as required',
2870 DEBUG_DEVELOPER);
2871 $n = new \core\output\notification($message, \core\output\notification::NOTIFY_INFO);
2872 return $this->render($n);
2876 * Render a notification (that is, a status message about something that has
2877 * just happened).
2879 * @param \core\output\notification $notification the notification to print out
2880 * @return string the HTML to output.
2882 protected function render_notification(\core\output\notification $notification) {
2883 return $this->render_from_template($notification->get_template_name(), $notification->export_for_template($this));
2887 * Returns HTML to display a continue button that goes to a particular URL.
2889 * @param string|moodle_url $url The url the button goes to.
2890 * @return string the HTML to output.
2892 public function continue_button($url) {
2893 if (!($url instanceof moodle_url)) {
2894 $url = new moodle_url($url);
2896 $button = new single_button($url, get_string('continue'), 'get', true);
2897 $button->class = 'continuebutton';
2899 return $this->render($button);
2903 * Returns HTML to display a single paging bar to provide access to other pages (usually in a search)
2905 * Theme developers: DO NOT OVERRIDE! Please override function
2906 * {@link core_renderer::render_paging_bar()} instead.
2908 * @param int $totalcount The total number of entries available to be paged through
2909 * @param int $page The page you are currently viewing
2910 * @param int $perpage The number of entries that should be shown per page
2911 * @param string|moodle_url $baseurl url of the current page, the $pagevar parameter is added
2912 * @param string $pagevar name of page parameter that holds the page number
2913 * @return string the HTML to output.
2915 public function paging_bar($totalcount, $page, $perpage, $baseurl, $pagevar = 'page') {
2916 $pb = new paging_bar($totalcount, $page, $perpage, $baseurl, $pagevar);
2917 return $this->render($pb);
2921 * Internal implementation of paging bar rendering.
2923 * @param paging_bar $pagingbar
2924 * @return string
2926 protected function render_paging_bar(paging_bar $pagingbar) {
2927 $output = '';
2928 $pagingbar = clone($pagingbar);
2929 $pagingbar->prepare($this, $this->page, $this->target);
2931 if ($pagingbar->totalcount > $pagingbar->perpage) {
2932 $output .= get_string('page') . ':';
2934 if (!empty($pagingbar->previouslink)) {
2935 $output .= ' (' . $pagingbar->previouslink . ') ';
2938 if (!empty($pagingbar->firstlink)) {
2939 $output .= ' ' . $pagingbar->firstlink . ' ...';
2942 foreach ($pagingbar->pagelinks as $link) {
2943 $output .= " $link";
2946 if (!empty($pagingbar->lastlink)) {
2947 $output .= ' ... ' . $pagingbar->lastlink . ' ';
2950 if (!empty($pagingbar->nextlink)) {
2951 $output .= ' (' . $pagingbar->nextlink . ')';
2955 return html_writer::tag('div', $output, array('class' => 'paging'));
2959 * Returns HTML to display initials bar to provide access to other pages (usually in a search)
2961 * @param string $current the currently selected letter.
2962 * @param string $class class name to add to this initial bar.
2963 * @param string $title the name to put in front of this initial bar.
2964 * @param string $urlvar URL parameter name for this initial.
2965 * @param string $url URL object.
2966 * @param array $alpha of letters in the alphabet.
2967 * @return string the HTML to output.
2969 public function initials_bar($current, $class, $title, $urlvar, $url, $alpha = null) {
2970 $ib = new initials_bar($current, $class, $title, $urlvar, $url, $alpha);
2971 return $this->render($ib);
2975 * Internal implementation of initials bar rendering.
2977 * @param initials_bar $initialsbar
2978 * @return string
2980 protected function render_initials_bar(initials_bar $initialsbar) {
2981 return $this->render_from_template('core/initials_bar', $initialsbar->export_for_template($this));
2985 * Output the place a skip link goes to.
2987 * @param string $id The target name from the corresponding $PAGE->requires->skip_link_to($target) call.
2988 * @return string the HTML to output.
2990 public function skip_link_target($id = null) {
2991 return html_writer::span('', '', array('id' => $id));
2995 * Outputs a heading
2997 * @param string $text The text of the heading
2998 * @param int $level The level of importance of the heading. Defaulting to 2
2999 * @param string $classes A space-separated list of CSS classes. Defaulting to null
3000 * @param string $id An optional ID
3001 * @return string the HTML to output.
3003 public function heading($text, $level = 2, $classes = null, $id = null) {
3004 $level = (integer) $level;
3005 if ($level < 1 or $level > 6) {
3006 throw new coding_exception('Heading level must be an integer between 1 and 6.');
3008 return html_writer::tag('h' . $level, $text, array('id' => $id, 'class' => renderer_base::prepare_classes($classes)));
3012 * Outputs a box.
3014 * @param string $contents The contents of the box
3015 * @param string $classes A space-separated list of CSS classes
3016 * @param string $id An optional ID
3017 * @param array $attributes An array of other attributes to give the box.
3018 * @return string the HTML to output.
3020 public function box($contents, $classes = 'generalbox', $id = null, $attributes = array()) {
3021 return $this->box_start($classes, $id, $attributes) . $contents . $this->box_end();
3025 * Outputs the opening section of a box.
3027 * @param string $classes A space-separated list of CSS classes
3028 * @param string $id An optional ID
3029 * @param array $attributes An array of other attributes to give the box.
3030 * @return string the HTML to output.
3032 public function box_start($classes = 'generalbox', $id = null, $attributes = array()) {
3033 $this->opencontainers->push('box', html_writer::end_tag('div'));
3034 $attributes['id'] = $id;
3035 $attributes['class'] = 'box ' . renderer_base::prepare_classes($classes);
3036 return html_writer::start_tag('div', $attributes);
3040 * Outputs the closing section of a box.
3042 * @return string the HTML to output.
3044 public function box_end() {
3045 return $this->opencontainers->pop('box');
3049 * Outputs a container.
3051 * @param string $contents The contents of the box
3052 * @param string $classes A space-separated list of CSS classes
3053 * @param string $id An optional ID
3054 * @return string the HTML to output.
3056 public function container($contents, $classes = null, $id = null) {
3057 return $this->container_start($classes, $id) . $contents . $this->container_end();
3061 * Outputs the opening section of a container.
3063 * @param string $classes A space-separated list of CSS classes
3064 * @param string $id An optional ID
3065 * @return string the HTML to output.
3067 public function container_start($classes = null, $id = null) {
3068 $this->opencontainers->push('container', html_writer::end_tag('div'));
3069 return html_writer::start_tag('div', array('id' => $id,
3070 'class' => renderer_base::prepare_classes($classes)));
3074 * Outputs the closing section of a container.
3076 * @return string the HTML to output.
3078 public function container_end() {
3079 return $this->opencontainers->pop('container');
3083 * Make nested HTML lists out of the items
3085 * The resulting list will look something like this:
3087 * <pre>
3088 * <<ul>>
3089 * <<li>><div class='tree_item parent'>(item contents)</div>
3090 * <<ul>
3091 * <<li>><div class='tree_item'>(item contents)</div><</li>>
3092 * <</ul>>
3093 * <</li>>
3094 * <</ul>>
3095 * </pre>
3097 * @param array $items
3098 * @param array $attrs html attributes passed to the top ofs the list
3099 * @return string HTML
3101 public function tree_block_contents($items, $attrs = array()) {
3102 // exit if empty, we don't want an empty ul element
3103 if (empty($items)) {
3104 return '';
3106 // array of nested li elements
3107 $lis = array();
3108 foreach ($items as $item) {
3109 // this applies to the li item which contains all child lists too
3110 $content = $item->content($this);
3111 $liclasses = array($item->get_css_type());
3112 if (!$item->forceopen || (!$item->forceopen && $item->collapse) || ($item->children->count()==0 && $item->nodetype==navigation_node::NODETYPE_BRANCH)) {
3113 $liclasses[] = 'collapsed';
3115 if ($item->isactive === true) {
3116 $liclasses[] = 'current_branch';
3118 $liattr = array('class'=>join(' ',$liclasses));
3119 // class attribute on the div item which only contains the item content
3120 $divclasses = array('tree_item');
3121 if ($item->children->count()>0 || $item->nodetype==navigation_node::NODETYPE_BRANCH) {
3122 $divclasses[] = 'branch';
3123 } else {
3124 $divclasses[] = 'leaf';
3126 if (!empty($item->classes) && count($item->classes)>0) {
3127 $divclasses[] = join(' ', $item->classes);
3129 $divattr = array('class'=>join(' ', $divclasses));
3130 if (!empty($item->id)) {
3131 $divattr['id'] = $item->id;
3133 $content = html_writer::tag('p', $content, $divattr) . $this->tree_block_contents($item->children);
3134 if (!empty($item->preceedwithhr) && $item->preceedwithhr===true) {
3135 $content = html_writer::empty_tag('hr') . $content;
3137 $content = html_writer::tag('li', $content, $liattr);
3138 $lis[] = $content;
3140 return html_writer::tag('ul', implode("\n", $lis), $attrs);
3144 * Returns a search box.
3146 * @param string $id The search box wrapper div id, defaults to an autogenerated one.
3147 * @return string HTML with the search form hidden by default.
3149 public function search_box($id = false) {
3150 global $CFG;
3152 // Accessing $CFG directly as using \core_search::is_global_search_enabled would
3153 // result in an extra included file for each site, even the ones where global search
3154 // is disabled.
3155 if (empty($CFG->enableglobalsearch) || !has_capability('moodle/search:query', context_system::instance())) {
3156 return '';
3159 if ($id == false) {
3160 $id = uniqid();
3161 } else {
3162 // Needs to be cleaned, we use it for the input id.
3163 $id = clean_param($id, PARAM_ALPHANUMEXT);
3166 // JS to animate the form.
3167 $this->page->requires->js_call_amd('core/search-input', 'init', array($id));
3169 $searchicon = html_writer::tag('div', $this->pix_icon('a/search', get_string('search', 'search'), 'moodle'),
3170 array('role' => 'button', 'tabindex' => 0));
3171 $formattrs = array('class' => 'search-input-form', 'action' => $CFG->wwwroot . '/search/index.php');
3172 $inputattrs = array('type' => 'text', 'name' => 'q', 'placeholder' => get_string('search', 'search'),
3173 'size' => 13, 'tabindex' => -1, 'id' => 'id_q_' . $id);
3175 $contents = html_writer::tag('label', get_string('enteryoursearchquery', 'search'),
3176 array('for' => 'id_q_' . $id, 'class' => 'accesshide')) . html_writer::tag('input', '', $inputattrs);
3177 $searchinput = html_writer::tag('form', $contents, $formattrs);
3179 return html_writer::tag('div', $searchicon . $searchinput, array('class' => 'search-input-wrapper nav-link', 'id' => $id));
3183 * Allow plugins to provide some content to be rendered in the navbar.
3184 * The plugin must define a PLUGIN_render_navbar_output function that returns
3185 * the HTML they wish to add to the navbar.
3187 * @return string HTML for the navbar
3189 public function navbar_plugin_output() {
3190 $output = '';
3192 if ($pluginsfunction = get_plugins_with_function('render_navbar_output')) {
3193 foreach ($pluginsfunction as $plugintype => $plugins) {
3194 foreach ($plugins as $pluginfunction) {
3195 $output .= $pluginfunction($this);
3200 return $output;
3204 * Construct a user menu, returning HTML that can be echoed out by a
3205 * layout file.
3207 * @param stdClass $user A user object, usually $USER.
3208 * @param bool $withlinks true if a dropdown should be built.
3209 * @return string HTML fragment.
3211 public function user_menu($user = null, $withlinks = null) {
3212 global $USER, $CFG;
3213 require_once($CFG->dirroot . '/user/lib.php');
3215 if (is_null($user)) {
3216 $user = $USER;
3219 // Note: this behaviour is intended to match that of core_renderer::login_info,
3220 // but should not be considered to be good practice; layout options are
3221 // intended to be theme-specific. Please don't copy this snippet anywhere else.
3222 if (is_null($withlinks)) {
3223 $withlinks = empty($this->page->layout_options['nologinlinks']);
3226 // Add a class for when $withlinks is false.
3227 $usermenuclasses = 'usermenu';
3228 if (!$withlinks) {
3229 $usermenuclasses .= ' withoutlinks';
3232 $returnstr = "";
3234 // If during initial install, return the empty return string.
3235 if (during_initial_install()) {
3236 return $returnstr;
3239 $loginpage = $this->is_login_page();
3240 $loginurl = get_login_url();
3241 // If not logged in, show the typical not-logged-in string.
3242 if (!isloggedin()) {
3243 $returnstr = get_string('loggedinnot', 'moodle');
3244 if (!$loginpage) {
3245 $returnstr .= " (<a href=\"$loginurl\">" . get_string('login') . '</a>)';
3247 return html_writer::div(
3248 html_writer::span(
3249 $returnstr,
3250 'login'
3252 $usermenuclasses
3257 // If logged in as a guest user, show a string to that effect.
3258 if (isguestuser()) {
3259 $returnstr = get_string('loggedinasguest');
3260 if (!$loginpage && $withlinks) {
3261 $returnstr .= " (<a href=\"$loginurl\">".get_string('login').'</a>)';
3264 return html_writer::div(
3265 html_writer::span(
3266 $returnstr,
3267 'login'
3269 $usermenuclasses
3273 // Get some navigation opts.
3274 $opts = user_get_user_navigation_info($user, $this->page);
3276 $avatarclasses = "avatars";
3277 $avatarcontents = html_writer::span($opts->metadata['useravatar'], 'avatar current');
3278 $usertextcontents = $opts->metadata['userfullname'];
3280 // Other user.
3281 if (!empty($opts->metadata['asotheruser'])) {
3282 $avatarcontents .= html_writer::span(
3283 $opts->metadata['realuseravatar'],
3284 'avatar realuser'
3286 $usertextcontents = $opts->metadata['realuserfullname'];
3287 $usertextcontents .= html_writer::tag(
3288 'span',
3289 get_string(
3290 'loggedinas',
3291 'moodle',
3292 html_writer::span(
3293 $opts->metadata['userfullname'],
3294 'value'
3297 array('class' => 'meta viewingas')
3301 // Role.
3302 if (!empty($opts->metadata['asotherrole'])) {
3303 $role = core_text::strtolower(preg_replace('#[ ]+#', '-', trim($opts->metadata['rolename'])));
3304 $usertextcontents .= html_writer::span(
3305 $opts->metadata['rolename'],
3306 'meta role role-' . $role
3310 // User login failures.
3311 if (!empty($opts->metadata['userloginfail'])) {
3312 $usertextcontents .= html_writer::span(
3313 $opts->metadata['userloginfail'],
3314 'meta loginfailures'
3318 // MNet.
3319 if (!empty($opts->metadata['asmnetuser'])) {
3320 $mnet = strtolower(preg_replace('#[ ]+#', '-', trim($opts->metadata['mnetidprovidername'])));
3321 $usertextcontents .= html_writer::span(
3322 $opts->metadata['mnetidprovidername'],
3323 'meta mnet mnet-' . $mnet
3327 $returnstr .= html_writer::span(
3328 html_writer::span($usertextcontents, 'usertext') .
3329 html_writer::span($avatarcontents, $avatarclasses),
3330 'userbutton'
3333 // Create a divider (well, a filler).
3334 $divider = new action_menu_filler();
3335 $divider->primary = false;
3337 $am = new action_menu();
3338 $am->set_menu_trigger(
3339 $returnstr
3341 $am->set_alignment(action_menu::TR, action_menu::BR);
3342 $am->set_nowrap_on_items();
3343 if ($withlinks) {
3344 $navitemcount = count($opts->navitems);
3345 $idx = 0;
3346 foreach ($opts->navitems as $key => $value) {
3348 switch ($value->itemtype) {
3349 case 'divider':
3350 // If the nav item is a divider, add one and skip link processing.
3351 $am->add($divider);
3352 break;
3354 case 'invalid':
3355 // Silently skip invalid entries (should we post a notification?).
3356 break;
3358 case 'link':
3359 // Process this as a link item.
3360 $pix = null;
3361 if (isset($value->pix) && !empty($value->pix)) {
3362 $pix = new pix_icon($value->pix, $value->title, null, array('class' => 'iconsmall'));
3363 } else if (isset($value->imgsrc) && !empty($value->imgsrc)) {
3364 $value->title = html_writer::img(
3365 $value->imgsrc,
3366 $value->title,
3367 array('class' => 'iconsmall')
3368 ) . $value->title;
3371 $al = new action_menu_link_secondary(
3372 $value->url,
3373 $pix,
3374 $value->title,
3375 array('class' => 'icon')
3377 if (!empty($value->titleidentifier)) {
3378 $al->attributes['data-title'] = $value->titleidentifier;
3380 $am->add($al);
3381 break;
3384 $idx++;
3386 // Add dividers after the first item and before the last item.
3387 if ($idx == 1 || $idx == $navitemcount - 1) {
3388 $am->add($divider);
3393 return html_writer::div(
3394 $this->render($am),
3395 $usermenuclasses
3400 * Return the navbar content so that it can be echoed out by the layout
3402 * @return string XHTML navbar
3404 public function navbar() {
3405 $items = $this->page->navbar->get_items();
3406 $itemcount = count($items);
3407 if ($itemcount === 0) {
3408 return '';
3411 $htmlblocks = array();
3412 // Iterate the navarray and display each node
3413 $separator = get_separator();
3414 for ($i=0;$i < $itemcount;$i++) {
3415 $item = $items[$i];
3416 $item->hideicon = true;
3417 if ($i===0) {
3418 $content = html_writer::tag('li', $this->render($item));
3419 } else {
3420 $content = html_writer::tag('li', $separator.$this->render($item));
3422 $htmlblocks[] = $content;
3425 //accessibility: heading for navbar list (MDL-20446)
3426 $navbarcontent = html_writer::tag('span', get_string('pagepath'),
3427 array('class' => 'accesshide', 'id' => 'navbar-label'));
3428 $navbarcontent .= html_writer::tag('nav',
3429 html_writer::tag('ul', join('', $htmlblocks)),
3430 array('aria-labelledby' => 'navbar-label'));
3431 // XHTML
3432 return $navbarcontent;
3436 * Renders a breadcrumb navigation node object.
3438 * @param breadcrumb_navigation_node $item The navigation node to render.
3439 * @return string HTML fragment
3441 protected function render_breadcrumb_navigation_node(breadcrumb_navigation_node $item) {
3443 if ($item->action instanceof moodle_url) {
3444 $content = $item->get_content();
3445 $title = $item->get_title();
3446 $attributes = array();
3447 $attributes['itemprop'] = 'url';
3448 if ($title !== '') {
3449 $attributes['title'] = $title;
3451 if ($item->hidden) {
3452 $attributes['class'] = 'dimmed_text';
3454 $content = html_writer::tag('span', $content, array('itemprop' => 'title'));
3455 $content = html_writer::link($item->action, $content, $attributes);
3457 $attributes = array();
3458 $attributes['itemscope'] = '';
3459 $attributes['itemtype'] = 'http://data-vocabulary.org/Breadcrumb';
3460 $content = html_writer::tag('span', $content, $attributes);
3462 } else {
3463 $content = $this->render_navigation_node($item);
3465 return $content;
3469 * Renders a navigation node object.
3471 * @param navigation_node $item The navigation node to render.
3472 * @return string HTML fragment
3474 protected function render_navigation_node(navigation_node $item) {
3475 $content = $item->get_content();
3476 $title = $item->get_title();
3477 if ($item->icon instanceof renderable && !$item->hideicon) {
3478 $icon = $this->render($item->icon);
3479 $content = $icon.$content; // use CSS for spacing of icons
3481 if ($item->helpbutton !== null) {
3482 $content = trim($item->helpbutton).html_writer::tag('span', $content, array('class'=>'clearhelpbutton', 'tabindex'=>'0'));
3484 if ($content === '') {
3485 return '';
3487 if ($item->action instanceof action_link) {
3488 $link = $item->action;
3489 if ($item->hidden) {
3490 $link->add_class('dimmed');
3492 if (!empty($content)) {
3493 // Providing there is content we will use that for the link content.
3494 $link->text = $content;
3496 $content = $this->render($link);
3497 } else if ($item->action instanceof moodle_url) {
3498 $attributes = array();
3499 if ($title !== '') {
3500 $attributes['title'] = $title;
3502 if ($item->hidden) {
3503 $attributes['class'] = 'dimmed_text';
3505 $content = html_writer::link($item->action, $content, $attributes);
3507 } else if (is_string($item->action) || empty($item->action)) {
3508 $attributes = array('tabindex'=>'0'); //add tab support to span but still maintain character stream sequence.
3509 if ($title !== '') {
3510 $attributes['title'] = $title;
3512 if ($item->hidden) {
3513 $attributes['class'] = 'dimmed_text';
3515 $content = html_writer::tag('span', $content, $attributes);
3517 return $content;
3521 * Accessibility: Right arrow-like character is
3522 * used in the breadcrumb trail, course navigation menu
3523 * (previous/next activity), calendar, and search forum block.
3524 * If the theme does not set characters, appropriate defaults
3525 * are set automatically. Please DO NOT
3526 * use &lt; &gt; &raquo; - these are confusing for blind users.
3528 * @return string
3530 public function rarrow() {
3531 return $this->page->theme->rarrow;
3535 * Accessibility: Left arrow-like character is
3536 * used in the breadcrumb trail, course navigation menu
3537 * (previous/next activity), calendar, and search forum block.
3538 * If the theme does not set characters, appropriate defaults
3539 * are set automatically. Please DO NOT
3540 * use &lt; &gt; &raquo; - these are confusing for blind users.
3542 * @return string
3544 public function larrow() {
3545 return $this->page->theme->larrow;
3549 * Accessibility: Up arrow-like character is used in
3550 * the book heirarchical navigation.
3551 * If the theme does not set characters, appropriate defaults
3552 * are set automatically. Please DO NOT
3553 * use ^ - this is confusing for blind users.
3555 * @return string
3557 public function uarrow() {
3558 return $this->page->theme->uarrow;
3562 * Accessibility: Down arrow-like character.
3563 * If the theme does not set characters, appropriate defaults
3564 * are set automatically.
3566 * @return string
3568 public function darrow() {
3569 return $this->page->theme->darrow;
3573 * Returns the custom menu if one has been set
3575 * A custom menu can be configured by browsing to
3576 * Settings: Administration > Appearance > Themes > Theme settings
3577 * and then configuring the custommenu config setting as described.
3579 * Theme developers: DO NOT OVERRIDE! Please override function
3580 * {@link core_renderer::render_custom_menu()} instead.
3582 * @param string $custommenuitems - custom menuitems set by theme instead of global theme settings
3583 * @return string
3585 public function custom_menu($custommenuitems = '') {
3586 global $CFG;
3587 if (empty($custommenuitems) && !empty($CFG->custommenuitems)) {
3588 $custommenuitems = $CFG->custommenuitems;
3590 if (empty($custommenuitems)) {
3591 return '';
3593 $custommenu = new custom_menu($custommenuitems, current_language());
3594 return $this->render($custommenu);
3598 * Renders a custom menu object (located in outputcomponents.php)
3600 * The custom menu this method produces makes use of the YUI3 menunav widget
3601 * and requires very specific html elements and classes.
3603 * @staticvar int $menucount
3604 * @param custom_menu $menu
3605 * @return string
3607 protected function render_custom_menu(custom_menu $menu) {
3608 static $menucount = 0;
3609 // If the menu has no children return an empty string
3610 if (!$menu->has_children()) {
3611 return '';
3613 // Increment the menu count. This is used for ID's that get worked with
3614 // in JavaScript as is essential
3615 $menucount++;
3616 // Initialise this custom menu (the custom menu object is contained in javascript-static
3617 $jscode = js_writer::function_call_with_Y('M.core_custom_menu.init', array('custom_menu_'.$menucount));
3618 $jscode = "(function(){{$jscode}})";
3619 $this->page->requires->yui_module('node-menunav', $jscode);
3620 // Build the root nodes as required by YUI
3621 $content = html_writer::start_tag('div', array('id'=>'custom_menu_'.$menucount, 'class'=>'yui3-menu yui3-menu-horizontal javascript-disabled custom-menu'));
3622 $content .= html_writer::start_tag('div', array('class'=>'yui3-menu-content'));
3623 $content .= html_writer::start_tag('ul');
3624 // Render each child
3625 foreach ($menu->get_children() as $item) {
3626 $content .= $this->render_custom_menu_item($item);
3628 // Close the open tags
3629 $content .= html_writer::end_tag('ul');
3630 $content .= html_writer::end_tag('div');
3631 $content .= html_writer::end_tag('div');
3632 // Return the custom menu
3633 return $content;
3637 * Renders a custom menu node as part of a submenu
3639 * The custom menu this method produces makes use of the YUI3 menunav widget
3640 * and requires very specific html elements and classes.
3642 * @see core:renderer::render_custom_menu()
3644 * @staticvar int $submenucount
3645 * @param custom_menu_item $menunode
3646 * @return string
3648 protected function render_custom_menu_item(custom_menu_item $menunode) {
3649 // Required to ensure we get unique trackable id's
3650 static $submenucount = 0;
3651 if ($menunode->has_children()) {
3652 // If the child has menus render it as a sub menu
3653 $submenucount++;
3654 $content = html_writer::start_tag('li');
3655 if ($menunode->get_url() !== null) {
3656 $url = $menunode->get_url();
3657 } else {
3658 $url = '#cm_submenu_'.$submenucount;
3660 $content .= html_writer::link($url, $menunode->get_text(), array('class'=>'yui3-menu-label', 'title'=>$menunode->get_title()));
3661 $content .= html_writer::start_tag('div', array('id'=>'cm_submenu_'.$submenucount, 'class'=>'yui3-menu custom_menu_submenu'));
3662 $content .= html_writer::start_tag('div', array('class'=>'yui3-menu-content'));
3663 $content .= html_writer::start_tag('ul');
3664 foreach ($menunode->get_children() as $menunode) {
3665 $content .= $this->render_custom_menu_item($menunode);
3667 $content .= html_writer::end_tag('ul');
3668 $content .= html_writer::end_tag('div');
3669 $content .= html_writer::end_tag('div');
3670 $content .= html_writer::end_tag('li');
3671 } else {
3672 // The node doesn't have children so produce a final menuitem.
3673 // Also, if the node's text matches '####', add a class so we can treat it as a divider.
3674 $content = '';
3675 if (preg_match("/^#+$/", $menunode->get_text())) {
3677 // This is a divider.
3678 $content = html_writer::start_tag('li', array('class' => 'yui3-menuitem divider'));
3679 } else {
3680 $content = html_writer::start_tag(
3681 'li',
3682 array(
3683 'class' => 'yui3-menuitem'
3686 if ($menunode->get_url() !== null) {
3687 $url = $menunode->get_url();
3688 } else {
3689 $url = '#';
3691 $content .= html_writer::link(
3692 $url,
3693 $menunode->get_text(),
3694 array('class' => 'yui3-menuitem-content', 'title' => $menunode->get_title())
3697 $content .= html_writer::end_tag('li');
3699 // Return the sub menu
3700 return $content;
3704 * Renders theme links for switching between default and other themes.
3706 * @return string
3708 protected function theme_switch_links() {
3710 $actualdevice = core_useragent::get_device_type();
3711 $currentdevice = $this->page->devicetypeinuse;
3712 $switched = ($actualdevice != $currentdevice);
3714 if (!$switched && $currentdevice == 'default' && $actualdevice == 'default') {
3715 // The user is using the a default device and hasn't switched so don't shown the switch
3716 // device links.
3717 return '';
3720 if ($switched) {
3721 $linktext = get_string('switchdevicerecommended');
3722 $devicetype = $actualdevice;
3723 } else {
3724 $linktext = get_string('switchdevicedefault');
3725 $devicetype = 'default';
3727 $linkurl = new moodle_url('/theme/switchdevice.php', array('url' => $this->page->url, 'device' => $devicetype, 'sesskey' => sesskey()));
3729 $content = html_writer::start_tag('div', array('id' => 'theme_switch_link'));
3730 $content .= html_writer::link($linkurl, $linktext, array('rel' => 'nofollow'));
3731 $content .= html_writer::end_tag('div');
3733 return $content;
3737 * Renders tabs
3739 * This function replaces print_tabs() used before Moodle 2.5 but with slightly different arguments
3741 * Theme developers: In order to change how tabs are displayed please override functions
3742 * {@link core_renderer::render_tabtree()} and/or {@link core_renderer::render_tabobject()}
3744 * @param array $tabs array of tabs, each of them may have it's own ->subtree
3745 * @param string|null $selected which tab to mark as selected, all parent tabs will
3746 * automatically be marked as activated
3747 * @param array|string|null $inactive list of ids of inactive tabs, regardless of
3748 * their level. Note that you can as weel specify tabobject::$inactive for separate instances
3749 * @return string
3751 public final function tabtree($tabs, $selected = null, $inactive = null) {
3752 return $this->render(new tabtree($tabs, $selected, $inactive));
3756 * Renders tabtree
3758 * @param tabtree $tabtree
3759 * @return string
3761 protected function render_tabtree(tabtree $tabtree) {
3762 if (empty($tabtree->subtree)) {
3763 return '';
3765 $str = '';
3766 $str .= html_writer::start_tag('div', array('class' => 'tabtree'));
3767 $str .= $this->render_tabobject($tabtree);
3768 $str .= html_writer::end_tag('div').
3769 html_writer::tag('div', ' ', array('class' => 'clearer'));
3770 return $str;
3774 * Renders tabobject (part of tabtree)
3776 * This function is called from {@link core_renderer::render_tabtree()}
3777 * and also it calls itself when printing the $tabobject subtree recursively.
3779 * Property $tabobject->level indicates the number of row of tabs.
3781 * @param tabobject $tabobject
3782 * @return string HTML fragment
3784 protected function render_tabobject(tabobject $tabobject) {
3785 $str = '';
3787 // Print name of the current tab.
3788 if ($tabobject instanceof tabtree) {
3789 // No name for tabtree root.
3790 } else if ($tabobject->inactive || $tabobject->activated || ($tabobject->selected && !$tabobject->linkedwhenselected)) {
3791 // Tab name without a link. The <a> tag is used for styling.
3792 $str .= html_writer::tag('a', html_writer::span($tabobject->text), array('class' => 'nolink moodle-has-zindex'));
3793 } else {
3794 // Tab name with a link.
3795 if (!($tabobject->link instanceof moodle_url)) {
3796 // backward compartibility when link was passed as quoted string
3797 $str .= "<a href=\"$tabobject->link\" title=\"$tabobject->title\"><span>$tabobject->text</span></a>";
3798 } else {
3799 $str .= html_writer::link($tabobject->link, html_writer::span($tabobject->text), array('title' => $tabobject->title));
3803 if (empty($tabobject->subtree)) {
3804 if ($tabobject->selected) {
3805 $str .= html_writer::tag('div', '&nbsp;', array('class' => 'tabrow'. ($tabobject->level + 1). ' empty'));
3807 return $str;
3810 // Print subtree.
3811 if ($tabobject->level == 0 || $tabobject->selected || $tabobject->activated) {
3812 $str .= html_writer::start_tag('ul', array('class' => 'tabrow'. $tabobject->level));
3813 $cnt = 0;
3814 foreach ($tabobject->subtree as $tab) {
3815 $liclass = '';
3816 if (!$cnt) {
3817 $liclass .= ' first';
3819 if ($cnt == count($tabobject->subtree) - 1) {
3820 $liclass .= ' last';
3822 if ((empty($tab->subtree)) && (!empty($tab->selected))) {
3823 $liclass .= ' onerow';
3826 if ($tab->selected) {
3827 $liclass .= ' here selected';
3828 } else if ($tab->activated) {
3829 $liclass .= ' here active';
3832 // This will recursively call function render_tabobject() for each item in subtree.
3833 $str .= html_writer::tag('li', $this->render($tab), array('class' => trim($liclass)));
3834 $cnt++;
3836 $str .= html_writer::end_tag('ul');
3839 return $str;
3843 * Get the HTML for blocks in the given region.
3845 * @since Moodle 2.5.1 2.6
3846 * @param string $region The region to get HTML for.
3847 * @return string HTML.
3849 public function blocks($region, $classes = array(), $tag = 'aside') {
3850 $displayregion = $this->page->apply_theme_region_manipulations($region);
3851 $classes = (array)$classes;
3852 $classes[] = 'block-region';
3853 $attributes = array(
3854 'id' => 'block-region-'.preg_replace('#[^a-zA-Z0-9_\-]+#', '-', $displayregion),
3855 'class' => join(' ', $classes),
3856 'data-blockregion' => $displayregion,
3857 'data-droptarget' => '1'
3859 if ($this->page->blocks->region_has_content($displayregion, $this)) {
3860 $content = $this->blocks_for_region($displayregion);
3861 } else {
3862 $content = '';
3864 return html_writer::tag($tag, $content, $attributes);
3868 * Renders a custom block region.
3870 * Use this method if you want to add an additional block region to the content of the page.
3871 * Please note this should only be used in special situations.
3872 * We want to leave the theme is control where ever possible!
3874 * This method must use the same method that the theme uses within its layout file.
3875 * As such it asks the theme what method it is using.
3876 * It can be one of two values, blocks or blocks_for_region (deprecated).
3878 * @param string $regionname The name of the custom region to add.
3879 * @return string HTML for the block region.
3881 public function custom_block_region($regionname) {
3882 if ($this->page->theme->get_block_render_method() === 'blocks') {
3883 return $this->blocks($regionname);
3884 } else {
3885 return $this->blocks_for_region($regionname);
3890 * Returns the CSS classes to apply to the body tag.
3892 * @since Moodle 2.5.1 2.6
3893 * @param array $additionalclasses Any additional classes to apply.
3894 * @return string
3896 public function body_css_classes(array $additionalclasses = array()) {
3897 // Add a class for each block region on the page.
3898 // We use the block manager here because the theme object makes get_string calls.
3899 $usedregions = array();
3900 foreach ($this->page->blocks->get_regions() as $region) {
3901 $additionalclasses[] = 'has-region-'.$region;
3902 if ($this->page->blocks->region_has_content($region, $this)) {
3903 $additionalclasses[] = 'used-region-'.$region;
3904 $usedregions[] = $region;
3905 } else {
3906 $additionalclasses[] = 'empty-region-'.$region;
3908 if ($this->page->blocks->region_completely_docked($region, $this)) {
3909 $additionalclasses[] = 'docked-region-'.$region;
3912 if (!$usedregions) {
3913 // No regions means there is only content, add 'content-only' class.
3914 $additionalclasses[] = 'content-only';
3915 } else if (count($usedregions) === 1) {
3916 // Add the -only class for the only used region.
3917 $region = array_shift($usedregions);
3918 $additionalclasses[] = $region . '-only';
3920 foreach ($this->page->layout_options as $option => $value) {
3921 if ($value) {
3922 $additionalclasses[] = 'layout-option-'.$option;
3925 $css = $this->page->bodyclasses .' '. join(' ', $additionalclasses);
3926 return $css;
3930 * The ID attribute to apply to the body tag.
3932 * @since Moodle 2.5.1 2.6
3933 * @return string
3935 public function body_id() {
3936 return $this->page->bodyid;
3940 * Returns HTML attributes to use within the body tag. This includes an ID and classes.
3942 * @since Moodle 2.5.1 2.6
3943 * @param string|array $additionalclasses Any additional classes to give the body tag,
3944 * @return string
3946 public function body_attributes($additionalclasses = array()) {
3947 if (!is_array($additionalclasses)) {
3948 $additionalclasses = explode(' ', $additionalclasses);
3950 return ' id="'. $this->body_id().'" class="'.$this->body_css_classes($additionalclasses).'"';
3954 * Gets HTML for the page heading.
3956 * @since Moodle 2.5.1 2.6
3957 * @param string $tag The tag to encase the heading in. h1 by default.
3958 * @return string HTML.
3960 public function page_heading($tag = 'h1') {
3961 return html_writer::tag($tag, $this->page->heading);
3965 * Gets the HTML for the page heading button.
3967 * @since Moodle 2.5.1 2.6
3968 * @return string HTML.
3970 public function page_heading_button() {
3971 return $this->page->button;
3975 * Returns the Moodle docs link to use for this page.
3977 * @since Moodle 2.5.1 2.6
3978 * @param string $text
3979 * @return string
3981 public function page_doc_link($text = null) {
3982 if ($text === null) {
3983 $text = get_string('moodledocslink');
3985 $path = page_get_doc_link_path($this->page);
3986 if (!$path) {
3987 return '';
3989 return $this->doc_link($path, $text);
3993 * Returns the page heading menu.
3995 * @since Moodle 2.5.1 2.6
3996 * @return string HTML.
3998 public function page_heading_menu() {
3999 return $this->page->headingmenu;
4003 * Returns the title to use on the page.
4005 * @since Moodle 2.5.1 2.6
4006 * @return string
4008 public function page_title() {
4009 return $this->page->title;
4013 * Returns the URL for the favicon.
4015 * @since Moodle 2.5.1 2.6
4016 * @return string The favicon URL
4018 public function favicon() {
4019 return $this->image_url('favicon', 'theme');
4023 * Renders preferences groups.
4025 * @param preferences_groups $renderable The renderable
4026 * @return string The output.
4028 public function render_preferences_groups(preferences_groups $renderable) {
4029 $html = '';
4030 $html .= html_writer::start_div('row-fluid');
4031 $html .= html_writer::start_tag('div', array('class' => 'span12 preferences-groups'));
4032 $i = 0;
4033 $open = false;
4034 foreach ($renderable->groups as $group) {
4035 if ($i == 0 || $i % 3 == 0) {
4036 if ($open) {
4037 $html .= html_writer::end_tag('div');
4039 $html .= html_writer::start_tag('div', array('class' => 'row-fluid'));
4040 $open = true;
4042 $html .= $this->render($group);
4043 $i++;
4046 $html .= html_writer::end_tag('div');
4048 $html .= html_writer::end_tag('ul');
4049 $html .= html_writer::end_tag('div');
4050 $html .= html_writer::end_div();
4051 return $html;
4055 * Renders preferences group.
4057 * @param preferences_group $renderable The renderable
4058 * @return string The output.
4060 public function render_preferences_group(preferences_group $renderable) {
4061 $html = '';
4062 $html .= html_writer::start_tag('div', array('class' => 'span4 preferences-group'));
4063 $html .= $this->heading($renderable->title, 3);
4064 $html .= html_writer::start_tag('ul');
4065 foreach ($renderable->nodes as $node) {
4066 if ($node->has_children()) {
4067 debugging('Preferences nodes do not support children', DEBUG_DEVELOPER);
4069 $html .= html_writer::tag('li', $this->render($node));
4071 $html .= html_writer::end_tag('ul');
4072 $html .= html_writer::end_tag('div');
4073 return $html;
4076 public function context_header($headerinfo = null, $headinglevel = 1) {
4077 global $DB, $USER, $CFG;
4078 require_once($CFG->dirroot . '/user/lib.php');
4079 $context = $this->page->context;
4080 $heading = null;
4081 $imagedata = null;
4082 $subheader = null;
4083 $userbuttons = null;
4084 // Make sure to use the heading if it has been set.
4085 if (isset($headerinfo['heading'])) {
4086 $heading = $headerinfo['heading'];
4088 // The user context currently has images and buttons. Other contexts may follow.
4089 if (isset($headerinfo['user']) || $context->contextlevel == CONTEXT_USER) {
4090 if (isset($headerinfo['user'])) {
4091 $user = $headerinfo['user'];
4092 } else {
4093 // Look up the user information if it is not supplied.
4094 $user = $DB->get_record('user', array('id' => $context->instanceid));
4097 // If the user context is set, then use that for capability checks.
4098 if (isset($headerinfo['usercontext'])) {
4099 $context = $headerinfo['usercontext'];
4102 // Only provide user information if the user is the current user, or a user which the current user can view.
4103 $canviewdetails = false;
4104 if ($user->id == $USER->id || user_can_view_profile($user)) {
4105 $canviewdetails = true;
4108 if ($canviewdetails) {
4109 // Use the user's full name if the heading isn't set.
4110 if (!isset($heading)) {
4111 $heading = fullname($user);
4114 $imagedata = $this->user_picture($user, array('size' => 100));
4116 // Check to see if we should be displaying a message button.
4117 if (!empty($CFG->messaging) && $USER->id != $user->id && has_capability('moodle/site:sendmessage', $context)) {
4118 $iscontact = !empty(message_get_contact($user->id));
4119 $contacttitle = $iscontact ? 'removefromyourcontacts' : 'addtoyourcontacts';
4120 $contacturlaction = $iscontact ? 'removecontact' : 'addcontact';
4121 $contactimage = $iscontact ? 'removecontact' : 'addcontact';
4122 $userbuttons = array(
4123 'messages' => array(
4124 'buttontype' => 'message',
4125 'title' => get_string('message', 'message'),
4126 'url' => new moodle_url('/message/index.php', array('id' => $user->id)),
4127 'image' => 'message',
4128 'linkattributes' => array('role' => 'button'),
4129 'page' => $this->page
4131 'togglecontact' => array(
4132 'buttontype' => 'togglecontact',
4133 'title' => get_string($contacttitle, 'message'),
4134 'url' => new moodle_url('/message/index.php', array(
4135 'user1' => $USER->id,
4136 'user2' => $user->id,
4137 $contacturlaction => $user->id,
4138 'sesskey' => sesskey())
4140 'image' => $contactimage,
4141 'linkattributes' => \core_message\helper::togglecontact_link_params($user, $iscontact),
4142 'page' => $this->page
4146 $this->page->requires->string_for_js('changesmadereallygoaway', 'moodle');
4148 } else {
4149 $heading = null;
4153 $contextheader = new context_header($heading, $headinglevel, $imagedata, $userbuttons);
4154 return $this->render_context_header($contextheader);
4158 * Renders the skip links for the page.
4160 * @param array $links List of skip links.
4161 * @return string HTML for the skip links.
4163 public function render_skip_links($links) {
4164 $context = [ 'links' => []];
4166 foreach ($links as $url => $text) {
4167 $context['links'][] = [ 'url' => $url, 'text' => $text];
4170 return $this->render_from_template('core/skip_links', $context);
4174 * Renders the header bar.
4176 * @param context_header $contextheader Header bar object.
4177 * @return string HTML for the header bar.
4179 protected function render_context_header(context_header $contextheader) {
4181 // All the html stuff goes here.
4182 $html = html_writer::start_div('page-context-header');
4184 // Image data.
4185 if (isset($contextheader->imagedata)) {
4186 // Header specific image.
4187 $html .= html_writer::div($contextheader->imagedata, 'page-header-image');
4190 // Headings.
4191 if (!isset($contextheader->heading)) {
4192 $headings = $this->heading($this->page->heading, $contextheader->headinglevel);
4193 } else {
4194 $headings = $this->heading($contextheader->heading, $contextheader->headinglevel);
4197 $html .= html_writer::tag('div', $headings, array('class' => 'page-header-headings'));
4199 // Buttons.
4200 if (isset($contextheader->additionalbuttons)) {
4201 $html .= html_writer::start_div('btn-group header-button-group');
4202 foreach ($contextheader->additionalbuttons as $button) {
4203 if (!isset($button->page)) {
4204 // Include js for messaging.
4205 if ($button['buttontype'] === 'togglecontact') {
4206 \core_message\helper::togglecontact_requirejs();
4208 $image = $this->pix_icon($button['formattedimage'], $button['title'], 'moodle', array(
4209 'class' => 'iconsmall',
4210 'role' => 'presentation'
4212 $image .= html_writer::span($button['title'], 'header-button-title');
4213 } else {
4214 $image = html_writer::empty_tag('img', array(
4215 'src' => $button['formattedimage'],
4216 'role' => 'presentation'
4219 $html .= html_writer::link($button['url'], html_writer::tag('span', $image), $button['linkattributes']);
4221 $html .= html_writer::end_div();
4223 $html .= html_writer::end_div();
4225 return $html;
4229 * Wrapper for header elements.
4231 * @return string HTML to display the main header.
4233 public function full_header() {
4234 $html = html_writer::start_tag('header', array('id' => 'page-header', 'class' => 'clearfix'));
4235 $html .= $this->context_header();
4236 $html .= html_writer::start_div('clearfix', array('id' => 'page-navbar'));
4237 $html .= html_writer::tag('div', $this->navbar(), array('class' => 'breadcrumb-nav'));
4238 $html .= html_writer::div($this->page_heading_button(), 'breadcrumb-button');
4239 $html .= html_writer::end_div();
4240 $html .= html_writer::tag('div', $this->course_header(), array('id' => 'course-header'));
4241 $html .= html_writer::end_tag('header');
4242 return $html;
4246 * Displays the list of tags associated with an entry
4248 * @param array $tags list of instances of core_tag or stdClass
4249 * @param string $label label to display in front, by default 'Tags' (get_string('tags')), set to null
4250 * to use default, set to '' (empty string) to omit the label completely
4251 * @param string $classes additional classes for the enclosing div element
4252 * @param int $limit limit the number of tags to display, if size of $tags is more than this limit the "more" link
4253 * will be appended to the end, JS will toggle the rest of the tags
4254 * @param context $pagecontext specify if needed to overwrite the current page context for the view tag link
4255 * @return string
4257 public function tag_list($tags, $label = null, $classes = '', $limit = 10, $pagecontext = null) {
4258 $list = new \core_tag\output\taglist($tags, $label, $classes, $limit, $pagecontext);
4259 return $this->render_from_template('core_tag/taglist', $list->export_for_template($this));
4263 * Renders element for inline editing of any value
4265 * @param \core\output\inplace_editable $element
4266 * @return string
4268 public function render_inplace_editable(\core\output\inplace_editable $element) {
4269 return $this->render_from_template('core/inplace_editable', $element->export_for_template($this));
4273 * Renders a bar chart.
4275 * @param \core\chart_bar $chart The chart.
4276 * @return string.
4278 public function render_chart_bar(\core\chart_bar $chart) {
4279 return $this->render_chart($chart);
4283 * Renders a line chart.
4285 * @param \core\chart_line $chart The chart.
4286 * @return string.
4288 public function render_chart_line(\core\chart_line $chart) {
4289 return $this->render_chart($chart);
4293 * Renders a pie chart.
4295 * @param \core\chart_pie $chart The chart.
4296 * @return string.
4298 public function render_chart_pie(\core\chart_pie $chart) {
4299 return $this->render_chart($chart);
4303 * Renders a chart.
4305 * @param \core\chart_base $chart The chart.
4306 * @param bool $withtable Whether to include a data table with the chart.
4307 * @return string.
4309 public function render_chart(\core\chart_base $chart, $withtable = true) {
4310 $chartdata = json_encode($chart);
4311 return $this->render_from_template('core/chart', (object) [
4312 'chartdata' => $chartdata,
4313 'withtable' => $withtable
4318 * Renders the login form.
4320 * @param \core_auth\output\login $form The renderable.
4321 * @return string
4323 public function render_login(\core_auth\output\login $form) {
4324 $context = $form->export_for_template($this);
4326 // Override because rendering is not supported in template yet.
4327 $context->cookieshelpiconformatted = $this->help_icon('cookiesenabled');
4328 $context->errorformatted = $this->error_text($context->error);
4330 return $this->render_from_template('core/loginform', $context);
4334 * Renders an mform element from a template.
4336 * @param HTML_QuickForm_element $element element
4337 * @param bool $required if input is required field
4338 * @param bool $advanced if input is an advanced field
4339 * @param string $error error message to display
4340 * @param bool $ingroup True if this element is rendered as part of a group
4341 * @return mixed string|bool
4343 public function mform_element($element, $required, $advanced, $error, $ingroup) {
4344 $templatename = 'core_form/element-' . $element->getType();
4345 if ($ingroup) {
4346 $templatename .= "-inline";
4348 try {
4349 // We call this to generate a file not found exception if there is no template.
4350 // We don't want to call export_for_template if there is no template.
4351 core\output\mustache_template_finder::get_template_filepath($templatename);
4353 if ($element instanceof templatable) {
4354 $elementcontext = $element->export_for_template($this);
4356 $helpbutton = '';
4357 if (method_exists($element, 'getHelpButton')) {
4358 $helpbutton = $element->getHelpButton();
4360 $label = $element->getLabel();
4361 $text = '';
4362 if (method_exists($element, 'getText')) {
4363 // There currently exists code that adds a form element with an empty label.
4364 // If this is the case then set the label to the description.
4365 if (empty($label)) {
4366 $label = $element->getText();
4367 } else {
4368 $text = $element->getText();
4372 $context = array(
4373 'element' => $elementcontext,
4374 'label' => $label,
4375 'text' => $text,
4376 'required' => $required,
4377 'advanced' => $advanced,
4378 'helpbutton' => $helpbutton,
4379 'error' => $error
4381 return $this->render_from_template($templatename, $context);
4383 } catch (Exception $e) {
4384 // No template for this element.
4385 return false;
4390 * Render the login signup form into a nice template for the theme.
4392 * @param mform $form
4393 * @return string
4395 public function render_login_signup_form($form) {
4396 $context = $form->export_for_template($this);
4398 return $this->render_from_template('core/signup_form_layout', $context);
4402 * Renders a progress bar.
4404 * Do not use $OUTPUT->render($bar), instead use progress_bar::create().
4406 * @param progress_bar $bar The bar.
4407 * @return string HTML fragment
4409 public function render_progress_bar(progress_bar $bar) {
4410 global $PAGE;
4411 $data = $bar->export_for_template($this);
4412 return $this->render_from_template('core/progress_bar', $data);
4417 * A renderer that generates output for command-line scripts.
4419 * The implementation of this renderer is probably incomplete.
4421 * @copyright 2009 Tim Hunt
4422 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4423 * @since Moodle 2.0
4424 * @package core
4425 * @category output
4427 class core_renderer_cli extends core_renderer {
4430 * Returns the page header.
4432 * @return string HTML fragment
4434 public function header() {
4435 return $this->page->heading . "\n";
4439 * Returns a template fragment representing a Heading.
4441 * @param string $text The text of the heading
4442 * @param int $level The level of importance of the heading
4443 * @param string $classes A space-separated list of CSS classes
4444 * @param string $id An optional ID
4445 * @return string A template fragment for a heading
4447 public function heading($text, $level = 2, $classes = 'main', $id = null) {
4448 $text .= "\n";
4449 switch ($level) {
4450 case 1:
4451 return '=>' . $text;
4452 case 2:
4453 return '-->' . $text;
4454 default:
4455 return $text;
4460 * Returns a template fragment representing a fatal error.
4462 * @param string $message The message to output
4463 * @param string $moreinfourl URL where more info can be found about the error
4464 * @param string $link Link for the Continue button
4465 * @param array $backtrace The execution backtrace
4466 * @param string $debuginfo Debugging information
4467 * @return string A template fragment for a fatal error
4469 public function fatal_error($message, $moreinfourl, $link, $backtrace, $debuginfo = null, $errorcode = "") {
4470 global $CFG;
4472 $output = "!!! $message !!!\n";
4474 if ($CFG->debugdeveloper) {
4475 if (!empty($debuginfo)) {
4476 $output .= $this->notification($debuginfo, 'notifytiny');
4478 if (!empty($backtrace)) {
4479 $output .= $this->notification('Stack trace: ' . format_backtrace($backtrace, true), 'notifytiny');
4483 return $output;
4487 * Returns a template fragment representing a notification.
4489 * @param string $message The message to print out.
4490 * @param string $type The type of notification. See constants on \core\output\notification.
4491 * @return string A template fragment for a notification
4493 public function notification($message, $type = null) {
4494 $message = clean_text($message);
4495 if ($type === 'notifysuccess' || $type === 'success') {
4496 return "++ $message ++\n";
4498 return "!! $message !!\n";
4502 * There is no footer for a cli request, however we must override the
4503 * footer method to prevent the default footer.
4505 public function footer() {}
4508 * Render a notification (that is, a status message about something that has
4509 * just happened).
4511 * @param \core\output\notification $notification the notification to print out
4512 * @return string plain text output
4514 public function render_notification(\core\output\notification $notification) {
4515 return $this->notification($notification->get_message(), $notification->get_message_type());
4521 * A renderer that generates output for ajax scripts.
4523 * This renderer prevents accidental sends back only json
4524 * encoded error messages, all other output is ignored.
4526 * @copyright 2010 Petr Skoda
4527 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4528 * @since Moodle 2.0
4529 * @package core
4530 * @category output
4532 class core_renderer_ajax extends core_renderer {
4535 * Returns a template fragment representing a fatal error.
4537 * @param string $message The message to output
4538 * @param string $moreinfourl URL where more info can be found about the error
4539 * @param string $link Link for the Continue button
4540 * @param array $backtrace The execution backtrace
4541 * @param string $debuginfo Debugging information
4542 * @return string A template fragment for a fatal error
4544 public function fatal_error($message, $moreinfourl, $link, $backtrace, $debuginfo = null, $errorcode = "") {
4545 global $CFG;
4547 $this->page->set_context(null); // ugly hack - make sure page context is set to something, we do not want bogus warnings here
4549 $e = new stdClass();
4550 $e->error = $message;
4551 $e->errorcode = $errorcode;
4552 $e->stacktrace = NULL;
4553 $e->debuginfo = NULL;
4554 $e->reproductionlink = NULL;
4555 if (!empty($CFG->debug) and $CFG->debug >= DEBUG_DEVELOPER) {
4556 $link = (string) $link;
4557 if ($link) {
4558 $e->reproductionlink = $link;
4560 if (!empty($debuginfo)) {
4561 $e->debuginfo = $debuginfo;
4563 if (!empty($backtrace)) {
4564 $e->stacktrace = format_backtrace($backtrace, true);
4567 $this->header();
4568 return json_encode($e);
4572 * Used to display a notification.
4573 * For the AJAX notifications are discarded.
4575 * @param string $message The message to print out.
4576 * @param string $type The type of notification. See constants on \core\output\notification.
4578 public function notification($message, $type = null) {}
4581 * Used to display a redirection message.
4582 * AJAX redirections should not occur and as such redirection messages
4583 * are discarded.
4585 * @param moodle_url|string $encodedurl
4586 * @param string $message
4587 * @param int $delay
4588 * @param bool $debugdisableredirect
4589 * @param string $messagetype The type of notification to show the message in.
4590 * See constants on \core\output\notification.
4592 public function redirect_message($encodedurl, $message, $delay, $debugdisableredirect,
4593 $messagetype = \core\output\notification::NOTIFY_INFO) {}
4596 * Prepares the start of an AJAX output.
4598 public function header() {
4599 // unfortunately YUI iframe upload does not support application/json
4600 if (!empty($_FILES)) {
4601 @header('Content-type: text/plain; charset=utf-8');
4602 if (!core_useragent::supports_json_contenttype()) {
4603 @header('X-Content-Type-Options: nosniff');
4605 } else if (!core_useragent::supports_json_contenttype()) {
4606 @header('Content-type: text/plain; charset=utf-8');
4607 @header('X-Content-Type-Options: nosniff');
4608 } else {
4609 @header('Content-type: application/json; charset=utf-8');
4612 // Headers to make it not cacheable and json
4613 @header('Cache-Control: no-store, no-cache, must-revalidate');
4614 @header('Cache-Control: post-check=0, pre-check=0', false);
4615 @header('Pragma: no-cache');
4616 @header('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
4617 @header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
4618 @header('Accept-Ranges: none');
4622 * There is no footer for an AJAX request, however we must override the
4623 * footer method to prevent the default footer.
4625 public function footer() {}
4628 * No need for headers in an AJAX request... this should never happen.
4629 * @param string $text
4630 * @param int $level
4631 * @param string $classes
4632 * @param string $id
4634 public function heading($text, $level = 2, $classes = 'main', $id = null) {}
4639 * Renderer for media files.
4641 * Used in file resources, media filter, and any other places that need to
4642 * output embedded media.
4644 * @deprecated since Moodle 3.2
4645 * @copyright 2011 The Open University
4646 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4648 class core_media_renderer extends plugin_renderer_base {
4649 /** @var array Array of available 'player' objects */
4650 private $players;
4651 /** @var string Regex pattern for links which may contain embeddable content */
4652 private $embeddablemarkers;
4655 * Constructor
4657 * This is needed in the constructor (not later) so that you can use the
4658 * constants and static functions that are defined in core_media class
4659 * before you call renderer functions.
4661 public function __construct() {
4662 debugging('Class core_media_renderer is deprecated, please use core_media_manager::instance()', DEBUG_DEVELOPER);
4666 * Renders a media file (audio or video) using suitable embedded player.
4668 * See embed_alternatives function for full description of parameters.
4669 * This function calls through to that one.
4671 * When using this function you can also specify width and height in the
4672 * URL by including ?d=100x100 at the end. If specified in the URL, this
4673 * will override the $width and $height parameters.
4675 * @param moodle_url $url Full URL of media file
4676 * @param string $name Optional user-readable name to display in download link
4677 * @param int $width Width in pixels (optional)
4678 * @param int $height Height in pixels (optional)
4679 * @param array $options Array of key/value pairs
4680 * @return string HTML content of embed
4682 public function embed_url(moodle_url $url, $name = '', $width = 0, $height = 0,
4683 $options = array()) {
4684 return core_media_manager::instance()->embed_url($url, $name, $width, $height, $options);
4688 * Renders media files (audio or video) using suitable embedded player.
4689 * The list of URLs should be alternative versions of the same content in
4690 * multiple formats. If there is only one format it should have a single
4691 * entry.
4693 * If the media files are not in a supported format, this will give students
4694 * a download link to each format. The download link uses the filename
4695 * unless you supply the optional name parameter.
4697 * Width and height are optional. If specified, these are suggested sizes
4698 * and should be the exact values supplied by the user, if they come from
4699 * user input. These will be treated as relating to the size of the video
4700 * content, not including any player control bar.
4702 * For audio files, height will be ignored. For video files, a few formats
4703 * work if you specify only width, but in general if you specify width
4704 * you must specify height as well.
4706 * The $options array is passed through to the core_media_player classes
4707 * that render the object tag. The keys can contain values from
4708 * core_media::OPTION_xx.
4710 * @param array $alternatives Array of moodle_url to media files
4711 * @param string $name Optional user-readable name to display in download link
4712 * @param int $width Width in pixels (optional)
4713 * @param int $height Height in pixels (optional)
4714 * @param array $options Array of key/value pairs
4715 * @return string HTML content of embed
4717 public function embed_alternatives($alternatives, $name = '', $width = 0, $height = 0,
4718 $options = array()) {
4719 return core_media_manager::instance()->embed_alternatives($alternatives, $name, $width, $height, $options);
4723 * Checks whether a file can be embedded. If this returns true you will get
4724 * an embedded player; if this returns false, you will just get a download
4725 * link.
4727 * This is a wrapper for can_embed_urls.
4729 * @param moodle_url $url URL of media file
4730 * @param array $options Options (same as when embedding)
4731 * @return bool True if file can be embedded
4733 public function can_embed_url(moodle_url $url, $options = array()) {
4734 return core_media_manager::instance()->can_embed_url($url, $options);
4738 * Checks whether a file can be embedded. If this returns true you will get
4739 * an embedded player; if this returns false, you will just get a download
4740 * link.
4742 * @param array $urls URL of media file and any alternatives (moodle_url)
4743 * @param array $options Options (same as when embedding)
4744 * @return bool True if file can be embedded
4746 public function can_embed_urls(array $urls, $options = array()) {
4747 return core_media_manager::instance()->can_embed_urls($urls, $options);
4751 * Obtains a list of markers that can be used in a regular expression when
4752 * searching for URLs that can be embedded by any player type.
4754 * This string is used to improve peformance of regex matching by ensuring
4755 * that the (presumably C) regex code can do a quick keyword check on the
4756 * URL part of a link to see if it matches one of these, rather than having
4757 * to go into PHP code for every single link to see if it can be embedded.
4759 * @return string String suitable for use in regex such as '(\.mp4|\.flv)'
4761 public function get_embeddable_markers() {
4762 return core_media_manager::instance()->get_embeddable_markers();
4767 * The maintenance renderer.
4769 * The purpose of this renderer is to block out the core renderer methods that are not usable when the site
4770 * is running a maintenance related task.
4771 * It must always extend the core_renderer as we switch from the core_renderer to this renderer in a couple of places.
4773 * @since Moodle 2.6
4774 * @package core
4775 * @category output
4776 * @copyright 2013 Sam Hemelryk
4777 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4779 class core_renderer_maintenance extends core_renderer {
4782 * Initialises the renderer instance.
4783 * @param moodle_page $page
4784 * @param string $target
4785 * @throws coding_exception
4787 public function __construct(moodle_page $page, $target) {
4788 if ($target !== RENDERER_TARGET_MAINTENANCE || $page->pagelayout !== 'maintenance') {
4789 throw new coding_exception('Invalid request for the maintenance renderer.');
4791 parent::__construct($page, $target);
4795 * Does nothing. The maintenance renderer cannot produce blocks.
4797 * @param block_contents $bc
4798 * @param string $region
4799 * @return string
4801 public function block(block_contents $bc, $region) {
4802 // Computer says no blocks.
4803 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4804 return '';
4808 * Does nothing. The maintenance renderer cannot produce blocks.
4810 * @param string $region
4811 * @param array $classes
4812 * @param string $tag
4813 * @return string
4815 public function blocks($region, $classes = array(), $tag = 'aside') {
4816 // Computer says no blocks.
4817 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4818 return '';
4822 * Does nothing. The maintenance renderer cannot produce blocks.
4824 * @param string $region
4825 * @return string
4827 public function blocks_for_region($region) {
4828 // Computer says no blocks for region.
4829 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4830 return '';
4834 * Does nothing. The maintenance renderer cannot produce a course content header.
4836 * @param bool $onlyifnotcalledbefore
4837 * @return string
4839 public function course_content_header($onlyifnotcalledbefore = false) {
4840 // Computer says no course content header.
4841 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4842 return '';
4846 * Does nothing. The maintenance renderer cannot produce a course content footer.
4848 * @param bool $onlyifnotcalledbefore
4849 * @return string
4851 public function course_content_footer($onlyifnotcalledbefore = false) {
4852 // Computer says no course content footer.
4853 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4854 return '';
4858 * Does nothing. The maintenance renderer cannot produce a course header.
4860 * @return string
4862 public function course_header() {
4863 // Computer says no course header.
4864 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4865 return '';
4869 * Does nothing. The maintenance renderer cannot produce a course footer.
4871 * @return string
4873 public function course_footer() {
4874 // Computer says no course footer.
4875 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4876 return '';
4880 * Does nothing. The maintenance renderer cannot produce a custom menu.
4882 * @param string $custommenuitems
4883 * @return string
4885 public function custom_menu($custommenuitems = '') {
4886 // Computer says no custom menu.
4887 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4888 return '';
4892 * Does nothing. The maintenance renderer cannot produce a file picker.
4894 * @param array $options
4895 * @return string
4897 public function file_picker($options) {
4898 // Computer says no file picker.
4899 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4900 return '';
4904 * Does nothing. The maintenance renderer cannot produce and HTML file tree.
4906 * @param array $dir
4907 * @return string
4909 public function htmllize_file_tree($dir) {
4910 // Hell no we don't want no htmllized file tree.
4911 // Also why on earth is this function on the core renderer???
4912 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4913 return '';
4918 * Overridden confirm message for upgrades.
4920 * @param string $message The question to ask the user
4921 * @param single_button|moodle_url|string $continue The single_button component representing the Continue answer.
4922 * @param single_button|moodle_url|string $cancel The single_button component representing the Cancel answer.
4923 * @return string HTML fragment
4925 public function confirm($message, $continue, $cancel) {
4926 // We need plain styling of confirm boxes on upgrade because we don't know which stylesheet we have (it could be
4927 // from any previous version of Moodle).
4928 if ($continue instanceof single_button) {
4929 $continue->primary = true;
4930 } else if (is_string($continue)) {
4931 $continue = new single_button(new moodle_url($continue), get_string('continue'), 'post', true);
4932 } else if ($continue instanceof moodle_url) {
4933 $continue = new single_button($continue, get_string('continue'), 'post', true);
4934 } else {
4935 throw new coding_exception('The continue param to $OUTPUT->confirm() must be either a URL' .
4936 ' (string/moodle_url) or a single_button instance.');
4939 if ($cancel instanceof single_button) {
4940 $output = '';
4941 } else if (is_string($cancel)) {
4942 $cancel = new single_button(new moodle_url($cancel), get_string('cancel'), 'get');
4943 } else if ($cancel instanceof moodle_url) {
4944 $cancel = new single_button($cancel, get_string('cancel'), 'get');
4945 } else {
4946 throw new coding_exception('The cancel param to $OUTPUT->confirm() must be either a URL' .
4947 ' (string/moodle_url) or a single_button instance.');
4950 $output = $this->box_start('generalbox', 'notice');
4951 $output .= html_writer::tag('h4', get_string('confirm'));
4952 $output .= html_writer::tag('p', $message);
4953 $output .= html_writer::tag('div', $this->render($continue) . $this->render($cancel), array('class' => 'buttons'));
4954 $output .= $this->box_end();
4955 return $output;
4959 * Does nothing. The maintenance renderer does not support JS.
4961 * @param block_contents $bc
4963 public function init_block_hider_js(block_contents $bc) {
4964 // Computer says no JavaScript.
4965 // Do nothing, ridiculous method.
4969 * Does nothing. The maintenance renderer cannot produce language menus.
4971 * @return string
4973 public function lang_menu() {
4974 // Computer says no lang menu.
4975 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4976 return '';
4980 * Does nothing. The maintenance renderer has no need for login information.
4982 * @param null $withlinks
4983 * @return string
4985 public function login_info($withlinks = null) {
4986 // Computer says no login info.
4987 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
4988 return '';
4992 * Does nothing. The maintenance renderer cannot produce user pictures.
4994 * @param stdClass $user
4995 * @param array $options
4996 * @return string
4998 public function user_picture(stdClass $user, array $options = null) {
4999 // Computer says no user pictures.
5000 // debugging('Please do not use $OUTPUT->'.__FUNCTION__.'() when performing maintenance tasks.', DEBUG_DEVELOPER);
5001 return '';