3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Classes for rendering HTML output for Moodle.
21 * Please see http://docs.moodle.org/en/Developement:How_Moodle_outputs_HTML
25 * @copyright 2009 Tim Hunt
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30 * Simple base class for Moodle renderers.
32 * Tracks the xhtml_container_stack to use, which is passed in in the constructor.
34 * Also has methods to facilitate generating HTML output.
36 * @copyright 2009 Tim Hunt
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41 /** @var xhtml_container_stack the xhtml_container_stack to use. */
42 protected $opencontainers;
43 /** @var moodle_page the page we are rendering for. */
45 /** @var requested rendering target conatnt */
50 * @param moodle_page $page the page we are doing output for.
51 * @param string $target one of rendering target constants
53 public function __construct(moodle_page $page, $target) {
54 $this->opencontainers = $page->opencontainers;
56 $this->target = $target;
60 * Returns rendered widget.
61 * @param renderable $widget intence with renderable interface
64 public function render(renderable $widget) {
65 $rendermethod = 'render_'.get_class($widget);
66 if (method_exists($this, $rendermethod)) {
67 return $this->$rendermethod($widget);
69 throw new coding_exception('Can not render widget, renderer method ('.$rendermethod.') not found.');
73 * Adds JS handlers needed for event execution for one html element id
74 * @param component_action $actions
76 * @return string id of element, either original submitted or random new if not supplied
78 public function add_action_handler(component_action $action, $id=null) {
80 $id = html_writer::random_id($action->event);
82 $this->page->requires->event_handler("#$id", $action->event, $action->jsfunction, $action->jsfunctionargs);
87 * Have we started output yet?
88 * @return boolean true if the header has been printed.
90 public function has_started() {
91 return $this->page->state >= moodle_page::STATE_IN_BODY;
95 * Given an array or space-separated list of classes, prepares and returns the HTML class attribute value
96 * @param mixed $classes Space-separated string or array of classes
97 * @return string HTML class attribute value
99 public static function prepare_classes($classes) {
100 if (is_array($classes)) {
101 return implode(' ', array_unique($classes));
107 * Return the moodle_url for an image.
108 * The exact image location and extension is determined
109 * automatically by searching for gif|png|jpg|jpeg, please
110 * note there can not be diferent images with the different
111 * extension. The imagename is for historical reasons
112 * a relative path name, it may be changed later for core
113 * images. It is recommended to not use subdirectories
114 * in plugin and theme pix directories.
116 * There are three types of images:
117 * 1/ theme images - stored in theme/mytheme/pix/,
118 * use component 'theme'
119 * 2/ core images - stored in /pix/,
120 * overridden via theme/mytheme/pix_core/
121 * 3/ plugin images - stored in mod/mymodule/pix,
122 * overridden via theme/mytheme/pix_plugins/mod/mymodule/,
123 * example: pix_url('comment', 'mod_glossary')
125 * @param string $imagename the pathname of the image
126 * @param string $component full plugin name (aka component) or 'theme'
129 public function pix_url($imagename, $component = 'moodle') {
130 return $this->page->theme->pix_url($imagename, $component);
136 * Basis for all plugin renderers.
138 * @author Petr Skoda (skodak)
139 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
142 class plugin_renderer_base extends renderer_base {
144 * A reference to the current general renderer probably {@see core_renderer}
150 * Contructor method, calls the parent constructor
151 * @param moodle_page $page
152 * @param string $target one of rendering target constants
154 public function __construct(moodle_page $page, $target) {
155 $this->output = $page->get_renderer('core', null, $target);
156 parent::__construct($page, $target);
160 * Returns rendered widget.
161 * @param renderable $widget intence with renderable interface
164 public function render(renderable $widget) {
165 $rendermethod = 'render_'.get_class($widget);
166 if (method_exists($this, $rendermethod)) {
167 return $this->$rendermethod($widget);
169 // pass to core renderer if method not found here
170 $this->output->render($widget);
174 * Magic method used to pass calls otherwise meant for the standard renderer
175 * to it to ensure we don't go causing unnessecary greif.
177 * @param string $method
178 * @param array $arguments
181 public function __call($method, $arguments) {
182 if (method_exists('renderer_base', $method)) {
183 throw new coding_exception('Protected method called against '.__CLASS__.' :: '.$method);
185 if (method_exists($this->output, $method)) {
186 return call_user_func_array(array($this->output, $method), $arguments);
188 throw new coding_exception('Unknown method called against '.__CLASS__.' :: '.$method);
195 * The standard implementation of the core_renderer interface.
197 * @copyright 2009 Tim Hunt
198 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
201 class core_renderer extends renderer_base {
202 /** @var string used in {@link header()}. */
203 const PERFORMANCE_INFO_TOKEN = '%%PERFORMANCEINFO%%';
204 /** @var string used in {@link header()}. */
205 const END_HTML_TOKEN = '%%ENDHTML%%';
206 /** @var string used in {@link header()}. */
207 const MAIN_CONTENT_TOKEN = '[MAIN CONTENT GOES HERE]';
208 /** @var string used to pass information from {@link doctype()} to {@link standard_head_html()}. */
209 protected $contenttype;
210 /** @var string used by {@link redirect_message()} method to communicate with {@link header()}. */
211 protected $metarefreshtag = '';
214 * Get the DOCTYPE declaration that should be used with this page. Designed to
215 * be called in theme layout.php files.
216 * @return string the DOCTYPE declaration (and any XML prologue) that should be used.
218 public function doctype() {
221 $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . "\n";
222 $this->contenttype = 'text/html; charset=utf-8';
224 if (empty($CFG->xmlstrictheaders)) {
228 // We want to serve the page with an XML content type, to force well-formedness errors to be reported.
229 $prolog = '<?xml version="1.0" encoding="utf-8"?>' . "\n";
230 if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml') !== false) {
231 // Firefox and other browsers that can cope natively with XHTML.
232 $this->contenttype = 'application/xhtml+xml; charset=utf-8';
234 } else if (preg_match('/MSIE.*Windows NT/', $_SERVER['HTTP_USER_AGENT'])) {
235 // IE can't cope with application/xhtml+xml, but it will cope if we send application/xml with an XSL stylesheet.
236 $this->contenttype = 'application/xml; charset=utf-8';
237 $prolog .= '<?xml-stylesheet type="text/xsl" href="' . $CFG->httpswwwroot . '/lib/xhtml.xsl"?>' . "\n";
243 return $prolog . $doctype;
247 * The attributes that should be added to the <html> tag. Designed to
248 * be called in theme layout.php files.
249 * @return string HTML fragment.
251 public function htmlattributes() {
252 return get_html_lang(true) . ' xmlns="http://www.w3.org/1999/xhtml"';
256 * The standard tags (meta tags, links to stylesheets and JavaScript, etc.)
257 * that should be included in the <head> tag. Designed to be called in theme
259 * @return string HTML fragment.
261 public function standard_head_html() {
262 global $CFG, $SESSION;
264 $output .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . "\n";
265 $output .= '<meta name="keywords" content="moodle, ' . $this->page->title . '" />' . "\n";
266 if (!$this->page->cacheable) {
267 $output .= '<meta http-equiv="pragma" content="no-cache" />' . "\n";
268 $output .= '<meta http-equiv="expires" content="0" />' . "\n";
270 // This is only set by the {@link redirect()} method
271 $output .= $this->metarefreshtag;
273 // Check if a periodic refresh delay has been set and make sure we arn't
274 // already meta refreshing
275 if ($this->metarefreshtag=='' && $this->page->periodicrefreshdelay!==null) {
276 $output .= '<meta http-equiv="refresh" content="'.$this->page->periodicrefreshdelay.';url='.$this->page->url->out().'" />';
279 $this->page->requires->js_function_call('setTimeout', array('fix_column_widths()', 20));
281 $focus = $this->page->focuscontrol;
282 if (!empty($focus)) {
283 if (preg_match("#forms\['([a-zA-Z0-9]+)'\].elements\['([a-zA-Z0-9]+)'\]#", $focus, $matches)) {
284 // This is a horrifically bad way to handle focus but it is passed in
285 // through messy formslib::moodleform
286 $this->page->requires->js_function_call('old_onload_focus', array($matches[1], $matches[2]));
287 } else if (strpos($focus, '.')!==false) {
288 // Old style of focus, bad way to do it
289 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);
290 $this->page->requires->js_function_call('old_onload_focus', explode('.', $focus, 2));
292 // Focus element with given id
293 $this->page->requires->js_function_call('focuscontrol', array($focus));
297 // Get the theme stylesheet - this has to be always first CSS, this loads also styles.css from all plugins;
298 // any other custom CSS can not be overridden via themes and is highly discouraged
299 $urls = $this->page->theme->css_urls($this->page);
300 foreach ($urls as $url) {
301 $this->page->requires->css_theme($url);
304 // Get the theme javascript head and footer
305 $jsurl = $this->page->theme->javascript_url(true);
306 $this->page->requires->js($jsurl, true);
307 $jsurl = $this->page->theme->javascript_url(false);
308 $this->page->requires->js($jsurl);
310 // Perform a browser environment check for the flash version. Should only run once per login session.
311 if (!NO_MOODLE_COOKIES && isloggedin() && !empty($CFG->excludeoldflashclients) && empty($SESSION->flashversion)) {
312 $this->page->requires->js('/lib/swfobject/swfobject.js');
313 $this->page->requires->js_init_call('M.core_flashdetect.init');
316 // Get any HTML from the page_requirements_manager.
317 $output .= $this->page->requires->get_head_code($this->page, $this);
319 // List alternate versions.
320 foreach ($this->page->alternateversions as $type => $alt) {
321 $output .= html_writer::empty_tag('link', array('rel' => 'alternate',
322 'type' => $type, 'title' => $alt->title, 'href' => $alt->url));
329 * The standard tags (typically skip links) that should be output just inside
330 * the start of the <body> tag. Designed to be called in theme layout.php files.
331 * @return string HTML fragment.
333 public function standard_top_of_body_html() {
334 return $this->page->requires->get_top_of_body_code();
338 * The standard tags (typically performance information and validation links,
339 * if we are in developer debug mode) that should be output in the footer area
340 * of the page. Designed to be called in theme layout.php files.
341 * @return string HTML fragment.
343 public function standard_footer_html() {
346 // This function is normally called from a layout.php file in {@link header()}
347 // but some of the content won't be known until later, so we return a placeholder
348 // for now. This will be replaced with the real content in {@link footer()}.
349 $output = self::PERFORMANCE_INFO_TOKEN;
350 if (!empty($CFG->debugpageinfo)) {
351 $output .= '<div class="performanceinfo">This page is: ' . $this->page->debug_summary() . '</div>';
353 if (!empty($CFG->debugvalidators)) {
354 $output .= '<div class="validators"><ul>
355 <li><a href="http://validator.w3.org/check?verbose=1&ss=1&uri=' . urlencode(qualified_me()) . '">Validate HTML</a></li>
356 <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&url1=' . urlencode(qualified_me()) . '">Section 508 Check</a></li>
357 <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=0&warnp2n3e=1&url1=' . urlencode(qualified_me()) . '">WCAG 1 (2,3) Check</a></li>
364 * The standard tags (typically script tags that are not needed earlier) that
365 * should be output after everything else, . Designed to be called in theme layout.php files.
366 * @return string HTML fragment.
368 public function standard_end_of_body_html() {
369 // This function is normally called from a layout.php file in {@link header()}
370 // but some of the content won't be known until later, so we return a placeholder
371 // for now. This will be replaced with the real content in {@link footer()}.
372 echo self::END_HTML_TOKEN;
376 * Return the standard string that says whether you are logged in (and switched
377 * roles/logged in as another user).
378 * @return string HTML fragment.
380 public function login_info() {
381 global $USER, $CFG, $DB;
383 if (during_initial_install()) {
387 $course = $this->page->course;
389 if (session_is_loggedinas()) {
390 $realuser = session_get_realuser();
391 $fullname = fullname($realuser, true);
392 $realuserinfo = " [<a href=\"$CFG->wwwroot/course/loginas.php?id=$course->id&return=1&sesskey=".sesskey()."\">$fullname</a>] ";
397 $loginurl = get_login_url();
399 if (empty($course->id)) {
400 // $course->id is not defined during installation
402 } else if (!empty($USER->id)) {
403 $context = get_context_instance(CONTEXT_COURSE, $course->id);
405 $fullname = fullname($USER, true);
406 $username = "<a href=\"$CFG->wwwroot/user/view.php?id=$USER->id&course=$course->id\">$fullname</a>";
407 if (is_mnet_remote_user($USER) and $idprovider = $DB->get_record('mnet_host', array('id'=>$USER->mnethostid))) {
408 $username .= " from <a href=\"{$idprovider->wwwroot}\">{$idprovider->name}</a>";
410 if (isset($USER->username) && $USER->username == 'guest') {
411 $loggedinas = $realuserinfo.get_string('loggedinasguest').
412 " (<a href=\"$loginurl\">".get_string('login').'</a>)';
413 } else if (!empty($USER->access['rsw'][$context->path])) {
415 if ($role = $DB->get_record('role', array('id'=>$USER->access['rsw'][$context->path]))) {
416 $rolename = ': '.format_string($role->name);
418 $loggedinas = get_string('loggedinas', 'moodle', $username).$rolename.
419 " (<a href=\"$CFG->wwwroot/course/view.php?id=$course->id&switchrole=0&sesskey=".sesskey()."\">".get_string('switchrolereturn').'</a>)';
421 $loggedinas = $realuserinfo.get_string('loggedinas', 'moodle', $username).' '.
422 " (<a href=\"$CFG->wwwroot/login/logout.php?sesskey=".sesskey()."\">".get_string('logout').'</a>)';
425 $loggedinas = get_string('loggedinnot', 'moodle').
426 " (<a href=\"$loginurl\">".get_string('login').'</a>)';
429 $loggedinas = '<div class="logininfo">'.$loggedinas.'</div>';
431 if (isset($SESSION->justloggedin)) {
432 unset($SESSION->justloggedin);
433 if (!empty($CFG->displayloginfailures)) {
434 if (!empty($USER->username) and $USER->username != 'guest') {
435 if ($count = count_login_failures($CFG->displayloginfailures, $USER->username, $USER->lastlogin)) {
436 $loggedinas .= ' <div class="loginfailures">';
437 if (empty($count->accounts)) {
438 $loggedinas .= get_string('failedloginattempts', '', $count);
440 $loggedinas .= get_string('failedloginattemptsall', '', $count);
442 if (has_capability('coursereport/log:view', get_context_instance(CONTEXT_SYSTEM))) {
443 $loggedinas .= ' (<a href="'.$CFG->wwwroot.'/course/report/log/index.php'.
444 '?chooselog=1&id=1&modid=site_errors">'.get_string('logs').'</a>)';
446 $loggedinas .= '</div>';
456 * Return the 'back' link that normally appears in the footer.
457 * @return string HTML fragment.
459 public function home_link() {
462 if ($this->page->pagetype == 'site-index') {
463 // Special case for site home page - please do not remove
464 return '<div class="sitelink">' .
465 '<a title="Moodle" href="http://moodle.org/">' .
466 '<img style="width:100px;height:30px" src="' . $this->pix_url('moodlelogo') . '" alt="moodlelogo" /></a></div>';
468 } else if (!empty($CFG->target_release) && $CFG->target_release != $CFG->release) {
469 // Special case for during install/upgrade.
470 return '<div class="sitelink">'.
471 '<a title="Moodle" href="http://docs.moodle.org/en/Administrator_documentation" onclick="this.target=\'_blank\'">' .
472 '<img style="width:100px;height:30px" src="' . $this->pix_url('moodlelogo') . '" alt="moodlelogo" /></a></div>';
474 } else if ($this->page->course->id == $SITE->id || strpos($this->page->pagetype, 'course-view') === 0) {
475 return '<div class="homelink"><a href="' . $CFG->wwwroot . '/">' .
476 get_string('home') . '</a></div>';
479 return '<div class="homelink"><a href="' . $CFG->wwwroot . '/course/view.php?id=' . $this->page->course->id . '">' .
480 format_string($this->page->course->shortname) . '</a></div>';
485 * Redirects the user by any means possible given the current state
487 * This function should not be called directly, it should always be called using
488 * the redirect function in lib/weblib.php
490 * The redirect function should really only be called before page output has started
491 * however it will allow itself to be called during the state STATE_IN_BODY
493 * @param string $encodedurl The URL to send to encoded if required
494 * @param string $message The message to display to the user if any
495 * @param int $delay The delay before redirecting a user, if $message has been
496 * set this is a requirement and defaults to 3, set to 0 no delay
497 * @param boolean $debugdisableredirect this redirect has been disabled for
498 * debugging purposes. Display a message that explains, and don't
499 * trigger the redirect.
500 * @return string The HTML to display to the user before dying, may contain
501 * meta refresh, javascript refresh, and may have set header redirects
503 public function redirect_message($encodedurl, $message, $delay, $debugdisableredirect) {
505 $url = str_replace('&', '&', $encodedurl);
507 switch ($this->page->state) {
508 case moodle_page::STATE_BEFORE_HEADER :
509 // No output yet it is safe to delivery the full arsenal of redirect methods
510 if (!$debugdisableredirect) {
511 // Don't use exactly the same time here, it can cause problems when both redirects fire at the same time.
512 $this->metarefreshtag = '<meta http-equiv="refresh" content="'. $delay .'; url='. $encodedurl .'" />'."\n";
513 $this->page->requires->js_function_call('document.location.replace', array($url), false, ($delay + 3));
515 $output = $this->header();
517 case moodle_page::STATE_PRINTING_HEADER :
518 // We should hopefully never get here
519 throw new coding_exception('You cannot redirect while printing the page header');
521 case moodle_page::STATE_IN_BODY :
522 // We really shouldn't be here but we can deal with this
523 debugging("You should really redirect before you start page output");
524 if (!$debugdisableredirect) {
525 $this->page->requires->js_function_call('document.location.replace', array($url), false, $delay);
527 $output = $this->opencontainers->pop_all_but_last();
529 case moodle_page::STATE_DONE :
530 // Too late to be calling redirect now
531 throw new coding_exception('You cannot redirect after the entire page has been generated');
534 $output .= $this->notification($message, 'redirectmessage');
535 $output .= '<a href="'. $encodedurl .'">'. get_string('continue') .'</a>';
536 if ($debugdisableredirect) {
537 $output .= '<p><strong>Error output, so disabling automatic redirect.</strong></p>';
539 $output .= $this->footer();
544 * Start output by sending the HTTP headers, and printing the HTML <head>
545 * and the start of the <body>.
547 * To control what is printed, you should set properties on $PAGE. If you
548 * are familiar with the old {@link print_header()} function from Moodle 1.9
549 * you will find that there are properties on $PAGE that correspond to most
550 * of the old parameters to could be passed to print_header.
552 * Not that, in due course, the remaining $navigation, $menu parameters here
553 * will be replaced by more properties of $PAGE, but that is still to do.
555 * @return string HTML that you must output this, preferably immediately.
557 public function header() {
560 $this->page->set_state(moodle_page::STATE_PRINTING_HEADER);
562 // Find the appropriate page layout file, based on $this->page->pagelayout.
563 $layoutfile = $this->page->theme->layout_file($this->page->pagelayout);
564 // Render the layout using the layout file.
565 $rendered = $this->render_page_layout($layoutfile);
567 // Slice the rendered output into header and footer.
568 $cutpos = strpos($rendered, self::MAIN_CONTENT_TOKEN);
569 if ($cutpos === false) {
570 throw new coding_exception('page layout file ' . $layoutfile .
571 ' does not contain the string "' . self::MAIN_CONTENT_TOKEN . '".');
573 $header = substr($rendered, 0, $cutpos);
574 $footer = substr($rendered, $cutpos + strlen(self::MAIN_CONTENT_TOKEN));
576 if (empty($this->contenttype)) {
577 debugging('The page layout file did not call $OUTPUT->doctype()');
578 $header = $this->doctype() . $header;
581 send_headers($this->contenttype, $this->page->cacheable);
583 $this->opencontainers->push('header/footer', $footer);
584 $this->page->set_state(moodle_page::STATE_IN_BODY);
586 return $header . $this->skip_link_target();
590 * Renders and outputs the page layout file.
591 * @param string $layoutfile The name of the layout file
592 * @return string HTML code
594 protected function render_page_layout($layoutfile) {
595 global $CFG, $SITE, $USER;
596 // The next lines are a bit tricky. The point is, here we are in a method
597 // of a renderer class, and this object may, or may not, be the same as
598 // the global $OUTPUT object. When rendering the page layout file, we want to use
599 // this object. However, people writing Moodle code expect the current
600 // renderer to be called $OUTPUT, not $this, so define a variable called
601 // $OUTPUT pointing at $this. The same comment applies to $PAGE and $COURSE.
604 $COURSE = $this->page->course;
607 include($layoutfile);
608 $rendered = ob_get_contents();
614 * Outputs the page's footer
615 * @return string HTML fragment
617 public function footer() {
620 $output = $this->container_end_all(true);
622 $footer = $this->opencontainers->pop('header/footer');
624 if (debugging() and $DB and $DB->is_transaction_started()) {
625 // TODO: MDL-20625 print warning - transaction will be rolled back
628 // Provide some performance info if required
629 $performanceinfo = '';
630 if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) {
631 $perf = get_performance_info();
632 if (defined('MDL_PERFTOLOG') && !function_exists('register_shutdown_function')) {
633 error_log("PERF: " . $perf['txt']);
635 if (defined('MDL_PERFTOFOOT') || debugging() || $CFG->perfdebug > 7) {
636 $performanceinfo = $perf['html'];
639 $footer = str_replace(self::PERFORMANCE_INFO_TOKEN, $performanceinfo, $footer);
641 $footer = str_replace(self::END_HTML_TOKEN, $this->page->requires->get_end_code(), $footer);
643 $this->page->set_state(moodle_page::STATE_DONE);
646 return $output . $footer;
650 * Close all but the last open container. This is useful in places like error
651 * handling, where you want to close all the open containers (apart from <body>)
652 * before outputting the error message.
653 * @param bool $shouldbenone assert that the stack should be empty now - causes a
654 * developer debug warning if it isn't.
655 * @return string the HTML required to close any open containers inside <body>.
657 public function container_end_all($shouldbenone = false) {
658 return $this->opencontainers->pop_all_but_last($shouldbenone);
662 * Returns lang menu or '', this method also checks forcing of languages in courses.
665 public function lang_menu() {
668 if (empty($CFG->langmenu)) {
672 if ($this->page->course != SITEID and !empty($this->page->course->lang)) {
673 // do not show lang menu if language forced
677 $currlang = current_language();
678 $langs = get_list_of_languages();
680 if (count($langs) < 2) {
684 $s = new single_select($this->page->url, 'lang', $langs, $currlang, null);
685 $s->label = get_accesshide(get_string('language'));
686 $s->class = 'langmenu';
687 return $this->render($s);
691 * Output the row of editing icons for a block, as defined by the controls array.
692 * @param array $controls an array like {@link block_contents::$controls}.
693 * @return HTML fragment.
695 public function block_controls($controls) {
696 if (empty($controls)) {
699 $controlshtml = array();
700 foreach ($controls as $control) {
701 $controlshtml[] = html_writer::tag('a',
702 html_writer::empty_tag('img', array('src' => $this->pix_url($control['icon'])->out(false), 'alt' => $control['caption'])),
703 array('class' => 'icon','title' => $control['caption'], 'href' => $control['url']));
705 return html_writer::tag('div', implode('', $controlshtml), array('class' => 'commands'));
709 * Prints a nice side block with an optional header.
711 * The content is described
712 * by a {@link block_contents} object.
714 * @param block_contents $bc HTML for the content
715 * @param string $region the region the block is appearing in.
716 * @return string the HTML to be output.
718 function block(block_contents $bc, $region) {
719 $bc = clone($bc); // Avoid messing up the object passed in.
720 if (empty($bc->blockinstanceid) || !strip_tags($bc->title)) {
721 $bc->collapsible = block_contents::NOT_HIDEABLE;
723 if ($bc->collapsible == block_contents::HIDDEN) {
724 $bc->add_class('hidden');
726 if (!empty($bc->controls)) {
727 $bc->add_class('block_with_controls');
730 $skiptitle = strip_tags($bc->title);
731 if (empty($skiptitle)) {
735 $output = html_writer::tag('a', get_string('skipa', 'access', $skiptitle), array('href' => '#sb-' . $bc->skipid, 'class' => 'skip-block'));
736 $skipdest = html_writer::tag('span', '', array('id' => 'sb-' . $bc->skipid, 'class' => 'skip-block-to'));
739 $output .= html_writer::start_tag('div', $bc->attributes);
741 $controlshtml = $this->block_controls($bc->controls);
745 $title = html_writer::tag('h2', $bc->title, null);
748 if ($title || $controlshtml) {
749 $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'));
752 $output .= html_writer::start_tag('div', array('class' => 'content'));
753 if (!$title && !$controlshtml) {
754 $output .= html_writer::tag('div', '', array('class'=>'block_action notitle'));
756 $output .= $bc->content;
759 $output .= html_writer::tag('div', $bc->footer, array('class' => 'footer'));
762 $output .= html_writer::end_tag('div');
763 $output .= html_writer::end_tag('div');
765 if ($bc->annotation) {
766 $output .= html_writer::tag('div', $bc->annotation, array('class' => 'blockannotation'));
768 $output .= $skipdest;
770 $this->init_block_hider_js($bc);
775 * Calls the JS require function to hide a block.
776 * @param block_contents $bc A block_contents object
779 protected function init_block_hider_js(block_contents $bc) {
780 if (!empty($bc->attributes['id']) and $bc->collapsible != block_contents::NOT_HIDEABLE) {
781 $userpref = 'block' . $bc->blockinstanceid . 'hidden';
782 user_preference_allow_ajax_update($userpref, PARAM_BOOL);
783 $this->page->requires->yui2_lib('dom');
784 $this->page->requires->yui2_lib('event');
785 $plaintitle = strip_tags($bc->title);
786 $this->page->requires->js_function_call('new block_hider', array($bc->attributes['id'], $userpref,
787 get_string('hideblocka', 'access', $plaintitle), get_string('showblocka', 'access', $plaintitle),
788 $this->pix_url('t/switch_minus')->out(false), $this->pix_url('t/switch_plus')->out(false)));
793 * Render the contents of a block_list.
794 * @param array $icons the icon for each item.
795 * @param array $items the content of each item.
796 * @return string HTML
798 public function list_block_contents($icons, $items) {
801 foreach ($items as $key => $string) {
802 $item = html_writer::start_tag('li', array('class' => 'r' . $row));
803 if (!empty($icons[$key])) { //test if the content has an assigned icon
804 $item .= html_writer::tag('div', $icons[$key], array('class' => 'icon column c0'));
806 $item .= html_writer::tag('div', $string, array('class' => 'column c1'));
807 $item .= html_writer::end_tag('li');
809 $row = 1 - $row; // Flip even/odd.
811 return html_writer::tag('ul', implode("\n", $lis), array('class' => 'list'));
815 * Output all the blocks in a particular region.
816 * @param string $region the name of a region on this page.
817 * @return string the HTML to be output.
819 public function blocks_for_region($region) {
820 $blockcontents = $this->page->blocks->get_content_for_region($region, $this);
823 foreach ($blockcontents as $bc) {
824 if ($bc instanceof block_contents) {
825 $output .= $this->block($bc, $region);
826 } else if ($bc instanceof block_move_target) {
827 $output .= $this->block_move_target($bc);
829 throw new coding_exception('Unexpected type of thing (' . get_class($bc) . ') found in list of block contents.');
836 * Output a place where the block that is currently being moved can be dropped.
837 * @param block_move_target $target with the necessary details.
838 * @return string the HTML to be output.
840 public function block_move_target($target) {
841 return html_writer::tag('a', html_writer::tag('span', $target->text, array('class' => 'accesshide')), array('href' => $target->url, 'class' => 'blockmovetarget'));
845 * Renders a sepcial html link with attached action
847 * @param string|moodle_url $url
848 * @param string $text HTML fragment
849 * @param component_action $action
850 * @param array $attributes associative array of html link attributes + disabled
851 * @return HTML fragment
853 public function action_link($url, $text, component_action $action = null, array $attributes=null) {
854 if (!($url instanceof moodle_url)) {
855 $url = new moodle_url($url);
857 $link = new action_link($url, $text, $action, $attributes);
859 return $this->render($link);
863 * Implementation of action_link rendering
864 * @param action_link $link
865 * @return string HTML fragment
867 protected function render_action_link(action_link $link) {
870 // A disabled link is rendered as formatted text
871 if (!empty($link->attributes['disabled'])) {
872 // do not use div here due to nesting restriction in xhtml strict
873 return html_writer::tag('span', $link->text, array('class'=>'currentlink'));
876 $attributes = $link->attributes;
877 unset($link->attributes['disabled']);
878 $attributes['href'] = $link->url;
880 if ($link->actions) {
881 if (empty($attributes['id'])) {
882 $id = html_writer::random_id('action_link');
883 $attributes['id'] = $id;
885 $id = $attributes['id'];
887 foreach ($link->actions as $action) {
888 $this->add_action_handler($action, $id);
892 return html_writer::tag('a', $link->text, $attributes);
897 * Similar to action_link, image is used instead of the text
899 * @param string|moodle_url $url A string URL or moodel_url
900 * @param pix_icon $pixicon
901 * @param component_action $action
902 * @param array $attributes associative array of html link attributes + disabled
903 * @param bool $linktext show title next to image in link
904 * @return string HTML fragment
906 public function action_icon($url, pix_icon $pixicon, component_action $action = null, array $attributes = null, $linktext=false) {
907 if (!($url instanceof moodle_url)) {
908 $url = new moodle_url($url);
910 $attributes = (array)$attributes;
912 if (empty($attributes['class'])) {
913 // let ppl override the class via $options
914 $attributes['class'] = 'action-icon';
917 $icon = $this->render($pixicon);
920 $text = $pixicon->attributes['alt'];
925 return $this->action_link($url, $text.$icon, $action, $attributes);
929 * Print a message along with button choices for Continue/Cancel
931 * If a string or moodle_url is given instead of a single_button, method defaults to post.
933 * @param string $message The question to ask the user
934 * @param single_button|moodle_url|string $continue The single_button component representing the Continue answer. Can also be a moodle_url or string URL
935 * @param single_button|moodle_url|string $cancel The single_button component representing the Cancel answer. Can also be a moodle_url or string URL
936 * @return string HTML fragment
938 public function confirm($message, $continue, $cancel) {
939 if ($continue instanceof single_button) {
941 } else if (is_string($continue)) {
942 $continue = new single_button(new moodle_url($continue), get_string('continue'), 'post');
943 } else if ($continue instanceof moodle_url) {
944 $continue = new single_button($continue, get_string('continue'), 'post');
946 throw new coding_exception('The continue param to $OUTPUT->confirm() must be either a URL (string/moodle_url) or a single_button instance.');
949 if ($cancel instanceof single_button) {
951 } else if (is_string($cancel)) {
952 $cancel = new single_button(new moodle_url($cancel), get_string('cancel'), 'get');
953 } else if ($cancel instanceof moodle_url) {
954 $cancel = new single_button($cancel, get_string('cancel'), 'get');
956 throw new coding_exception('The cancel param to $OUTPUT->confirm() must be either a URL (string/moodle_url) or a single_button instance.');
959 $output = $this->box_start('generalbox', 'notice');
960 $output .= html_writer::tag('p', $message);
961 $output .= html_writer::tag('div', $this->render($continue) . $this->render($cancel), array('class' => 'buttons'));
962 $output .= $this->box_end();
967 * Returns a form with a single button.
969 * @param string|moodle_url $url
970 * @param string $label button text
971 * @param string $method get or post submit method
972 * @param array $options associative array {disabled, title, etc.}
973 * @return string HTML fragment
975 public function single_button($url, $label, $method='post', array $options=null) {
976 if (!($url instanceof moodle_url)) {
977 $url = new moodle_url($url);
979 $button = new single_button($url, $label, $method);
981 foreach ((array)$options as $key=>$value) {
982 if (array_key_exists($key, $button)) {
983 $button->$key = $value;
987 return $this->render($button);
991 * Internal implementation of single_button rendering
992 * @param single_button $button
993 * @return string HTML fragment
995 protected function render_single_button(single_button $button) {
996 $attributes = array('type' => 'submit',
997 'value' => $button->label,
998 'disabled' => $button->disabled ? 'disabled' : null,
999 'title' => $button->tooltip);
1001 if ($button->actions) {
1002 $id = html_writer::random_id('single_button');
1003 $attributes['id'] = $id;
1004 foreach ($button->actions as $action) {
1005 $this->add_action_handler($action, $id);
1009 // first the input element
1010 $output = html_writer::empty_tag('input', $attributes);
1012 // then hidden fields
1013 $params = $button->url->params();
1014 if ($button->method === 'post') {
1015 $params['sesskey'] = sesskey();
1017 foreach ($params as $var => $val) {
1018 $output .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => $var, 'value' => $val));
1021 // then div wrapper for xhtml strictness
1022 $output = html_writer::tag('div', $output);
1024 // now the form itself around it
1025 $url = $button->url->out_omit_querystring(); // url without params
1027 $url = '#'; // there has to be always some action
1029 $attributes = array('method' => $button->method,
1031 'id' => $button->formid);
1032 $output = html_writer::tag('form', $output, $attributes);
1034 // and finally one more wrapper with class
1035 return html_writer::tag('div', $output, array('class' => $button->class));
1039 * Returns a form with a single select widget.
1040 * @param moodle_url $url form action target, includes hidden fields
1041 * @param string $name name of selection field - the changing parameter in url
1042 * @param array $options list of options
1043 * @param string $selected selected element
1044 * @param array $nothing
1045 * @param string $formid
1046 * @return string HTML fragment
1048 public function single_select($url, $name, array $options, $selected='', $nothing=array(''=>'choosedots'), $formid=null) {
1049 if (!($url instanceof moodle_url)) {
1050 $url = new moodle_url($url);
1052 $select = new single_select($url, $name, $options, $selected, $nothing, $formid);
1054 return $this->render($select);
1058 * Internal implementation of single_select rendering
1059 * @param single_select $select
1060 * @return string HTML fragment
1062 protected function render_single_select(single_select $select) {
1063 $select = clone($select);
1064 if (empty($select->formid)) {
1065 $select->formid = html_writer::random_id('single_select_f');
1069 $params = $select->url->params();
1070 if ($select->method === 'post') {
1071 $params['sesskey'] = sesskey();
1073 foreach ($params as $name=>$value) {
1074 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>$name, 'value'=>$value));
1077 if (empty($select->attributes['id'])) {
1078 $select->attributes['id'] = html_writer::random_id('single_select');
1081 if ($select->disabled) {
1082 $select->attributes['disabled'] = 'disabled';
1085 if ($select->tooltip) {
1086 $select->attributes['title'] = $select->tooltip;
1089 if ($select->label) {
1090 $output .= html_writer::tag('label', $select->label, array('for'=>$select->attributes['id']));
1093 if ($select->helpicon instanceof help_icon) {
1094 $output .= $this->render($select->helpicon);
1097 $output .= html_writer::select($select->options, $select->name, $select->selected, $select->nothing, $select->attributes);
1099 $go = html_writer::empty_tag('input', array('type'=>'submit', 'value'=>get_string('go')));
1100 $output .= html_writer::tag('noscript', $go, array('style'=>'inline'));
1102 $nothing = empty($select->nothing) ? false : key($select->nothing);
1103 $this->page->requires->js_init_call('M.util.init_select_autosubmit', array($select->formid, $select->attributes['id'], $nothing));
1105 // then div wrapper for xhtml strictness
1106 $output = html_writer::tag('div', $output);
1108 // now the form itself around it
1109 $formattributes = array('method' => $select->method,
1110 'action' => $select->url->out_omit_querystring(),
1111 'id' => $select->formid);
1112 $output = html_writer::tag('form', $output, $formattributes);
1114 // and finally one more wrapper with class
1115 return html_writer::tag('div', $output, array('class' => $select->class));
1119 * Returns a form with a url select widget.
1120 * @param array $urls list of urls - array('/course/view.php?id=1'=>'Frontpage', ....)
1121 * @param string $selected selected element
1122 * @param array $nothing
1123 * @param string $formid
1124 * @return string HTML fragment
1126 public function url_select(array $urls, $selected, $nothing=array(''=>'choosedots'), $formid=null) {
1127 $select = new url_select($urls, $selected, $nothing, $formid);
1128 return $this->render($select);
1132 * Internal implementation of url_select rendering
1133 * @param single_select $select
1134 * @return string HTML fragment
1136 protected function render_url_select(url_select $select) {
1137 $select = clone($select);
1138 if (empty($select->formid)) {
1139 $select->formid = html_writer::random_id('url_select_f');
1142 if (empty($select->attributes['id'])) {
1143 $select->attributes['id'] = html_writer::random_id('url_select');
1146 if ($select->disabled) {
1147 $select->attributes['disabled'] = 'disabled';
1150 if ($select->tooltip) {
1151 $select->attributes['title'] = $select->tooltip;
1156 if ($select->label) {
1157 $output .= html_writer::tag('label', $select->label, array('for'=>$select->attributes['id']));
1160 if ($select->helpicon instanceof help_icon) {
1161 $output .= $this->render($select->helpicon);
1164 $output .= html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'sesskey', 'value'=>sesskey()));
1165 $output .= html_writer::select($select->urls, 'jump', $select->selected, $select->nothing, $select->attributes);
1167 $go = html_writer::empty_tag('input', array('type'=>'submit', 'value'=>get_string('go')));
1168 $output .= html_writer::tag('noscript', $go, array('style'=>'inline'));
1170 $nothing = empty($select->nothing) ? false : key($select->nothing);
1171 $output .= $this->page->requires->js_init_call('M.util.init_url_select', array($select->formid, $select->attributes['id'], $nothing));
1173 // then div wrapper for xhtml strictness
1174 $output = html_writer::tag('div', $output);
1176 // now the form itself around it
1177 $formattributes = array('method' => 'post',
1178 'action' => new moodle_url('/course/jumpto.php'),
1179 'id' => $select->formid);
1180 $output = html_writer::tag('form', $output, $formattributes);
1182 // and finally one more wrapper with class
1183 return html_writer::tag('div', $output, array('class' => $select->class));
1187 * Returns a string containing a link to the user documentation.
1188 * Also contains an icon by default. Shown to teachers and admin only.
1189 * @param string $path The page link after doc root and language, no leading slash.
1190 * @param string $text The text to be displayed for the link
1193 public function doc_link($path, $text) {
1196 $icon = $this->pix_icon('docs', $text, 'moodle', array('class'=>'iconhelp'));
1198 $url = new moodle_url(get_docs_url($path));
1200 $attributes = array('href'=>$url);
1201 if (!empty($CFG->doctonewwindow)) {
1202 $attributes['id'] = $this->add_action_handler(new popup_action('click', $url));
1205 return html_writer::tag('a', $icon.$text, $attributes);
1210 * @param string $pix short pix name
1211 * @param string $alt mandatory alt attribute
1212 * @param strin $component standard compoennt name like 'moodle', 'mod_form', etc.
1213 * @param array $attributes htm lattributes
1214 * @return string HTML fragment
1216 public function pix_icon($pix, $alt, $component='moodle', array $attributes = null) {
1217 $icon = new pix_icon($pix, $alt, $component, $attributes);
1218 return $this->render($icon);
1223 * @param pix_icon $icon
1224 * @return string HTML fragment
1226 protected function render_pix_icon(pix_icon $icon) {
1227 $attributes = $icon->attributes;
1228 $attributes['src'] = $this->pix_url($icon->pix, $icon->component);
1229 return html_writer::empty_tag('img', $attributes);
1233 * Produces the html that represents this rating in the UI
1234 * @param $page the page object on which this rating will appear
1236 function render_rating(rating $rating) {
1238 static $havesetupjavascript = false;
1240 $useajax = !empty($CFG->enableajax);
1242 //include required Javascript
1243 if( !$havesetupjavascript && $useajax ) {
1244 $this->page->requires->js_init_call('M.core_ratings.init');
1245 $havesetupjavascript = true;
1248 $strrate = get_string("rate", "rating");
1249 $strratings = ''; //the string we'll return
1251 if($rating->settings->permissions->canview || $rating->settings->permissions->canviewall) {
1252 switch ($rating->settings->aggregationmethod) {
1253 case RATING_AGGREGATE_AVERAGE :
1254 $strratings .= get_string("aggregateavg", "forum");
1256 case RATING_AGGREGATE_COUNT :
1257 $strratings .= get_string("aggregatecount", "forum");
1259 case RATING_AGGREGATE_MAXIMUM :
1260 $strratings .= get_string("aggregatemax", "forum");
1262 case RATING_AGGREGATE_MINIMUM :
1263 $strratings .= get_string("aggregatemin", "forum");
1265 case RATING_AGGREGATE_SUM :
1266 $strratings .= get_string("aggregatesum", "forum");
1270 if (empty($strratings)) {
1271 $strratings .= $strrate;
1273 $strratings .= ': ';
1278 if ( is_array($rating->settings->scale->scaleitems) ) {
1279 $scalemax = $rating->settings->scale->scaleitems[ count($rating->settings->scale->scaleitems)-1 ];
1280 $ratingstr = $rating->settings->scale->scaleitems[$rating->rating];
1282 else { //its numeric
1283 $scalemax = $rating->settings->scale->scaleitems;
1284 $ratingstr = round($rating->aggregate,1);
1287 $aggstr = "{$ratingstr} / $scalemax ({$rating->count}) ";
1289 if ($rating->settings->permissions->canviewall) {
1290 $link = new moodle_url("/rating/index.php?contextid={$rating->context->id}&itemid={$rating->itemid}&scaleid={$rating->scaleid}");
1291 $action = new popup_action('click', $link, 'ratings', array('height' => 400, 'width' => 600));
1292 $strratings .= $this->action_link($link, $aggstr, $action);
1293 } else if ($rating->settings->permissions->canview) {
1294 $strratings .= $aggstr;
1298 //todo andrew alter the below if to deny guest users the ability to post ratings.
1299 //Petr to define "guest"
1301 if($rating->settings->permissions->canrate) {
1302 //dont use $rating->userid below as it will be null if the user hasnt already rated the item
1304 <form id="postrating{$rating->itemid}" class="postratingform" method="post" action="rating/rate.php">
1305 <div class="ratingform">
1306 <input type="hidden" class="ratinginput" name="contextid" value="{$rating->context->id}" />
1307 <input type="hidden" class="ratinginput" name="itemid" value="{$rating->itemid}" />
1308 <input type="hidden" class="ratinginput" name="scaleid" value="{$rating->settings->scale->id}" />
1309 <input type="hidden" class="ratinginput" name="returnurl" value="{$rating->settings->returnurl}" />
1311 $strratings = $formstart.$strratings;
1313 //generate an array of values for numeric scales
1314 $scalearray = $rating->settings->scale->scaleitems;
1315 if( !is_array($scalearray) ) { //almost certainly a numerical scale
1316 $intscalearray = intval($scalearray);//just in case theyve passed "5" instead of 5
1317 if( is_int($intscalearray) && $intscalearray>0 ){
1318 $scalearray = array();
1319 for($i=0; $i<=$rating->settings->scale->scaleitems; $i++) {
1320 $scalearray[$i] = $i;
1325 $scalearray = array(RATING_UNSET_RATING => $strrate.'...') + $scalearray;
1326 $strratings .= html_writer::select($scalearray, 'rating', $rating->rating, false, array('class'=>'postratingmenu ratinginput','id'=>'menurating'.$rating->itemid));
1328 //output submit button
1329 $strratings .= '<span class="ratingsubmit"><input type="submit" class="postratingmenusubmit" id="postratingsubmit'.$rating->itemid.'" value="'.s(get_string('rate', 'rating')).'" />';
1331 if ( is_array($rating->settings->scale) ) {
1332 //todo andrew where can we get the course id from?
1333 //$strratings .= $this->help_icon_scale($course->id, $scale);
1334 $strratings .= $this->help_icon_scale(1, $rating->settings->scale);
1336 $strratings .= '</span></div></form>';
1343 * Centered heading with attached help button (same title text)
1344 * and optional icon attached
1345 * @param string $text A heading text
1346 * @param string $page The keyword that defines a help page
1347 * @param string $component component name
1348 * @param string|moodle_url $icon
1349 * @param string $iconalt icon alt text
1350 * @return string HTML fragment
1352 public function heading_with_help($text, $helppage, $component='moodle', $icon='', $iconalt='') {
1355 $image = $this->pix_icon($icon, $iconalt, $component, array('class'=>'icon'));
1358 $help = $this->help_icon($helppage, $text, $component);
1360 return $this->heading($image.$text.$help, 2, 'main help');
1364 * Print a help icon.
1366 * @param string $page The keyword that defines a help page
1367 * @param string $title A descriptive text for accessibility only
1368 * @param string $component component name
1369 * @param string|bool $linktext true means use $title as link text, string means link text value
1370 * @return string HTML fragment
1372 public function help_icon($helppage, $title, $component = 'moodle', $linktext='') {
1373 $icon = new help_icon($helppage, $title, $component);
1374 if ($linktext === true) {
1375 $icon->linktext = $title;
1376 } else if (!empty($linktext)) {
1377 $icon->linktext = $linktext;
1379 return $this->render($icon);
1383 * Implementation of user image rendering.
1384 * @param help_icon $helpicon
1385 * @return string HTML fragment
1387 protected function render_help_icon(help_icon $helpicon) {
1390 // first get the help image icon
1391 $src = $this->pix_url('help');
1393 if (empty($helpicon->linktext)) {
1394 $alt = $helpicon->title;
1396 $alt = get_string('helpwiththis');
1399 $attributes = array('src'=>$src, 'alt'=>$alt, 'class'=>'iconhelp');
1400 $output = html_writer::empty_tag('img', $attributes);
1402 // add the link text if given
1403 if (!empty($helpicon->linktext)) {
1404 // the spacing has to be done through CSS
1405 $output .= $helpicon->linktext;
1408 // now create the link around it - TODO: this will be changed during the big lang cleanup in 2.0
1409 $url = new moodle_url('/help.php', array('module' => $helpicon->component, 'file' => $helpicon->helppage .'.html'));
1411 // note: this title is displayed only if JS is disabled, otherwise the link will have the new ajax tooltip
1412 $title = get_string('helpprefix2', '', trim($helpicon->title, ". \t"));
1414 $attributes = array('href'=>$url, 'title'=>$title);
1415 $id = html_writer::random_id('helpicon');
1416 $attributes['id'] = $id;
1417 $this->add_action_handler(new popup_action('click', $url), $id);
1418 $output = html_writer::tag('a', $output, $attributes);
1421 return html_writer::tag('span', $output, array('class' => 'helplink'));
1425 * Print scale help icon.
1427 * @param int $courseid
1428 * @param object $scale instance
1429 * @return string HTML fragment
1431 public function help_icon_scale($courseid, stdClass $scale) {
1434 $title = get_string('helpprefix2', '', $scale->name) .' ('.get_string('newwindow').')';
1436 $icon = $this->pix_icon('help', get_string('scales'), 'moodle', array('class'=>'iconhelp'));
1438 $link = new moodle_url('/course/scales.php', array('id' => $courseid, 'list' => true, 'scaleid' => $scale->id));
1439 $action = new popup_action('click', $link->url, 'ratingscale');
1441 return html_writer::tag('span', $this->action_link($link, $icon, $action), array('class' => 'helplink'));
1445 * Creates and returns a spacer image with optional line break.
1447 * @param array $attributes
1449 * @return string HTML fragment
1451 public function spacer(array $attributes = null, $br = false) {
1452 $attributes = (array)$attributes;
1453 if (empty($attributes['width'])) {
1454 $attributes['width'] = 1;
1456 if (empty($options['height'])) {
1457 $attributes['height'] = 1;
1459 $attributes['class'] = 'spacer';
1461 $output = $this->pix_icon('spacer', '', 'moodle', $attributes);
1464 $output .= '<br />';
1471 * Print the specified user's avatar.
1473 * User avatar may be obtained in two ways:
1475 * // Option 1: (shortcut for simple cases, preferred way)
1476 * // $user has come from the DB and has fields id, picture, imagealt, firstname and lastname
1477 * $OUTPUT->user_picture($user, array('popup'=>true));
1480 * $userpic = new user_picture($user);
1481 * // Set properties of $userpic
1482 * $userpic->popup = true;
1483 * $OUTPUT->render($userpic);
1486 * @param object Object with at least fields id, picture, imagealt, firstname, lastname
1487 * If any of these are missing, the database is queried. Avoid this
1488 * if at all possible, particularly for reports. It is very bad for performance.
1489 * @param array $options associative array with user picture options, used only if not a user_picture object,
1491 * - courseid=$this->page->course->id (course id of user profile in link)
1492 * - size=35 (size of image)
1493 * - link=true (make image clickable - the link leads to user profile)
1494 * - popup=false (open in popup)
1495 * - alttext=true (add image alt attribute)
1496 * - class = image class attribute (default 'userpicture')
1497 * @return string HTML fragment
1499 public function user_picture(stdClass $user, array $options = null) {
1500 $userpicture = new user_picture($user);
1501 foreach ((array)$options as $key=>$value) {
1502 if (array_key_exists($key, $userpicture)) {
1503 $userpicture->$key = $value;
1506 return $this->render($userpicture);
1510 * Internal implementation of user image rendering.
1511 * @param user_picture $userpicture
1514 protected function render_user_picture(user_picture $userpicture) {
1517 $user = $userpicture->user;
1519 if ($userpicture->alttext) {
1520 if (!empty($user->imagealt)) {
1521 $alt = $user->imagealt;
1523 $alt = get_string('pictureof', '', fullname($user));
1529 if (empty($userpicture->size)) {
1532 } else if ($userpicture->size === true or $userpicture->size == 1) {
1535 } else if ($userpicture->size >= 50) {
1537 $size = $userpicture->size;
1540 $size = $userpicture->size;
1543 $class = $userpicture->class;
1545 if (!empty($user->picture)) {
1546 require_once($CFG->libdir.'/filelib.php');
1547 $src = new moodle_url(get_file_url($user->id.'/'.$file.'.jpg', null, 'user'));
1548 } else { // Print default user pictures (use theme version if available)
1549 $class .= ' defaultuserpic';
1550 $src = $this->pix_url('u/' . $file);
1553 $attributes = array('src'=>$src, 'alt'=>$alt, 'class'=>$class, 'width'=>$size, 'height'=>$size);
1555 // get the image html output fisrt
1556 $output = html_writer::empty_tag('img', $attributes);;
1558 // then wrap it in link if needed
1559 if (!$userpicture->link) {
1563 if (empty($userpicture->courseid)) {
1564 $courseid = $this->page->course->id;
1566 $courseid = $userpicture->courseid;
1569 $url = new moodle_url('/user/view.php', array('id' => $user->id, 'course' => $courseid));
1571 $attributes = array('href'=>$url);
1573 if ($userpicture->popup) {
1574 $id = html_writer::random_id('userpicture');
1575 $attributes['id'] = $id;
1576 $this->add_action_handler(new popup_action('click', $url), $id);
1579 return html_writer::tag('a', $output, $attributes);
1583 * Prints the 'Update this Modulename' button that appears on module pages.
1585 * @param string $cmid the course_module id.
1586 * @param string $modulename the module name, eg. "forum", "quiz" or "workshop"
1587 * @return string the HTML for the button, if this user has permission to edit it, else an empty string.
1589 public function update_module_button($cmid, $modulename) {
1591 if (has_capability('moodle/course:manageactivities', get_context_instance(CONTEXT_MODULE, $cmid))) {
1592 $modulename = get_string('modulename', $modulename);
1593 $string = get_string('updatethis', '', $modulename);
1594 $url = new moodle_url("$CFG->wwwroot/course/mod.php", array('update' => $cmid, 'return' => true, 'sesskey' => sesskey()));
1595 return $this->single_button($url, $string);
1602 * Prints a "Turn editing on/off" button in a form.
1603 * @param moodle_url $url The URL + params to send through when clicking the button
1604 * @return string HTML the button
1606 public function edit_button(moodle_url $url) {
1608 if (!empty($USER->editing)) {
1609 $string = get_string('turneditingoff');
1612 $string = get_string('turneditingon');
1616 $url = new moodle_url($url, array('edit'=>$edit));
1618 return $this->single_button($url, $string);
1622 * Prints a simple button to close a window
1624 * @param string $text The lang string for the button's label (already output from get_string())
1625 * @return string html fragment
1627 public function close_window_button($text='') {
1629 $text = get_string('closewindow');
1631 $button = new single_button(new moodle_url('#'), $text, 'get');
1632 $button->add_action(new component_action('click', 'close_window'));
1634 return $this->container($this->render($button), 'closewindow');
1638 * Output an error message. By default wraps the error message in <span class="error">.
1639 * If the error message is blank, nothing is output.
1640 * @param string $message the error message.
1641 * @return string the HTML to output.
1643 public function error_text($message) {
1644 if (empty($message)) {
1647 return html_writer::tag('span', $message, array('class' => 'error'));
1651 * Do not call this function directly.
1653 * To terminate the current script with a fatal error, call the {@link print_error}
1654 * function, or throw an exception. Doing either of those things will then call this
1655 * function to display the error, before terminating the execution.
1657 * @param string $message The message to output
1658 * @param string $moreinfourl URL where more info can be found about the error
1659 * @param string $link Link for the Continue button
1660 * @param array $backtrace The execution backtrace
1661 * @param string $debuginfo Debugging information
1662 * @return string the HTML to output.
1664 public function fatal_error($message, $moreinfourl, $link, $backtrace, $debuginfo = null) {
1669 if ($this->has_started()) {
1670 // we can not always recover properly here, we have problems with output buffering,
1671 // html tables, etc.
1672 $output .= $this->opencontainers->pop_all_but_last();
1675 // It is really bad if library code throws exception when output buffering is on,
1676 // because the buffered text would be printed before our start of page.
1677 // NOTE: this hack might be behave unexpectedly in case output buffering is enabled in PHP.ini
1678 while (ob_get_level() > 0) {
1679 $obbuffer .= ob_get_clean();
1682 // Header not yet printed
1683 if (isset($_SERVER['SERVER_PROTOCOL'])) {
1684 // server protocol should be always present, because this render
1685 // can not be used from command line or when outputting custom XML
1686 @header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
1688 $this->page->set_url('/'); // no url
1689 //$this->page->set_pagelayout('base'); //TODO: MDL-20676 blocks on error pages are weird, unfortunately it somehow detect the pagelayout from URL :-(
1690 $this->page->set_title(get_string('error'));
1691 $output .= $this->header();
1694 $message = '<p class="errormessage">' . $message . '</p>'.
1695 '<p class="errorcode"><a href="' . $moreinfourl . '">' .
1696 get_string('moreinformation') . '</a></p>';
1697 $output .= $this->box($message, 'errorbox');
1699 if (debugging('', DEBUG_DEVELOPER)) {
1700 if (!empty($debuginfo)) {
1701 $debuginfo = s($debuginfo); // removes all nasty JS
1702 $debuginfo = str_replace("\n", '<br />', $debuginfo); // keep newlines
1703 $output .= $this->notification('<strong>Debug info:</strong> '.$debuginfo, 'notifytiny');
1705 if (!empty($backtrace)) {
1706 $output .= $this->notification('<strong>Stack trace:</strong> '.format_backtrace($backtrace), 'notifytiny');
1708 if ($obbuffer !== '' ) {
1709 $output .= $this->notification('<strong>Output buffer:</strong> '.s($obbuffer), 'notifytiny');
1713 if (!empty($link)) {
1714 $output .= $this->continue_button($link);
1717 $output .= $this->footer();
1719 // Padding to encourage IE to display our error page, rather than its own.
1720 $output .= str_repeat(' ', 512);
1726 * Output a notification (that is, a status message about something that has
1729 * @param string $message the message to print out
1730 * @param string $classes normally 'notifyproblem' or 'notifysuccess'.
1731 * @return string the HTML to output.
1733 public function notification($message, $classes = 'notifyproblem') {
1734 return html_writer::tag('div', clean_text($message), array('class' => renderer_base::prepare_classes($classes)));
1738 * Print a continue button that goes to a particular URL.
1740 * @param string|moodle_url $url The url the button goes to.
1741 * @return string the HTML to output.
1743 public function continue_button($url) {
1744 if (!($url instanceof moodle_url)) {
1745 $url = new moodle_url($url);
1747 $button = new single_button($url, get_string('continue'), 'get');
1748 $button->class = 'continuebutton';
1750 return $this->render($button);
1754 * Prints a single paging bar to provide access to other pages (usually in a search)
1756 * @param int $totalcount Thetotal number of entries available to be paged through
1757 * @param int $page The page you are currently viewing
1758 * @param int $perpage The number of entries that should be shown per page
1759 * @param string|moodle_url $baseurl url of the current page, the $pagevar parameter is added
1760 * @param string $pagevar name of page parameter that holds the page number
1761 * @return string the HTML to output.
1763 public function paging_bar($totalcount, $page, $perpage, $baseurl, $pagevar = 'page') {
1764 $pb = new paging_bar($totalcount, $page, $perpage, $baseurl, $pagevar);
1765 return $this->render($pb);
1769 * Internal implementation of paging bar rendering.
1770 * @param paging_bar $pagingbar
1773 protected function render_paging_bar(paging_bar $pagingbar) {
1775 $pagingbar = clone($pagingbar);
1776 $pagingbar->prepare($this, $this->page, $this->target);
1778 if ($pagingbar->totalcount > $pagingbar->perpage) {
1779 $output .= get_string('page') . ':';
1781 if (!empty($pagingbar->previouslink)) {
1782 $output .= ' (' . $pagingbar->previouslink . ') ';
1785 if (!empty($pagingbar->firstlink)) {
1786 $output .= ' ' . $pagingbar->firstlink . ' ...';
1789 foreach ($pagingbar->pagelinks as $link) {
1790 $output .= "  $link";
1793 if (!empty($pagingbar->lastlink)) {
1794 $output .= ' ...' . $pagingbar->lastlink . ' ';
1797 if (!empty($pagingbar->nextlink)) {
1798 $output .= '  (' . $pagingbar->nextlink . ')';
1802 return html_writer::tag('div', $output, array('class' => 'paging'));
1806 * Render a HTML table
1808 * @param object $table {@link html_table} instance containing all the information needed
1809 * @return string the HTML to output.
1811 public function table(html_table $table) {
1812 $table = clone($table);
1813 $table->prepare($this, $this->page, $this->target);
1814 $attributes = array(
1816 'width' => $table->width,
1817 'summary' => $table->summary,
1818 'cellpadding' => $table->cellpadding,
1819 'cellspacing' => $table->cellspacing,
1820 'class' => $table->get_classes_string());
1821 $output = html_writer::start_tag('table', $attributes) . "\n";
1825 if (!empty($table->head)) {
1826 $countcols = count($table->head);
1827 $output .= html_writer::start_tag('thead', $table->headclasses) . "\n";
1828 $output .= html_writer::start_tag('tr', array()) . "\n";
1829 $keys = array_keys($table->head);
1830 $lastkey = end($keys);
1832 foreach ($table->head as $key => $heading) {
1833 // Convert plain string headings into html_table_cell objects
1834 if (!($heading instanceof html_table_cell)) {
1835 $headingtext = $heading;
1836 $heading = new html_table_cell();
1837 $heading->text = $headingtext;
1838 $heading->header = true;
1841 if ($heading->header !== false) {
1842 $heading->header = true;
1845 $heading->add_classes(array('header', 'c' . $key));
1846 if (isset($table->headspan[$key]) && $table->headspan[$key] > 1) {
1847 $heading->colspan = $table->headspan[$key];
1848 $countcols += $table->headspan[$key] - 1;
1851 if ($key == $lastkey) {
1852 $heading->add_class('lastcol');
1854 if (isset($table->colclasses[$key])) {
1855 $heading->add_class($table->colclasses[$key]);
1857 if ($table->rotateheaders) {
1858 // we need to wrap the heading content
1859 $heading->text = html_writer::tag('span', $heading->text);
1862 $attributes = array(
1863 'style' => $table->align[$key] . $table->size[$key] . $heading->style,
1864 'class' => $heading->get_classes_string(),
1865 'scope' => $heading->scope,
1866 'colspan' => $heading->colspan);
1869 if ($heading->header === true) {
1872 $output .= html_writer::tag($tagtype, $heading->text, $attributes) . "\n";
1874 $output .= html_writer::end_tag('tr') . "\n";
1875 $output .= html_writer::end_tag('thead') . "\n";
1877 if (empty($table->data)) {
1878 // For valid XHTML strict every table must contain either a valid tr
1879 // or a valid tbody... both of which must contain a valid td
1880 $output .= html_writer::start_tag('tbody', array('class' => renderer_base::prepare_classes($table->bodyclasses).' empty'));
1881 $output .= html_writer::tag('tr', html_writer::tag('td', '', array('colspan'=>count($table->head))));
1882 $output .= html_writer::end_tag('tbody');
1886 if (!empty($table->data)) {
1888 $keys = array_keys($table->data);
1889 $lastrowkey = end($keys);
1890 $output .= html_writer::start_tag('tbody', array('class' => renderer_base::prepare_classes($table->bodyclasses))) . "\n";
1892 foreach ($table->data as $key => $row) {
1893 if (($row === 'hr') && ($countcols)) {
1894 $output .= html_writer::tag('td', html_writer::tag('div', '', array('class' => 'tabledivider')), array('colspan' => $countcols)) . "\n";
1896 // Convert array rows to html_table_rows and cell strings to html_table_cell objects
1897 if (!($row instanceof html_table_row)) {
1898 $newrow = new html_table_row();
1900 foreach ($row as $unused => $item) {
1901 $cell = new html_table_cell();
1902 $cell->text = $item;
1903 $newrow->cells[] = $cell;
1908 $oddeven = $oddeven ? 0 : 1;
1909 if (isset($table->rowclasses[$key])) {
1910 $row->add_classes(array_unique(html_component::clean_classes($table->rowclasses[$key])));
1913 $row->add_class('r' . $oddeven);
1914 if ($key == $lastrowkey) {
1915 $row->add_class('lastrow');
1918 $output .= html_writer::start_tag('tr', array('class' => $row->get_classes_string(), 'style' => $row->style, 'id' => $row->id)) . "\n";
1919 $keys2 = array_keys($row->cells);
1920 $lastkey = end($keys2);
1922 foreach ($row->cells as $key => $cell) {
1923 if (!($cell instanceof html_table_cell)) {
1924 $mycell = new html_table_cell();
1925 $mycell->text = $cell;
1929 if (isset($table->colclasses[$key])) {
1930 $cell->add_classes(array_unique(html_component::clean_classes($table->colclasses[$key])));
1933 $cell->add_classes('cell');
1934 $cell->add_classes('c' . $key);
1935 if ($key == $lastkey) {
1936 $cell->add_classes('lastcol');
1939 $tdstyle .= isset($table->align[$key]) ? $table->align[$key] : '';
1940 $tdstyle .= isset($table->size[$key]) ? $table->size[$key] : '';
1941 $tdstyle .= isset($table->wrap[$key]) ? $table->wrap[$key] : '';
1942 $tdattributes = array(
1943 'style' => $tdstyle . $cell->style,
1944 'colspan' => $cell->colspan,
1945 'rowspan' => $cell->rowspan,
1947 'class' => $cell->get_classes_string(),
1948 'abbr' => $cell->abbr,
1949 'scope' => $cell->scope,
1950 'title' => $cell->title);
1952 if ($cell->header === true) {
1955 $output .= html_writer::tag($tagtype, $cell->text, $tdattributes) . "\n";
1958 $output .= html_writer::end_tag('tr') . "\n";
1960 $output .= html_writer::end_tag('tbody') . "\n";
1962 $output .= html_writer::end_tag('table') . "\n";
1964 if ($table->rotateheaders && can_use_rotated_text()) {
1965 $this->page->requires->yui2_lib('event');
1966 $this->page->requires->js('/course/report/progress/textrotate.js');
1973 * Output the place a skip link goes to.
1974 * @param string $id The target name from the corresponding $PAGE->requires->skip_link_to($target) call.
1975 * @return string the HTML to output.
1977 public function skip_link_target($id = null) {
1978 return html_writer::tag('span', '', array('id' => $id));
1983 * @param string $text The text of the heading
1984 * @param int $level The level of importance of the heading. Defaulting to 2
1985 * @param string $classes A space-separated list of CSS classes
1986 * @param string $id An optional ID
1987 * @return string the HTML to output.
1989 public function heading($text, $level = 2, $classes = 'main', $id = null) {
1990 $level = (integer) $level;
1991 if ($level < 1 or $level > 6) {
1992 throw new coding_exception('Heading level must be an integer between 1 and 6.');
1994 return html_writer::tag('h' . $level, $text, array('id' => $id, 'class' => renderer_base::prepare_classes($classes)));
1999 * @param string $contents The contents of the box
2000 * @param string $classes A space-separated list of CSS classes
2001 * @param string $id An optional ID
2002 * @return string the HTML to output.
2004 public function box($contents, $classes = 'generalbox', $id = null) {
2005 return $this->box_start($classes, $id) . $contents . $this->box_end();
2009 * Outputs the opening section of a box.
2010 * @param string $classes A space-separated list of CSS classes
2011 * @param string $id An optional ID
2012 * @return string the HTML to output.
2014 public function box_start($classes = 'generalbox', $id = null) {
2015 $this->opencontainers->push('box', html_writer::end_tag('div'));
2016 return html_writer::start_tag('div', array('id' => $id,
2017 'class' => 'box ' . renderer_base::prepare_classes($classes)));
2021 * Outputs the closing section of a box.
2022 * @return string the HTML to output.
2024 public function box_end() {
2025 return $this->opencontainers->pop('box');
2029 * Outputs a container.
2030 * @param string $contents The contents of the box
2031 * @param string $classes A space-separated list of CSS classes
2032 * @param string $id An optional ID
2033 * @return string the HTML to output.
2035 public function container($contents, $classes = null, $id = null) {
2036 return $this->container_start($classes, $id) . $contents . $this->container_end();
2040 * Outputs the opening section of a container.
2041 * @param string $classes A space-separated list of CSS classes
2042 * @param string $id An optional ID
2043 * @return string the HTML to output.
2045 public function container_start($classes = null, $id = null) {
2046 $this->opencontainers->push('container', html_writer::end_tag('div'));
2047 return html_writer::start_tag('div', array('id' => $id,
2048 'class' => renderer_base::prepare_classes($classes)));
2052 * Outputs the closing section of a container.
2053 * @return string the HTML to output.
2055 public function container_end() {
2056 return $this->opencontainers->pop('container');
2060 * Make nested HTML lists out of the items
2062 * The resulting list will look something like this:
2066 * <<li>><div class='tree_item parent'>(item contents)</div>
2068 * <<li>><div class='tree_item'>(item contents)</div><</li>>
2074 * @param array[]tree_item $items
2075 * @param array[string]string $attrs html attributes passed to the top of
2077 * @return string HTML
2079 function tree_block_contents($items, $attrs=array()) {
2080 // exit if empty, we don't want an empty ul element
2081 if (empty($items)) {
2084 // array of nested li elements
2086 foreach ($items as $item) {
2087 // this applies to the li item which contains all child lists too
2088 $content = $item->content($this);
2089 $liclasses = array($item->get_css_type());
2090 if (!$item->forceopen || (!$item->forceopen && $item->collapse) || (count($item->children)==0 && $item->nodetype==navigation_node::NODETYPE_BRANCH)) {
2091 $liclasses[] = 'collapsed';
2093 if ($item->isactive === true) {
2094 $liclasses[] = 'current_branch';
2096 $liattr = array('class'=>join(' ',$liclasses));
2097 // class attribute on the div item which only contains the item content
2098 $divclasses = array('tree_item');
2099 if (!empty($item->children) || $item->nodetype==navigation_node::NODETYPE_BRANCH) {
2100 $divclasses[] = 'branch';
2102 $divclasses[] = 'leaf';
2104 if (!empty($item->classes) && count($item->classes)>0) {
2105 $divclasses[] = join(' ', $item->classes);
2107 $divattr = array('class'=>join(' ', $divclasses));
2108 if (!empty($item->id)) {
2109 $divattr['id'] = $item->id;
2111 $content = html_writer::tag('p', $content, $divattr) . $this->tree_block_contents($item->children);
2112 if (!empty($item->preceedwithhr) && $item->preceedwithhr===true) {
2113 $content = html_writer::empty_tag('hr') . $content;
2115 $content = html_writer::tag('li', $content, $liattr);
2118 return html_writer::tag('ul', implode("\n", $lis), $attrs);
2122 * Return the navbar content so that it can be echoed out by the layout
2123 * @return string XHTML navbar
2125 public function navbar() {
2126 return $this->page->navbar->content();
2130 * Accessibility: Right arrow-like character is
2131 * used in the breadcrumb trail, course navigation menu
2132 * (previous/next activity), calendar, and search forum block.
2133 * If the theme does not set characters, appropriate defaults
2134 * are set automatically. Please DO NOT
2135 * use < > » - these are confusing for blind users.
2138 public function rarrow() {
2139 return $this->page->theme->rarrow;
2143 * Accessibility: Right arrow-like character is
2144 * used in the breadcrumb trail, course navigation menu
2145 * (previous/next activity), calendar, and search forum block.
2146 * If the theme does not set characters, appropriate defaults
2147 * are set automatically. Please DO NOT
2148 * use < > » - these are confusing for blind users.
2151 public function larrow() {
2152 return $this->page->theme->larrow;
2156 * Returns the colours of the small MP3 player
2159 public function filter_mediaplugin_colors() {
2160 return $this->page->theme->filter_mediaplugin_colors;
2164 * Returns the colours of the big MP3 player
2167 public function resource_mp3player_colors() {
2168 return $this->page->theme->resource_mp3player_colors;
2176 * A renderer that generates output for command-line scripts.
2178 * The implementation of this renderer is probably incomplete.
2180 * @copyright 2009 Tim Hunt
2181 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2184 class core_renderer_cli extends core_renderer {
2186 * Returns the page header.
2187 * @return string HTML fragment
2189 public function header() {
2190 output_starting_hook();
2191 return $this->page->heading . "\n";
2195 * Returns a template fragment representing a Heading.
2196 * @param string $text The text of the heading
2197 * @param int $level The level of importance of the heading
2198 * @param string $classes A space-separated list of CSS classes
2199 * @param string $id An optional ID
2200 * @return string A template fragment for a heading
2202 public function heading($text, $level, $classes = 'main', $id = null) {
2206 return '=>' . $text;
2208 return '-->' . $text;
2215 * Returns a template fragment representing a fatal error.
2216 * @param string $message The message to output
2217 * @param string $moreinfourl URL where more info can be found about the error
2218 * @param string $link Link for the Continue button
2219 * @param array $backtrace The execution backtrace
2220 * @param string $debuginfo Debugging information
2221 * @return string A template fragment for a fatal error
2223 public function fatal_error($message, $moreinfourl, $link, $backtrace, $debuginfo = null) {
2224 $output = "!!! $message !!!\n";
2226 if (debugging('', DEBUG_DEVELOPER)) {
2227 if (!empty($debuginfo)) {
2228 $this->notification($debuginfo, 'notifytiny');
2230 if (!empty($backtrace)) {
2231 $this->notification('Stack trace: ' . format_backtrace($backtrace, true), 'notifytiny');
2237 * Returns a template fragment representing a notification.
2238 * @param string $message The message to include
2239 * @param string $classes A space-separated list of CSS classes
2240 * @return string A template fragment for a notification
2242 public function notification($message, $classes = 'notifyproblem') {
2243 $message = clean_text($message);
2244 if ($classes === 'notifysuccess') {
2245 return "++ $message ++\n";
2247 return "!! $message !!\n";