on-demand release 3.8dev+
[moodle.git] / lib / outputcomponents.php
blobdd0834b3a31ecf0e95421e64f972680d6af345b2
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 representing HTML elements, used by $OUTPUT methods
20 * Please see http://docs.moodle.org/en/Developement:How_Moodle_outputs_HTML
21 * for an overview.
23 * @package core
24 * @category output
25 * @copyright 2009 Tim Hunt
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 defined('MOODLE_INTERNAL') || die();
31 /**
32 * Interface marking other classes as suitable for renderer_base::render()
34 * @copyright 2010 Petr Skoda (skodak) info@skodak.org
35 * @package core
36 * @category output
38 interface renderable {
39 // intentionally empty
42 /**
43 * Interface marking other classes having the ability to export their data for use by templates.
45 * @copyright 2015 Damyon Wiese
46 * @package core
47 * @category output
48 * @since 2.9
50 interface templatable {
52 /**
53 * Function to export the renderer data in a format that is suitable for a
54 * mustache template. This means:
55 * 1. No complex types - only stdClass, array, int, string, float, bool
56 * 2. Any additional info that is required for the template is pre-calculated (e.g. capability checks).
58 * @param renderer_base $output Used to do a final render of any components that need to be rendered for export.
59 * @return stdClass|array
61 public function export_for_template(renderer_base $output);
64 /**
65 * Data structure representing a file picker.
67 * @copyright 2010 Dongsheng Cai
68 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
69 * @since Moodle 2.0
70 * @package core
71 * @category output
73 class file_picker implements renderable {
75 /**
76 * @var stdClass An object containing options for the file picker
78 public $options;
80 /**
81 * Constructs a file picker object.
83 * The following are possible options for the filepicker:
84 * - accepted_types (*)
85 * - return_types (FILE_INTERNAL)
86 * - env (filepicker)
87 * - client_id (uniqid)
88 * - itemid (0)
89 * - maxbytes (-1)
90 * - maxfiles (1)
91 * - buttonname (false)
93 * @param stdClass $options An object containing options for the file picker.
95 public function __construct(stdClass $options) {
96 global $CFG, $USER, $PAGE;
97 require_once($CFG->dirroot. '/repository/lib.php');
98 $defaults = array(
99 'accepted_types'=>'*',
100 'return_types'=>FILE_INTERNAL,
101 'env' => 'filepicker',
102 'client_id' => uniqid(),
103 'itemid' => 0,
104 'maxbytes'=>-1,
105 'maxfiles'=>1,
106 'buttonname'=>false
108 foreach ($defaults as $key=>$value) {
109 if (empty($options->$key)) {
110 $options->$key = $value;
114 $options->currentfile = '';
115 if (!empty($options->itemid)) {
116 $fs = get_file_storage();
117 $usercontext = context_user::instance($USER->id);
118 if (empty($options->filename)) {
119 if ($files = $fs->get_area_files($usercontext->id, 'user', 'draft', $options->itemid, 'id DESC', false)) {
120 $file = reset($files);
122 } else {
123 $file = $fs->get_file($usercontext->id, 'user', 'draft', $options->itemid, $options->filepath, $options->filename);
125 if (!empty($file)) {
126 $options->currentfile = html_writer::link(moodle_url::make_draftfile_url($file->get_itemid(), $file->get_filepath(), $file->get_filename()), $file->get_filename());
130 // initilise options, getting files in root path
131 $this->options = initialise_filepicker($options);
133 // copying other options
134 foreach ($options as $name=>$value) {
135 if (!isset($this->options->$name)) {
136 $this->options->$name = $value;
143 * Data structure representing a user picture.
145 * @copyright 2009 Nicolas Connault, 2010 Petr Skoda
146 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
147 * @since Modle 2.0
148 * @package core
149 * @category output
151 class user_picture implements renderable {
153 * @var array List of mandatory fields in user record here. (do not include
154 * TEXT columns because it would break SELECT DISTINCT in MSSQL and ORACLE)
156 protected static $fields = array('id', 'picture', 'firstname', 'lastname', 'firstnamephonetic', 'lastnamephonetic',
157 'middlename', 'alternatename', 'imagealt', 'email');
160 * @var stdClass A user object with at least fields all columns specified
161 * in $fields array constant set.
163 public $user;
166 * @var int The course id. Used when constructing the link to the user's
167 * profile, page course id used if not specified.
169 public $courseid;
172 * @var bool Add course profile link to image
174 public $link = true;
177 * @var int Size in pixels. Special values are (true/1 = 100px) and
178 * (false/0 = 35px)
179 * for backward compatibility.
181 public $size = 35;
184 * @var bool Add non-blank alt-text to the image.
185 * Default true, set to false when image alt just duplicates text in screenreaders.
187 public $alttext = true;
190 * @var bool Whether or not to open the link in a popup window.
192 public $popup = false;
195 * @var string Image class attribute
197 public $class = 'userpicture';
200 * @var bool Whether to be visible to screen readers.
202 public $visibletoscreenreaders = true;
205 * @var bool Whether to include the fullname in the user picture link.
207 public $includefullname = false;
210 * @var mixed Include user authentication token. True indicates to generate a token for current user, and integer value
211 * indicates to generate a token for the user whose id is the value indicated.
213 public $includetoken = false;
216 * User picture constructor.
218 * @param stdClass $user user record with at least id, picture, imagealt, firstname and lastname set.
219 * It is recommended to add also contextid of the user for performance reasons.
221 public function __construct(stdClass $user) {
222 global $DB;
224 if (empty($user->id)) {
225 throw new coding_exception('User id is required when printing user avatar image.');
228 // only touch the DB if we are missing data and complain loudly...
229 $needrec = false;
230 foreach (self::$fields as $field) {
231 if (!array_key_exists($field, $user)) {
232 $needrec = true;
233 debugging('Missing '.$field.' property in $user object, this is a performance problem that needs to be fixed by a developer. '
234 .'Please use user_picture::fields() to get the full list of required fields.', DEBUG_DEVELOPER);
235 break;
239 if ($needrec) {
240 $this->user = $DB->get_record('user', array('id'=>$user->id), self::fields(), MUST_EXIST);
241 } else {
242 $this->user = clone($user);
247 * Returns a list of required user fields, useful when fetching required user info from db.
249 * In some cases we have to fetch the user data together with some other information,
250 * the idalias is useful there because the id would otherwise override the main
251 * id of the result record. Please note it has to be converted back to id before rendering.
253 * @param string $tableprefix name of database table prefix in query
254 * @param array $extrafields extra fields to be included in result (do not include TEXT columns because it would break SELECT DISTINCT in MSSQL and ORACLE)
255 * @param string $idalias alias of id field
256 * @param string $fieldprefix prefix to add to all columns in their aliases, does not apply to 'id'
257 * @return string
259 public static function fields($tableprefix = '', array $extrafields = NULL, $idalias = 'id', $fieldprefix = '') {
260 if (!$tableprefix and !$extrafields and !$idalias) {
261 return implode(',', self::$fields);
263 if ($tableprefix) {
264 $tableprefix .= '.';
266 foreach (self::$fields as $field) {
267 if ($field === 'id' and $idalias and $idalias !== 'id') {
268 $fields[$field] = "$tableprefix$field AS $idalias";
269 } else {
270 if ($fieldprefix and $field !== 'id') {
271 $fields[$field] = "$tableprefix$field AS $fieldprefix$field";
272 } else {
273 $fields[$field] = "$tableprefix$field";
277 // add extra fields if not already there
278 if ($extrafields) {
279 foreach ($extrafields as $e) {
280 if ($e === 'id' or isset($fields[$e])) {
281 continue;
283 if ($fieldprefix) {
284 $fields[$e] = "$tableprefix$e AS $fieldprefix$e";
285 } else {
286 $fields[$e] = "$tableprefix$e";
290 return implode(',', $fields);
294 * Extract the aliased user fields from a given record
296 * Given a record that was previously obtained using {@link self::fields()} with aliases,
297 * this method extracts user related unaliased fields.
299 * @param stdClass $record containing user picture fields
300 * @param array $extrafields extra fields included in the $record
301 * @param string $idalias alias of the id field
302 * @param string $fieldprefix prefix added to all columns in their aliases, does not apply to 'id'
303 * @return stdClass object with unaliased user fields
305 public static function unalias(stdClass $record, array $extrafields = null, $idalias = 'id', $fieldprefix = '') {
307 if (empty($idalias)) {
308 $idalias = 'id';
311 $return = new stdClass();
313 foreach (self::$fields as $field) {
314 if ($field === 'id') {
315 if (property_exists($record, $idalias)) {
316 $return->id = $record->{$idalias};
318 } else {
319 if (property_exists($record, $fieldprefix.$field)) {
320 $return->{$field} = $record->{$fieldprefix.$field};
324 // add extra fields if not already there
325 if ($extrafields) {
326 foreach ($extrafields as $e) {
327 if ($e === 'id' or property_exists($return, $e)) {
328 continue;
330 $return->{$e} = $record->{$fieldprefix.$e};
334 return $return;
338 * Works out the URL for the users picture.
340 * This method is recommended as it avoids costly redirects of user pictures
341 * if requests are made for non-existent files etc.
343 * @param moodle_page $page
344 * @param renderer_base $renderer
345 * @return moodle_url
347 public function get_url(moodle_page $page, renderer_base $renderer = null) {
348 global $CFG;
350 if (is_null($renderer)) {
351 $renderer = $page->get_renderer('core');
354 // Sort out the filename and size. Size is only required for the gravatar
355 // implementation presently.
356 if (empty($this->size)) {
357 $filename = 'f2';
358 $size = 35;
359 } else if ($this->size === true or $this->size == 1) {
360 $filename = 'f1';
361 $size = 100;
362 } else if ($this->size > 100) {
363 $filename = 'f3';
364 $size = (int)$this->size;
365 } else if ($this->size >= 50) {
366 $filename = 'f1';
367 $size = (int)$this->size;
368 } else {
369 $filename = 'f2';
370 $size = (int)$this->size;
373 $defaulturl = $renderer->image_url('u/'.$filename); // default image
375 if ((!empty($CFG->forcelogin) and !isloggedin()) ||
376 (!empty($CFG->forceloginforprofileimage) && (!isloggedin() || isguestuser()))) {
377 // Protect images if login required and not logged in;
378 // also if login is required for profile images and is not logged in or guest
379 // do not use require_login() because it is expensive and not suitable here anyway.
380 return $defaulturl;
383 // First try to detect deleted users - but do not read from database for performance reasons!
384 if (!empty($this->user->deleted) or strpos($this->user->email, '@') === false) {
385 // All deleted users should have email replaced by md5 hash,
386 // all active users are expected to have valid email.
387 return $defaulturl;
390 // Did the user upload a picture?
391 if ($this->user->picture > 0) {
392 if (!empty($this->user->contextid)) {
393 $contextid = $this->user->contextid;
394 } else {
395 $context = context_user::instance($this->user->id, IGNORE_MISSING);
396 if (!$context) {
397 // This must be an incorrectly deleted user, all other users have context.
398 return $defaulturl;
400 $contextid = $context->id;
403 $path = '/';
404 if (clean_param($page->theme->name, PARAM_THEME) == $page->theme->name) {
405 // We append the theme name to the file path if we have it so that
406 // in the circumstance that the profile picture is not available
407 // when the user actually requests it they still get the profile
408 // picture for the correct theme.
409 $path .= $page->theme->name.'/';
411 // Set the image URL to the URL for the uploaded file and return.
412 $url = moodle_url::make_pluginfile_url(
413 $contextid, 'user', 'icon', null, $path, $filename, false, $this->includetoken);
414 $url->param('rev', $this->user->picture);
415 return $url;
418 if ($this->user->picture == 0 and !empty($CFG->enablegravatar)) {
419 // Normalise the size variable to acceptable bounds
420 if ($size < 1 || $size > 512) {
421 $size = 35;
423 // Hash the users email address
424 $md5 = md5(strtolower(trim($this->user->email)));
425 // Build a gravatar URL with what we know.
427 // Find the best default image URL we can (MDL-35669)
428 if (empty($CFG->gravatardefaulturl)) {
429 $absoluteimagepath = $page->theme->resolve_image_location('u/'.$filename, 'core');
430 if (strpos($absoluteimagepath, $CFG->dirroot) === 0) {
431 $gravatardefault = $CFG->wwwroot . substr($absoluteimagepath, strlen($CFG->dirroot));
432 } else {
433 $gravatardefault = $CFG->wwwroot . '/pix/u/' . $filename . '.png';
435 } else {
436 $gravatardefault = $CFG->gravatardefaulturl;
439 // If the currently requested page is https then we'll return an
440 // https gravatar page.
441 if (is_https()) {
442 return new moodle_url("https://secure.gravatar.com/avatar/{$md5}", array('s' => $size, 'd' => $gravatardefault));
443 } else {
444 return new moodle_url("http://www.gravatar.com/avatar/{$md5}", array('s' => $size, 'd' => $gravatardefault));
448 return $defaulturl;
453 * Data structure representing a help icon.
455 * @copyright 2010 Petr Skoda (info@skodak.org)
456 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
457 * @since Moodle 2.0
458 * @package core
459 * @category output
461 class help_icon implements renderable, templatable {
464 * @var string lang pack identifier (without the "_help" suffix),
465 * both get_string($identifier, $component) and get_string($identifier.'_help', $component)
466 * must exist.
468 public $identifier;
471 * @var string Component name, the same as in get_string()
473 public $component;
476 * @var string Extra descriptive text next to the icon
478 public $linktext = null;
481 * Constructor
483 * @param string $identifier string for help page title,
484 * string with _help suffix is used for the actual help text.
485 * string with _link suffix is used to create a link to further info (if it exists)
486 * @param string $component
488 public function __construct($identifier, $component) {
489 $this->identifier = $identifier;
490 $this->component = $component;
494 * Verifies that both help strings exists, shows debug warnings if not
496 public function diag_strings() {
497 $sm = get_string_manager();
498 if (!$sm->string_exists($this->identifier, $this->component)) {
499 debugging("Help title string does not exist: [$this->identifier, $this->component]");
501 if (!$sm->string_exists($this->identifier.'_help', $this->component)) {
502 debugging("Help contents string does not exist: [{$this->identifier}_help, $this->component]");
507 * Export this data so it can be used as the context for a mustache template.
509 * @param renderer_base $output Used to do a final render of any components that need to be rendered for export.
510 * @return array
512 public function export_for_template(renderer_base $output) {
513 global $CFG;
515 $title = get_string($this->identifier, $this->component);
517 if (empty($this->linktext)) {
518 $alt = get_string('helpprefix2', '', trim($title, ". \t"));
519 } else {
520 $alt = get_string('helpwiththis');
523 $data = get_formatted_help_string($this->identifier, $this->component, false);
525 $data->alt = $alt;
526 $data->icon = (new pix_icon('help', $alt, 'core', ['class' => 'iconhelp']))->export_for_template($output);
527 $data->linktext = $this->linktext;
528 $data->title = get_string('helpprefix2', '', trim($title, ". \t"));
530 $options = [
531 'component' => $this->component,
532 'identifier' => $this->identifier,
533 'lang' => current_language()
536 // Debugging feature lets you display string identifier and component.
537 if (isset($CFG->debugstringids) && $CFG->debugstringids && optional_param('strings', 0, PARAM_INT)) {
538 $options['strings'] = 1;
541 $data->url = (new moodle_url('/help.php', $options))->out(false);
542 $data->ltr = !right_to_left();
543 return $data;
549 * Data structure representing an icon font.
551 * @copyright 2016 Damyon Wiese
552 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
553 * @package core
554 * @category output
556 class pix_icon_font implements templatable {
559 * @var pix_icon $pixicon The original icon.
561 private $pixicon = null;
564 * @var string $key The mapped key.
566 private $key;
569 * @var bool $mapped The icon could not be mapped.
571 private $mapped;
574 * Constructor
576 * @param pix_icon $pixicon The original icon
578 public function __construct(pix_icon $pixicon) {
579 global $PAGE;
581 $this->pixicon = $pixicon;
582 $this->mapped = false;
583 $iconsystem = \core\output\icon_system::instance();
585 $this->key = $iconsystem->remap_icon_name($pixicon->pix, $pixicon->component);
586 if (!empty($this->key)) {
587 $this->mapped = true;
592 * Return true if this pix_icon was successfully mapped to an icon font.
594 * @return bool
596 public function is_mapped() {
597 return $this->mapped;
601 * Export this data so it can be used as the context for a mustache template.
603 * @param renderer_base $output Used to do a final render of any components that need to be rendered for export.
604 * @return array
606 public function export_for_template(renderer_base $output) {
608 $pixdata = $this->pixicon->export_for_template($output);
610 $title = isset($this->pixicon->attributes['title']) ? $this->pixicon->attributes['title'] : '';
611 $alt = isset($this->pixicon->attributes['alt']) ? $this->pixicon->attributes['alt'] : '';
612 if (empty($title)) {
613 $title = $alt;
615 $data = array(
616 'extraclasses' => $pixdata['extraclasses'],
617 'title' => $title,
618 'alt' => $alt,
619 'key' => $this->key
622 return $data;
627 * Data structure representing an icon subtype.
629 * @copyright 2016 Damyon Wiese
630 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
631 * @package core
632 * @category output
634 class pix_icon_fontawesome extends pix_icon_font {
639 * Data structure representing an icon.
641 * @copyright 2010 Petr Skoda
642 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
643 * @since Moodle 2.0
644 * @package core
645 * @category output
647 class pix_icon implements renderable, templatable {
650 * @var string The icon name
652 var $pix;
655 * @var string The component the icon belongs to.
657 var $component;
660 * @var array An array of attributes to use on the icon
662 var $attributes = array();
665 * Constructor
667 * @param string $pix short icon name
668 * @param string $alt The alt text to use for the icon
669 * @param string $component component name
670 * @param array $attributes html attributes
672 public function __construct($pix, $alt, $component='moodle', array $attributes = null) {
673 global $PAGE;
675 $this->pix = $pix;
676 $this->component = $component;
677 $this->attributes = (array)$attributes;
679 if (empty($this->attributes['class'])) {
680 $this->attributes['class'] = '';
683 // Set an additional class for big icons so that they can be styled properly.
684 if (substr($pix, 0, 2) === 'b/') {
685 $this->attributes['class'] .= ' iconsize-big';
688 // If the alt is empty, don't place it in the attributes, otherwise it will override parent alt text.
689 if (!is_null($alt)) {
690 $this->attributes['alt'] = $alt;
692 // If there is no title, set it to the attribute.
693 if (!isset($this->attributes['title'])) {
694 $this->attributes['title'] = $this->attributes['alt'];
696 } else {
697 unset($this->attributes['alt']);
700 if (empty($this->attributes['title'])) {
701 // Remove the title attribute if empty, we probably want to use the parent node's title
702 // and some browsers might overwrite it with an empty title.
703 unset($this->attributes['title']);
706 // Hide icons from screen readers that have no alt.
707 if (empty($this->attributes['alt'])) {
708 $this->attributes['aria-hidden'] = 'true';
713 * Export this data so it can be used as the context for a mustache template.
715 * @param renderer_base $output Used to do a final render of any components that need to be rendered for export.
716 * @return array
718 public function export_for_template(renderer_base $output) {
719 $attributes = $this->attributes;
720 $extraclasses = '';
722 foreach ($attributes as $key => $item) {
723 if ($key == 'class') {
724 $extraclasses = $item;
725 unset($attributes[$key]);
726 break;
730 $attributes['src'] = $output->image_url($this->pix, $this->component)->out(false);
731 $templatecontext = array();
732 foreach ($attributes as $name => $value) {
733 $templatecontext[] = array('name' => $name, 'value' => $value);
735 $title = isset($attributes['title']) ? $attributes['title'] : '';
736 if (empty($title)) {
737 $title = isset($attributes['alt']) ? $attributes['alt'] : '';
739 $data = array(
740 'attributes' => $templatecontext,
741 'extraclasses' => $extraclasses
744 return $data;
748 * Much simpler version of export that will produce the data required to render this pix with the
749 * pix helper in a mustache tag.
751 * @return array
753 public function export_for_pix() {
754 $title = isset($this->attributes['title']) ? $this->attributes['title'] : '';
755 if (empty($title)) {
756 $title = isset($this->attributes['alt']) ? $this->attributes['alt'] : '';
758 return [
759 'key' => $this->pix,
760 'component' => $this->component,
761 'title' => $title
767 * Data structure representing an activity icon.
769 * The difference is that activity icons will always render with the standard icon system (no font icons).
771 * @copyright 2017 Damyon Wiese
772 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
773 * @package core
775 class image_icon extends pix_icon {
779 * Data structure representing an emoticon image
781 * @copyright 2010 David Mudrak
782 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
783 * @since Moodle 2.0
784 * @package core
785 * @category output
787 class pix_emoticon extends pix_icon implements renderable {
790 * Constructor
791 * @param string $pix short icon name
792 * @param string $alt alternative text
793 * @param string $component emoticon image provider
794 * @param array $attributes explicit HTML attributes
796 public function __construct($pix, $alt, $component = 'moodle', array $attributes = array()) {
797 if (empty($attributes['class'])) {
798 $attributes['class'] = 'emoticon';
800 parent::__construct($pix, $alt, $component, $attributes);
805 * Data structure representing a simple form with only one button.
807 * @copyright 2009 Petr Skoda
808 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
809 * @since Moodle 2.0
810 * @package core
811 * @category output
813 class single_button implements renderable {
816 * @var moodle_url Target url
818 public $url;
821 * @var string Button label
823 public $label;
826 * @var string Form submit method post or get
828 public $method = 'post';
831 * @var string Wrapping div class
833 public $class = 'singlebutton';
836 * @var bool True if button is primary button. Used for styling.
838 public $primary = false;
841 * @var bool True if button disabled, false if normal
843 public $disabled = false;
846 * @var string Button tooltip
848 public $tooltip = null;
851 * @var string Form id
853 public $formid;
856 * @var array List of attached actions
858 public $actions = array();
861 * @var array $params URL Params
863 public $params;
866 * @var string Action id
868 public $actionid;
871 * @var array
873 protected $attributes = [];
876 * Constructor
877 * @param moodle_url $url
878 * @param string $label button text
879 * @param string $method get or post submit method
880 * @param array $attributes Attributes for the HTML button tag
882 public function __construct(moodle_url $url, $label, $method='post', $primary=false, $attributes = []) {
883 $this->url = clone($url);
884 $this->label = $label;
885 $this->method = $method;
886 $this->primary = $primary;
887 $this->attributes = $attributes;
891 * Shortcut for adding a JS confirm dialog when the button is clicked.
892 * The message must be a yes/no question.
894 * @param string $confirmmessage The yes/no confirmation question. If "Yes" is clicked, the original action will occur.
896 public function add_confirm_action($confirmmessage) {
897 $this->add_action(new confirm_action($confirmmessage));
901 * Add action to the button.
902 * @param component_action $action
904 public function add_action(component_action $action) {
905 $this->actions[] = $action;
909 * Sets an attribute for the HTML button tag.
911 * @param string $name The attribute name
912 * @param mixed $value The value
913 * @return null
915 public function set_attribute($name, $value) {
916 $this->attributes[$name] = $value;
920 * Export data.
922 * @param renderer_base $output Renderer.
923 * @return stdClass
925 public function export_for_template(renderer_base $output) {
926 $url = $this->method === 'get' ? $this->url->out_omit_querystring(true) : $this->url->out_omit_querystring();
928 $data = new stdClass();
929 $data->id = html_writer::random_id('single_button');
930 $data->formid = $this->formid;
931 $data->method = $this->method;
932 $data->url = $url === '' ? '#' : $url;
933 $data->label = $this->label;
934 $data->classes = $this->class;
935 $data->disabled = $this->disabled;
936 $data->tooltip = $this->tooltip;
937 $data->primary = $this->primary;
939 $data->attributes = [];
940 foreach ($this->attributes as $key => $value) {
941 $data->attributes[] = ['name' => $key, 'value' => $value];
944 // Form parameters.
945 $params = $this->url->params();
946 if ($this->method === 'post') {
947 $params['sesskey'] = sesskey();
949 $data->params = array_map(function($key) use ($params) {
950 return ['name' => $key, 'value' => $params[$key]];
951 }, array_keys($params));
953 // Button actions.
954 $actions = $this->actions;
955 $data->actions = array_map(function($action) use ($output) {
956 return $action->export_for_template($output);
957 }, $actions);
958 $data->hasactions = !empty($data->actions);
960 return $data;
966 * Simple form with just one select field that gets submitted automatically.
968 * If JS not enabled small go button is printed too.
970 * @copyright 2009 Petr Skoda
971 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
972 * @since Moodle 2.0
973 * @package core
974 * @category output
976 class single_select implements renderable, templatable {
979 * @var moodle_url Target url - includes hidden fields
981 var $url;
984 * @var string Name of the select element.
986 var $name;
989 * @var array $options associative array value=>label ex.: array(1=>'One, 2=>Two)
990 * it is also possible to specify optgroup as complex label array ex.:
991 * array(array('Odd'=>array(1=>'One', 3=>'Three)), array('Even'=>array(2=>'Two')))
992 * array(1=>'One', '--1uniquekey'=>array('More'=>array(2=>'Two', 3=>'Three')))
994 var $options;
997 * @var string Selected option
999 var $selected;
1002 * @var array Nothing selected
1004 var $nothing;
1007 * @var array Extra select field attributes
1009 var $attributes = array();
1012 * @var string Button label
1014 var $label = '';
1017 * @var array Button label's attributes
1019 var $labelattributes = array();
1022 * @var string Form submit method post or get
1024 var $method = 'get';
1027 * @var string Wrapping div class
1029 var $class = 'singleselect';
1032 * @var bool True if button disabled, false if normal
1034 var $disabled = false;
1037 * @var string Button tooltip
1039 var $tooltip = null;
1042 * @var string Form id
1044 var $formid = null;
1047 * @var help_icon The help icon for this element.
1049 var $helpicon = null;
1052 * Constructor
1053 * @param moodle_url $url form action target, includes hidden fields
1054 * @param string $name name of selection field - the changing parameter in url
1055 * @param array $options list of options
1056 * @param string $selected selected element
1057 * @param array $nothing
1058 * @param string $formid
1060 public function __construct(moodle_url $url, $name, array $options, $selected = '', $nothing = array('' => 'choosedots'), $formid = null) {
1061 $this->url = $url;
1062 $this->name = $name;
1063 $this->options = $options;
1064 $this->selected = $selected;
1065 $this->nothing = $nothing;
1066 $this->formid = $formid;
1070 * Shortcut for adding a JS confirm dialog when the button is clicked.
1071 * The message must be a yes/no question.
1073 * @param string $confirmmessage The yes/no confirmation question. If "Yes" is clicked, the original action will occur.
1075 public function add_confirm_action($confirmmessage) {
1076 $this->add_action(new component_action('submit', 'M.util.show_confirm_dialog', array('message' => $confirmmessage)));
1080 * Add action to the button.
1082 * @param component_action $action
1084 public function add_action(component_action $action) {
1085 $this->actions[] = $action;
1089 * Adds help icon.
1091 * @deprecated since Moodle 2.0
1093 public function set_old_help_icon($helppage, $title, $component = 'moodle') {
1094 throw new coding_exception('set_old_help_icon() can not be used any more, please see set_help_icon().');
1098 * Adds help icon.
1100 * @param string $identifier The keyword that defines a help page
1101 * @param string $component
1103 public function set_help_icon($identifier, $component = 'moodle') {
1104 $this->helpicon = new help_icon($identifier, $component);
1108 * Sets select's label
1110 * @param string $label
1111 * @param array $attributes (optional)
1113 public function set_label($label, $attributes = array()) {
1114 $this->label = $label;
1115 $this->labelattributes = $attributes;
1120 * Export data.
1122 * @param renderer_base $output Renderer.
1123 * @return stdClass
1125 public function export_for_template(renderer_base $output) {
1126 $attributes = $this->attributes;
1128 $data = new stdClass();
1129 $data->name = $this->name;
1130 $data->method = $this->method;
1131 $data->action = $this->method === 'get' ? $this->url->out_omit_querystring(true) : $this->url->out_omit_querystring();
1132 $data->classes = $this->class;
1133 $data->label = $this->label;
1134 $data->disabled = $this->disabled;
1135 $data->title = $this->tooltip;
1136 $data->formid = !empty($this->formid) ? $this->formid : html_writer::random_id('single_select_f');
1137 $data->id = !empty($attributes['id']) ? $attributes['id'] : html_writer::random_id('single_select');
1139 // Select element attributes.
1140 // Unset attributes that are already predefined in the template.
1141 unset($attributes['id']);
1142 unset($attributes['class']);
1143 unset($attributes['name']);
1144 unset($attributes['title']);
1145 unset($attributes['disabled']);
1147 // Map the attributes.
1148 $data->attributes = array_map(function($key) use ($attributes) {
1149 return ['name' => $key, 'value' => $attributes[$key]];
1150 }, array_keys($attributes));
1152 // Form parameters.
1153 $params = $this->url->params();
1154 if ($this->method === 'post') {
1155 $params['sesskey'] = sesskey();
1157 $data->params = array_map(function($key) use ($params) {
1158 return ['name' => $key, 'value' => $params[$key]];
1159 }, array_keys($params));
1161 // Select options.
1162 $hasnothing = false;
1163 if (is_string($this->nothing) && $this->nothing !== '') {
1164 $nothing = ['' => $this->nothing];
1165 $hasnothing = true;
1166 $nothingkey = '';
1167 } else if (is_array($this->nothing)) {
1168 $nothingvalue = reset($this->nothing);
1169 if ($nothingvalue === 'choose' || $nothingvalue === 'choosedots') {
1170 $nothing = [key($this->nothing) => get_string('choosedots')];
1171 } else {
1172 $nothing = $this->nothing;
1174 $hasnothing = true;
1175 $nothingkey = key($this->nothing);
1177 if ($hasnothing) {
1178 $options = $nothing + $this->options;
1179 } else {
1180 $options = $this->options;
1183 foreach ($options as $value => $name) {
1184 if (is_array($options[$value])) {
1185 foreach ($options[$value] as $optgroupname => $optgroupvalues) {
1186 $sublist = [];
1187 foreach ($optgroupvalues as $optvalue => $optname) {
1188 $option = [
1189 'value' => $optvalue,
1190 'name' => $optname,
1191 'selected' => strval($this->selected) === strval($optvalue),
1194 if ($hasnothing && $nothingkey === $optvalue) {
1195 $option['ignore'] = 'data-ignore';
1198 $sublist[] = $option;
1200 $data->options[] = [
1201 'name' => $optgroupname,
1202 'optgroup' => true,
1203 'options' => $sublist
1206 } else {
1207 $option = [
1208 'value' => $value,
1209 'name' => $options[$value],
1210 'selected' => strval($this->selected) === strval($value),
1211 'optgroup' => false
1214 if ($hasnothing && $nothingkey === $value) {
1215 $option['ignore'] = 'data-ignore';
1218 $data->options[] = $option;
1222 // Label attributes.
1223 $data->labelattributes = [];
1224 // Unset label attributes that are already in the template.
1225 unset($this->labelattributes['for']);
1226 // Map the label attributes.
1227 foreach ($this->labelattributes as $key => $value) {
1228 $data->labelattributes[] = ['name' => $key, 'value' => $value];
1231 // Help icon.
1232 $data->helpicon = !empty($this->helpicon) ? $this->helpicon->export_for_template($output) : false;
1234 return $data;
1239 * Simple URL selection widget description.
1241 * @copyright 2009 Petr Skoda
1242 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1243 * @since Moodle 2.0
1244 * @package core
1245 * @category output
1247 class url_select implements renderable, templatable {
1249 * @var array $urls associative array value=>label ex.: array(1=>'One, 2=>Two)
1250 * it is also possible to specify optgroup as complex label array ex.:
1251 * array(array('Odd'=>array(1=>'One', 3=>'Three)), array('Even'=>array(2=>'Two')))
1252 * array(1=>'One', '--1uniquekey'=>array('More'=>array(2=>'Two', 3=>'Three')))
1254 var $urls;
1257 * @var string Selected option
1259 var $selected;
1262 * @var array Nothing selected
1264 var $nothing;
1267 * @var array Extra select field attributes
1269 var $attributes = array();
1272 * @var string Button label
1274 var $label = '';
1277 * @var array Button label's attributes
1279 var $labelattributes = array();
1282 * @var string Wrapping div class
1284 var $class = 'urlselect';
1287 * @var bool True if button disabled, false if normal
1289 var $disabled = false;
1292 * @var string Button tooltip
1294 var $tooltip = null;
1297 * @var string Form id
1299 var $formid = null;
1302 * @var help_icon The help icon for this element.
1304 var $helpicon = null;
1307 * @var string If set, makes button visible with given name for button
1309 var $showbutton = null;
1312 * Constructor
1313 * @param array $urls list of options
1314 * @param string $selected selected element
1315 * @param array $nothing
1316 * @param string $formid
1317 * @param string $showbutton Set to text of button if it should be visible
1318 * or null if it should be hidden (hidden version always has text 'go')
1320 public function __construct(array $urls, $selected = '', $nothing = array('' => 'choosedots'), $formid = null, $showbutton = null) {
1321 $this->urls = $urls;
1322 $this->selected = $selected;
1323 $this->nothing = $nothing;
1324 $this->formid = $formid;
1325 $this->showbutton = $showbutton;
1329 * Adds help icon.
1331 * @deprecated since Moodle 2.0
1333 public function set_old_help_icon($helppage, $title, $component = 'moodle') {
1334 throw new coding_exception('set_old_help_icon() can not be used any more, please see set_help_icon().');
1338 * Adds help icon.
1340 * @param string $identifier The keyword that defines a help page
1341 * @param string $component
1343 public function set_help_icon($identifier, $component = 'moodle') {
1344 $this->helpicon = new help_icon($identifier, $component);
1348 * Sets select's label
1350 * @param string $label
1351 * @param array $attributes (optional)
1353 public function set_label($label, $attributes = array()) {
1354 $this->label = $label;
1355 $this->labelattributes = $attributes;
1359 * Clean a URL.
1361 * @param string $value The URL.
1362 * @return The cleaned URL.
1364 protected function clean_url($value) {
1365 global $CFG;
1367 if (empty($value)) {
1368 // Nothing.
1370 } else if (strpos($value, $CFG->wwwroot . '/') === 0) {
1371 $value = str_replace($CFG->wwwroot, '', $value);
1373 } else if (strpos($value, '/') !== 0) {
1374 debugging("Invalid url_select urls parameter: url '$value' is not local relative url!", DEBUG_DEVELOPER);
1377 return $value;
1381 * Flatten the options for Mustache.
1383 * This also cleans the URLs.
1385 * @param array $options The options.
1386 * @param array $nothing The nothing option.
1387 * @return array
1389 protected function flatten_options($options, $nothing) {
1390 $flattened = [];
1392 foreach ($options as $value => $option) {
1393 if (is_array($option)) {
1394 foreach ($option as $groupname => $optoptions) {
1395 if (!isset($flattened[$groupname])) {
1396 $flattened[$groupname] = [
1397 'name' => $groupname,
1398 'isgroup' => true,
1399 'options' => []
1402 foreach ($optoptions as $optvalue => $optoption) {
1403 $cleanedvalue = $this->clean_url($optvalue);
1404 $flattened[$groupname]['options'][$cleanedvalue] = [
1405 'name' => $optoption,
1406 'value' => $cleanedvalue,
1407 'selected' => $this->selected == $optvalue,
1412 } else {
1413 $cleanedvalue = $this->clean_url($value);
1414 $flattened[$cleanedvalue] = [
1415 'name' => $option,
1416 'value' => $cleanedvalue,
1417 'selected' => $this->selected == $value,
1422 if (!empty($nothing)) {
1423 $value = key($nothing);
1424 $name = reset($nothing);
1425 $flattened = [
1426 $value => ['name' => $name, 'value' => $value, 'selected' => $this->selected == $value]
1427 ] + $flattened;
1430 // Make non-associative array.
1431 foreach ($flattened as $key => $value) {
1432 if (!empty($value['options'])) {
1433 $flattened[$key]['options'] = array_values($value['options']);
1436 $flattened = array_values($flattened);
1438 return $flattened;
1442 * Export for template.
1444 * @param renderer_base $output Renderer.
1445 * @return stdClass
1447 public function export_for_template(renderer_base $output) {
1448 $attributes = $this->attributes;
1450 $data = new stdClass();
1451 $data->formid = !empty($this->formid) ? $this->formid : html_writer::random_id('url_select_f');
1452 $data->classes = $this->class;
1453 $data->label = $this->label;
1454 $data->disabled = $this->disabled;
1455 $data->title = $this->tooltip;
1456 $data->id = !empty($attributes['id']) ? $attributes['id'] : html_writer::random_id('url_select');
1457 $data->sesskey = sesskey();
1458 $data->action = (new moodle_url('/course/jumpto.php'))->out(false);
1460 // Remove attributes passed as property directly.
1461 unset($attributes['class']);
1462 unset($attributes['id']);
1463 unset($attributes['name']);
1464 unset($attributes['title']);
1465 unset($attributes['disabled']);
1467 $data->showbutton = $this->showbutton;
1469 // Select options.
1470 $nothing = false;
1471 if (is_string($this->nothing) && $this->nothing !== '') {
1472 $nothing = ['' => $this->nothing];
1473 } else if (is_array($this->nothing)) {
1474 $nothingvalue = reset($this->nothing);
1475 if ($nothingvalue === 'choose' || $nothingvalue === 'choosedots') {
1476 $nothing = [key($this->nothing) => get_string('choosedots')];
1477 } else {
1478 $nothing = $this->nothing;
1481 $data->options = $this->flatten_options($this->urls, $nothing);
1483 // Label attributes.
1484 $data->labelattributes = [];
1485 // Unset label attributes that are already in the template.
1486 unset($this->labelattributes['for']);
1487 // Map the label attributes.
1488 foreach ($this->labelattributes as $key => $value) {
1489 $data->labelattributes[] = ['name' => $key, 'value' => $value];
1492 // Help icon.
1493 $data->helpicon = !empty($this->helpicon) ? $this->helpicon->export_for_template($output) : false;
1495 // Finally all the remaining attributes.
1496 $data->attributes = [];
1497 foreach ($attributes as $key => $value) {
1498 $data->attributes[] = ['name' => $key, 'value' => $value];
1501 return $data;
1506 * Data structure describing html link with special action attached.
1508 * @copyright 2010 Petr Skoda
1509 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1510 * @since Moodle 2.0
1511 * @package core
1512 * @category output
1514 class action_link implements renderable {
1517 * @var moodle_url Href url
1519 public $url;
1522 * @var string Link text HTML fragment
1524 public $text;
1527 * @var array HTML attributes
1529 public $attributes;
1532 * @var array List of actions attached to link
1534 public $actions;
1537 * @var pix_icon Optional pix icon to render with the link
1539 public $icon;
1542 * Constructor
1543 * @param moodle_url $url
1544 * @param string $text HTML fragment
1545 * @param component_action $action
1546 * @param array $attributes associative array of html link attributes + disabled
1547 * @param pix_icon $icon optional pix_icon to render with the link text
1549 public function __construct(moodle_url $url,
1550 $text,
1551 component_action $action=null,
1552 array $attributes=null,
1553 pix_icon $icon=null) {
1554 $this->url = clone($url);
1555 $this->text = $text;
1556 $this->attributes = (array)$attributes;
1557 if ($action) {
1558 $this->add_action($action);
1560 $this->icon = $icon;
1564 * Add action to the link.
1566 * @param component_action $action
1568 public function add_action(component_action $action) {
1569 $this->actions[] = $action;
1573 * Adds a CSS class to this action link object
1574 * @param string $class
1576 public function add_class($class) {
1577 if (empty($this->attributes['class'])) {
1578 $this->attributes['class'] = $class;
1579 } else {
1580 $this->attributes['class'] .= ' ' . $class;
1585 * Returns true if the specified class has been added to this link.
1586 * @param string $class
1587 * @return bool
1589 public function has_class($class) {
1590 return strpos(' ' . $this->attributes['class'] . ' ', ' ' . $class . ' ') !== false;
1594 * Return the rendered HTML for the icon. Useful for rendering action links in a template.
1595 * @return string
1597 public function get_icon_html() {
1598 global $OUTPUT;
1599 if (!$this->icon) {
1600 return '';
1602 return $OUTPUT->render($this->icon);
1606 * Export for template.
1608 * @param renderer_base $output The renderer.
1609 * @return stdClass
1611 public function export_for_template(renderer_base $output) {
1612 $data = new stdClass();
1613 $attributes = $this->attributes;
1615 if (empty($attributes['id'])) {
1616 $attributes['id'] = html_writer::random_id('action_link');
1618 $data->id = $attributes['id'];
1619 unset($attributes['id']);
1621 $data->disabled = !empty($attributes['disabled']);
1622 unset($attributes['disabled']);
1624 $data->text = $this->text instanceof renderable ? $output->render($this->text) : (string) $this->text;
1625 $data->url = $this->url ? $this->url->out(false) : '';
1626 $data->icon = $this->icon ? $this->icon->export_for_pix() : null;
1627 $data->classes = isset($attributes['class']) ? $attributes['class'] : '';
1628 unset($attributes['class']);
1630 $data->attributes = array_map(function($key, $value) {
1631 return [
1632 'name' => $key,
1633 'value' => $value
1635 }, array_keys($attributes), $attributes);
1637 $data->actions = array_map(function($action) use ($output) {
1638 return $action->export_for_template($output);
1639 }, !empty($this->actions) ? $this->actions : []);
1640 $data->hasactions = !empty($this->actions);
1642 return $data;
1647 * Simple html output class
1649 * @copyright 2009 Tim Hunt, 2010 Petr Skoda
1650 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1651 * @since Moodle 2.0
1652 * @package core
1653 * @category output
1655 class html_writer {
1658 * Outputs a tag with attributes and contents
1660 * @param string $tagname The name of tag ('a', 'img', 'span' etc.)
1661 * @param string $contents What goes between the opening and closing tags
1662 * @param array $attributes The tag attributes (array('src' => $url, 'class' => 'class1') etc.)
1663 * @return string HTML fragment
1665 public static function tag($tagname, $contents, array $attributes = null) {
1666 return self::start_tag($tagname, $attributes) . $contents . self::end_tag($tagname);
1670 * Outputs an opening tag with attributes
1672 * @param string $tagname The name of tag ('a', 'img', 'span' etc.)
1673 * @param array $attributes The tag attributes (array('src' => $url, 'class' => 'class1') etc.)
1674 * @return string HTML fragment
1676 public static function start_tag($tagname, array $attributes = null) {
1677 return '<' . $tagname . self::attributes($attributes) . '>';
1681 * Outputs a closing tag
1683 * @param string $tagname The name of tag ('a', 'img', 'span' etc.)
1684 * @return string HTML fragment
1686 public static function end_tag($tagname) {
1687 return '</' . $tagname . '>';
1691 * Outputs an empty tag with attributes
1693 * @param string $tagname The name of tag ('input', 'img', 'br' etc.)
1694 * @param array $attributes The tag attributes (array('src' => $url, 'class' => 'class1') etc.)
1695 * @return string HTML fragment
1697 public static function empty_tag($tagname, array $attributes = null) {
1698 return '<' . $tagname . self::attributes($attributes) . ' />';
1702 * Outputs a tag, but only if the contents are not empty
1704 * @param string $tagname The name of tag ('a', 'img', 'span' etc.)
1705 * @param string $contents What goes between the opening and closing tags
1706 * @param array $attributes The tag attributes (array('src' => $url, 'class' => 'class1') etc.)
1707 * @return string HTML fragment
1709 public static function nonempty_tag($tagname, $contents, array $attributes = null) {
1710 if ($contents === '' || is_null($contents)) {
1711 return '';
1713 return self::tag($tagname, $contents, $attributes);
1717 * Outputs a HTML attribute and value
1719 * @param string $name The name of the attribute ('src', 'href', 'class' etc.)
1720 * @param string $value The value of the attribute. The value will be escaped with {@link s()}
1721 * @return string HTML fragment
1723 public static function attribute($name, $value) {
1724 if ($value instanceof moodle_url) {
1725 return ' ' . $name . '="' . $value->out() . '"';
1728 // special case, we do not want these in output
1729 if ($value === null) {
1730 return '';
1733 // no sloppy trimming here!
1734 return ' ' . $name . '="' . s($value) . '"';
1738 * Outputs a list of HTML attributes and values
1740 * @param array $attributes The tag attributes (array('src' => $url, 'class' => 'class1') etc.)
1741 * The values will be escaped with {@link s()}
1742 * @return string HTML fragment
1744 public static function attributes(array $attributes = null) {
1745 $attributes = (array)$attributes;
1746 $output = '';
1747 foreach ($attributes as $name => $value) {
1748 $output .= self::attribute($name, $value);
1750 return $output;
1754 * Generates a simple image tag with attributes.
1756 * @param string $src The source of image
1757 * @param string $alt The alternate text for image
1758 * @param array $attributes The tag attributes (array('height' => $max_height, 'class' => 'class1') etc.)
1759 * @return string HTML fragment
1761 public static function img($src, $alt, array $attributes = null) {
1762 $attributes = (array)$attributes;
1763 $attributes['src'] = $src;
1764 $attributes['alt'] = $alt;
1766 return self::empty_tag('img', $attributes);
1770 * Generates random html element id.
1772 * @staticvar int $counter
1773 * @staticvar type $uniq
1774 * @param string $base A string fragment that will be included in the random ID.
1775 * @return string A unique ID
1777 public static function random_id($base='random') {
1778 static $counter = 0;
1779 static $uniq;
1781 if (!isset($uniq)) {
1782 $uniq = uniqid();
1785 $counter++;
1786 return $base.$uniq.$counter;
1790 * Generates a simple html link
1792 * @param string|moodle_url $url The URL
1793 * @param string $text The text
1794 * @param array $attributes HTML attributes
1795 * @return string HTML fragment
1797 public static function link($url, $text, array $attributes = null) {
1798 $attributes = (array)$attributes;
1799 $attributes['href'] = $url;
1800 return self::tag('a', $text, $attributes);
1804 * Generates a simple checkbox with optional label
1806 * @param string $name The name of the checkbox
1807 * @param string $value The value of the checkbox
1808 * @param bool $checked Whether the checkbox is checked
1809 * @param string $label The label for the checkbox
1810 * @param array $attributes Any attributes to apply to the checkbox
1811 * @param array $labelattributes Any attributes to apply to the label, if present
1812 * @return string html fragment
1814 public static function checkbox($name, $value, $checked = true, $label = '',
1815 array $attributes = null, array $labelattributes = null) {
1816 $attributes = (array) $attributes;
1817 $output = '';
1819 if ($label !== '' and !is_null($label)) {
1820 if (empty($attributes['id'])) {
1821 $attributes['id'] = self::random_id('checkbox_');
1824 $attributes['type'] = 'checkbox';
1825 $attributes['value'] = $value;
1826 $attributes['name'] = $name;
1827 $attributes['checked'] = $checked ? 'checked' : null;
1829 $output .= self::empty_tag('input', $attributes);
1831 if ($label !== '' and !is_null($label)) {
1832 $labelattributes = (array) $labelattributes;
1833 $labelattributes['for'] = $attributes['id'];
1834 $output .= self::tag('label', $label, $labelattributes);
1837 return $output;
1841 * Generates a simple select yes/no form field
1843 * @param string $name name of select element
1844 * @param bool $selected
1845 * @param array $attributes - html select element attributes
1846 * @return string HTML fragment
1848 public static function select_yes_no($name, $selected=true, array $attributes = null) {
1849 $options = array('1'=>get_string('yes'), '0'=>get_string('no'));
1850 return self::select($options, $name, $selected, null, $attributes);
1854 * Generates a simple select form field
1856 * @param array $options associative array value=>label ex.:
1857 * array(1=>'One, 2=>Two)
1858 * it is also possible to specify optgroup as complex label array ex.:
1859 * array(array('Odd'=>array(1=>'One', 3=>'Three)), array('Even'=>array(2=>'Two')))
1860 * array(1=>'One', '--1uniquekey'=>array('More'=>array(2=>'Two', 3=>'Three')))
1861 * @param string $name name of select element
1862 * @param string|array $selected value or array of values depending on multiple attribute
1863 * @param array|bool $nothing add nothing selected option, or false of not added
1864 * @param array $attributes html select element attributes
1865 * @return string HTML fragment
1867 public static function select(array $options, $name, $selected = '', $nothing = array('' => 'choosedots'), array $attributes = null) {
1868 $attributes = (array)$attributes;
1869 if (is_array($nothing)) {
1870 foreach ($nothing as $k=>$v) {
1871 if ($v === 'choose' or $v === 'choosedots') {
1872 $nothing[$k] = get_string('choosedots');
1875 $options = $nothing + $options; // keep keys, do not override
1877 } else if (is_string($nothing) and $nothing !== '') {
1878 // BC
1879 $options = array(''=>$nothing) + $options;
1882 // we may accept more values if multiple attribute specified
1883 $selected = (array)$selected;
1884 foreach ($selected as $k=>$v) {
1885 $selected[$k] = (string)$v;
1888 if (!isset($attributes['id'])) {
1889 $id = 'menu'.$name;
1890 // name may contaion [], which would make an invalid id. e.g. numeric question type editing form, assignment quickgrading
1891 $id = str_replace('[', '', $id);
1892 $id = str_replace(']', '', $id);
1893 $attributes['id'] = $id;
1896 if (!isset($attributes['class'])) {
1897 $class = 'menu'.$name;
1898 // name may contaion [], which would make an invalid class. e.g. numeric question type editing form, assignment quickgrading
1899 $class = str_replace('[', '', $class);
1900 $class = str_replace(']', '', $class);
1901 $attributes['class'] = $class;
1903 $attributes['class'] = 'select custom-select ' . $attributes['class']; // Add 'select' selector always.
1905 $attributes['name'] = $name;
1907 if (!empty($attributes['disabled'])) {
1908 $attributes['disabled'] = 'disabled';
1909 } else {
1910 unset($attributes['disabled']);
1913 $output = '';
1914 foreach ($options as $value=>$label) {
1915 if (is_array($label)) {
1916 // ignore key, it just has to be unique
1917 $output .= self::select_optgroup(key($label), current($label), $selected);
1918 } else {
1919 $output .= self::select_option($label, $value, $selected);
1922 return self::tag('select', $output, $attributes);
1926 * Returns HTML to display a select box option.
1928 * @param string $label The label to display as the option.
1929 * @param string|int $value The value the option represents
1930 * @param array $selected An array of selected options
1931 * @return string HTML fragment
1933 private static function select_option($label, $value, array $selected) {
1934 $attributes = array();
1935 $value = (string)$value;
1936 if (in_array($value, $selected, true)) {
1937 $attributes['selected'] = 'selected';
1939 $attributes['value'] = $value;
1940 return self::tag('option', $label, $attributes);
1944 * Returns HTML to display a select box option group.
1946 * @param string $groupname The label to use for the group
1947 * @param array $options The options in the group
1948 * @param array $selected An array of selected values.
1949 * @return string HTML fragment.
1951 private static function select_optgroup($groupname, $options, array $selected) {
1952 if (empty($options)) {
1953 return '';
1955 $attributes = array('label'=>$groupname);
1956 $output = '';
1957 foreach ($options as $value=>$label) {
1958 $output .= self::select_option($label, $value, $selected);
1960 return self::tag('optgroup', $output, $attributes);
1964 * This is a shortcut for making an hour selector menu.
1966 * @param string $type The type of selector (years, months, days, hours, minutes)
1967 * @param string $name fieldname
1968 * @param int $currenttime A default timestamp in GMT
1969 * @param int $step minute spacing
1970 * @param array $attributes - html select element attributes
1971 * @return HTML fragment
1973 public static function select_time($type, $name, $currenttime = 0, $step = 5, array $attributes = null) {
1974 global $OUTPUT;
1976 if (!$currenttime) {
1977 $currenttime = time();
1979 $calendartype = \core_calendar\type_factory::get_calendar_instance();
1980 $currentdate = $calendartype->timestamp_to_date_array($currenttime);
1981 $userdatetype = $type;
1982 $timeunits = array();
1984 switch ($type) {
1985 case 'years':
1986 $timeunits = $calendartype->get_years();
1987 $userdatetype = 'year';
1988 break;
1989 case 'months':
1990 $timeunits = $calendartype->get_months();
1991 $userdatetype = 'month';
1992 $currentdate['month'] = (int)$currentdate['mon'];
1993 break;
1994 case 'days':
1995 $timeunits = $calendartype->get_days();
1996 $userdatetype = 'mday';
1997 break;
1998 case 'hours':
1999 for ($i=0; $i<=23; $i++) {
2000 $timeunits[$i] = sprintf("%02d",$i);
2002 break;
2003 case 'minutes':
2004 if ($step != 1) {
2005 $currentdate['minutes'] = ceil($currentdate['minutes']/$step)*$step;
2008 for ($i=0; $i<=59; $i+=$step) {
2009 $timeunits[$i] = sprintf("%02d",$i);
2011 break;
2012 default:
2013 throw new coding_exception("Time type $type is not supported by html_writer::select_time().");
2016 $attributes = (array) $attributes;
2017 $data = (object) [
2018 'name' => $name,
2019 'id' => !empty($attributes['id']) ? $attributes['id'] : self::random_id('ts_'),
2020 'label' => get_string(substr($type, 0, -1), 'form'),
2021 'options' => array_map(function($value) use ($timeunits, $currentdate, $userdatetype) {
2022 return [
2023 'name' => $timeunits[$value],
2024 'value' => $value,
2025 'selected' => $currentdate[$userdatetype] == $value
2027 }, array_keys($timeunits)),
2030 unset($attributes['id']);
2031 unset($attributes['name']);
2032 $data->attributes = array_map(function($name) use ($attributes) {
2033 return [
2034 'name' => $name,
2035 'value' => $attributes[$name]
2037 }, array_keys($attributes));
2039 return $OUTPUT->render_from_template('core/select_time', $data);
2043 * Shortcut for quick making of lists
2045 * Note: 'list' is a reserved keyword ;-)
2047 * @param array $items
2048 * @param array $attributes
2049 * @param string $tag ul or ol
2050 * @return string
2052 public static function alist(array $items, array $attributes = null, $tag = 'ul') {
2053 $output = html_writer::start_tag($tag, $attributes)."\n";
2054 foreach ($items as $item) {
2055 $output .= html_writer::tag('li', $item)."\n";
2057 $output .= html_writer::end_tag($tag);
2058 return $output;
2062 * Returns hidden input fields created from url parameters.
2064 * @param moodle_url $url
2065 * @param array $exclude list of excluded parameters
2066 * @return string HTML fragment
2068 public static function input_hidden_params(moodle_url $url, array $exclude = null) {
2069 $exclude = (array)$exclude;
2070 $params = $url->params();
2071 foreach ($exclude as $key) {
2072 unset($params[$key]);
2075 $output = '';
2076 foreach ($params as $key => $value) {
2077 $attributes = array('type'=>'hidden', 'name'=>$key, 'value'=>$value);
2078 $output .= self::empty_tag('input', $attributes)."\n";
2080 return $output;
2084 * Generate a script tag containing the the specified code.
2086 * @param string $jscode the JavaScript code
2087 * @param moodle_url|string $url optional url of the external script, $code ignored if specified
2088 * @return string HTML, the code wrapped in <script> tags.
2090 public static function script($jscode, $url=null) {
2091 if ($jscode) {
2092 $attributes = array('type'=>'text/javascript');
2093 return self::tag('script', "\n//<![CDATA[\n$jscode\n//]]>\n", $attributes) . "\n";
2095 } else if ($url) {
2096 $attributes = array('type'=>'text/javascript', 'src'=>$url);
2097 return self::tag('script', '', $attributes) . "\n";
2099 } else {
2100 return '';
2105 * Renders HTML table
2107 * This method may modify the passed instance by adding some default properties if they are not set yet.
2108 * If this is not what you want, you should make a full clone of your data before passing them to this
2109 * method. In most cases this is not an issue at all so we do not clone by default for performance
2110 * and memory consumption reasons.
2112 * @param html_table $table data to be rendered
2113 * @return string HTML code
2115 public static function table(html_table $table) {
2116 // prepare table data and populate missing properties with reasonable defaults
2117 if (!empty($table->align)) {
2118 foreach ($table->align as $key => $aa) {
2119 if ($aa) {
2120 $table->align[$key] = 'text-align:'. fix_align_rtl($aa) .';'; // Fix for RTL languages
2121 } else {
2122 $table->align[$key] = null;
2126 if (!empty($table->size)) {
2127 foreach ($table->size as $key => $ss) {
2128 if ($ss) {
2129 $table->size[$key] = 'width:'. $ss .';';
2130 } else {
2131 $table->size[$key] = null;
2135 if (!empty($table->wrap)) {
2136 foreach ($table->wrap as $key => $ww) {
2137 if ($ww) {
2138 $table->wrap[$key] = 'white-space:nowrap;';
2139 } else {
2140 $table->wrap[$key] = '';
2144 if (!empty($table->head)) {
2145 foreach ($table->head as $key => $val) {
2146 if (!isset($table->align[$key])) {
2147 $table->align[$key] = null;
2149 if (!isset($table->size[$key])) {
2150 $table->size[$key] = null;
2152 if (!isset($table->wrap[$key])) {
2153 $table->wrap[$key] = null;
2158 if (empty($table->attributes['class'])) {
2159 $table->attributes['class'] = 'generaltable';
2161 if (!empty($table->tablealign)) {
2162 $table->attributes['class'] .= ' boxalign' . $table->tablealign;
2165 // explicitly assigned properties override those defined via $table->attributes
2166 $table->attributes['class'] = trim($table->attributes['class']);
2167 $attributes = array_merge($table->attributes, array(
2168 'id' => $table->id,
2169 'width' => $table->width,
2170 'summary' => $table->summary,
2171 'cellpadding' => $table->cellpadding,
2172 'cellspacing' => $table->cellspacing,
2174 $output = html_writer::start_tag('table', $attributes) . "\n";
2176 $countcols = 0;
2178 // Output a caption if present.
2179 if (!empty($table->caption)) {
2180 $captionattributes = array();
2181 if ($table->captionhide) {
2182 $captionattributes['class'] = 'accesshide';
2184 $output .= html_writer::tag(
2185 'caption',
2186 $table->caption,
2187 $captionattributes
2191 if (!empty($table->head)) {
2192 $countcols = count($table->head);
2194 $output .= html_writer::start_tag('thead', array()) . "\n";
2195 $output .= html_writer::start_tag('tr', array()) . "\n";
2196 $keys = array_keys($table->head);
2197 $lastkey = end($keys);
2199 foreach ($table->head as $key => $heading) {
2200 // Convert plain string headings into html_table_cell objects
2201 if (!($heading instanceof html_table_cell)) {
2202 $headingtext = $heading;
2203 $heading = new html_table_cell();
2204 $heading->text = $headingtext;
2205 $heading->header = true;
2208 if ($heading->header !== false) {
2209 $heading->header = true;
2212 if ($heading->header && empty($heading->scope)) {
2213 $heading->scope = 'col';
2216 $heading->attributes['class'] .= ' header c' . $key;
2217 if (isset($table->headspan[$key]) && $table->headspan[$key] > 1) {
2218 $heading->colspan = $table->headspan[$key];
2219 $countcols += $table->headspan[$key] - 1;
2222 if ($key == $lastkey) {
2223 $heading->attributes['class'] .= ' lastcol';
2225 if (isset($table->colclasses[$key])) {
2226 $heading->attributes['class'] .= ' ' . $table->colclasses[$key];
2228 $heading->attributes['class'] = trim($heading->attributes['class']);
2229 $attributes = array_merge($heading->attributes, array(
2230 'style' => $table->align[$key] . $table->size[$key] . $heading->style,
2231 'scope' => $heading->scope,
2232 'colspan' => $heading->colspan,
2235 $tagtype = 'td';
2236 if ($heading->header === true) {
2237 $tagtype = 'th';
2239 $output .= html_writer::tag($tagtype, $heading->text, $attributes) . "\n";
2241 $output .= html_writer::end_tag('tr') . "\n";
2242 $output .= html_writer::end_tag('thead') . "\n";
2244 if (empty($table->data)) {
2245 // For valid XHTML strict every table must contain either a valid tr
2246 // or a valid tbody... both of which must contain a valid td
2247 $output .= html_writer::start_tag('tbody', array('class' => 'empty'));
2248 $output .= html_writer::tag('tr', html_writer::tag('td', '', array('colspan'=>count($table->head))));
2249 $output .= html_writer::end_tag('tbody');
2253 if (!empty($table->data)) {
2254 $keys = array_keys($table->data);
2255 $lastrowkey = end($keys);
2256 $output .= html_writer::start_tag('tbody', array());
2258 foreach ($table->data as $key => $row) {
2259 if (($row === 'hr') && ($countcols)) {
2260 $output .= html_writer::tag('td', html_writer::tag('div', '', array('class' => 'tabledivider')), array('colspan' => $countcols));
2261 } else {
2262 // Convert array rows to html_table_rows and cell strings to html_table_cell objects
2263 if (!($row instanceof html_table_row)) {
2264 $newrow = new html_table_row();
2266 foreach ($row as $cell) {
2267 if (!($cell instanceof html_table_cell)) {
2268 $cell = new html_table_cell($cell);
2270 $newrow->cells[] = $cell;
2272 $row = $newrow;
2275 if (isset($table->rowclasses[$key])) {
2276 $row->attributes['class'] .= ' ' . $table->rowclasses[$key];
2279 if ($key == $lastrowkey) {
2280 $row->attributes['class'] .= ' lastrow';
2283 // Explicitly assigned properties should override those defined in the attributes.
2284 $row->attributes['class'] = trim($row->attributes['class']);
2285 $trattributes = array_merge($row->attributes, array(
2286 'id' => $row->id,
2287 'style' => $row->style,
2289 $output .= html_writer::start_tag('tr', $trattributes) . "\n";
2290 $keys2 = array_keys($row->cells);
2291 $lastkey = end($keys2);
2293 $gotlastkey = false; //flag for sanity checking
2294 foreach ($row->cells as $key => $cell) {
2295 if ($gotlastkey) {
2296 //This should never happen. Why do we have a cell after the last cell?
2297 mtrace("A cell with key ($key) was found after the last key ($lastkey)");
2300 if (!($cell instanceof html_table_cell)) {
2301 $mycell = new html_table_cell();
2302 $mycell->text = $cell;
2303 $cell = $mycell;
2306 if (($cell->header === true) && empty($cell->scope)) {
2307 $cell->scope = 'row';
2310 if (isset($table->colclasses[$key])) {
2311 $cell->attributes['class'] .= ' ' . $table->colclasses[$key];
2314 $cell->attributes['class'] .= ' cell c' . $key;
2315 if ($key == $lastkey) {
2316 $cell->attributes['class'] .= ' lastcol';
2317 $gotlastkey = true;
2319 $tdstyle = '';
2320 $tdstyle .= isset($table->align[$key]) ? $table->align[$key] : '';
2321 $tdstyle .= isset($table->size[$key]) ? $table->size[$key] : '';
2322 $tdstyle .= isset($table->wrap[$key]) ? $table->wrap[$key] : '';
2323 $cell->attributes['class'] = trim($cell->attributes['class']);
2324 $tdattributes = array_merge($cell->attributes, array(
2325 'style' => $tdstyle . $cell->style,
2326 'colspan' => $cell->colspan,
2327 'rowspan' => $cell->rowspan,
2328 'id' => $cell->id,
2329 'abbr' => $cell->abbr,
2330 'scope' => $cell->scope,
2332 $tagtype = 'td';
2333 if ($cell->header === true) {
2334 $tagtype = 'th';
2336 $output .= html_writer::tag($tagtype, $cell->text, $tdattributes) . "\n";
2339 $output .= html_writer::end_tag('tr') . "\n";
2341 $output .= html_writer::end_tag('tbody') . "\n";
2343 $output .= html_writer::end_tag('table') . "\n";
2345 return $output;
2349 * Renders form element label
2351 * By default, the label is suffixed with a label separator defined in the
2352 * current language pack (colon by default in the English lang pack).
2353 * Adding the colon can be explicitly disabled if needed. Label separators
2354 * are put outside the label tag itself so they are not read by
2355 * screenreaders (accessibility).
2357 * Parameter $for explicitly associates the label with a form control. When
2358 * set, the value of this attribute must be the same as the value of
2359 * the id attribute of the form control in the same document. When null,
2360 * the label being defined is associated with the control inside the label
2361 * element.
2363 * @param string $text content of the label tag
2364 * @param string|null $for id of the element this label is associated with, null for no association
2365 * @param bool $colonize add label separator (colon) to the label text, if it is not there yet
2366 * @param array $attributes to be inserted in the tab, for example array('accesskey' => 'a')
2367 * @return string HTML of the label element
2369 public static function label($text, $for, $colonize = true, array $attributes=array()) {
2370 if (!is_null($for)) {
2371 $attributes = array_merge($attributes, array('for' => $for));
2373 $text = trim($text);
2374 $label = self::tag('label', $text, $attributes);
2376 // TODO MDL-12192 $colonize disabled for now yet
2377 // if (!empty($text) and $colonize) {
2378 // // the $text may end with the colon already, though it is bad string definition style
2379 // $colon = get_string('labelsep', 'langconfig');
2380 // if (!empty($colon)) {
2381 // $trimmed = trim($colon);
2382 // if ((substr($text, -strlen($trimmed)) == $trimmed) or (substr($text, -1) == ':')) {
2383 // //debugging('The label text should not end with colon or other label separator,
2384 // // please fix the string definition.', DEBUG_DEVELOPER);
2385 // } else {
2386 // $label .= $colon;
2387 // }
2388 // }
2389 // }
2391 return $label;
2395 * Combines a class parameter with other attributes. Aids in code reduction
2396 * because the class parameter is very frequently used.
2398 * If the class attribute is specified both in the attributes and in the
2399 * class parameter, the two values are combined with a space between.
2401 * @param string $class Optional CSS class (or classes as space-separated list)
2402 * @param array $attributes Optional other attributes as array
2403 * @return array Attributes (or null if still none)
2405 private static function add_class($class = '', array $attributes = null) {
2406 if ($class !== '') {
2407 $classattribute = array('class' => $class);
2408 if ($attributes) {
2409 if (array_key_exists('class', $attributes)) {
2410 $attributes['class'] = trim($attributes['class'] . ' ' . $class);
2411 } else {
2412 $attributes = $classattribute + $attributes;
2414 } else {
2415 $attributes = $classattribute;
2418 return $attributes;
2422 * Creates a <div> tag. (Shortcut function.)
2424 * @param string $content HTML content of tag
2425 * @param string $class Optional CSS class (or classes as space-separated list)
2426 * @param array $attributes Optional other attributes as array
2427 * @return string HTML code for div
2429 public static function div($content, $class = '', array $attributes = null) {
2430 return self::tag('div', $content, self::add_class($class, $attributes));
2434 * Starts a <div> tag. (Shortcut function.)
2436 * @param string $class Optional CSS class (or classes as space-separated list)
2437 * @param array $attributes Optional other attributes as array
2438 * @return string HTML code for open div tag
2440 public static function start_div($class = '', array $attributes = null) {
2441 return self::start_tag('div', self::add_class($class, $attributes));
2445 * Ends a <div> tag. (Shortcut function.)
2447 * @return string HTML code for close div tag
2449 public static function end_div() {
2450 return self::end_tag('div');
2454 * Creates a <span> tag. (Shortcut function.)
2456 * @param string $content HTML content of tag
2457 * @param string $class Optional CSS class (or classes as space-separated list)
2458 * @param array $attributes Optional other attributes as array
2459 * @return string HTML code for span
2461 public static function span($content, $class = '', array $attributes = null) {
2462 return self::tag('span', $content, self::add_class($class, $attributes));
2466 * Starts a <span> tag. (Shortcut function.)
2468 * @param string $class Optional CSS class (or classes as space-separated list)
2469 * @param array $attributes Optional other attributes as array
2470 * @return string HTML code for open span tag
2472 public static function start_span($class = '', array $attributes = null) {
2473 return self::start_tag('span', self::add_class($class, $attributes));
2477 * Ends a <span> tag. (Shortcut function.)
2479 * @return string HTML code for close span tag
2481 public static function end_span() {
2482 return self::end_tag('span');
2487 * Simple javascript output class
2489 * @copyright 2010 Petr Skoda
2490 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2491 * @since Moodle 2.0
2492 * @package core
2493 * @category output
2495 class js_writer {
2498 * Returns javascript code calling the function
2500 * @param string $function function name, can be complex like Y.Event.purgeElement
2501 * @param array $arguments parameters
2502 * @param int $delay execution delay in seconds
2503 * @return string JS code fragment
2505 public static function function_call($function, array $arguments = null, $delay=0) {
2506 if ($arguments) {
2507 $arguments = array_map('json_encode', convert_to_array($arguments));
2508 $arguments = implode(', ', $arguments);
2509 } else {
2510 $arguments = '';
2512 $js = "$function($arguments);";
2514 if ($delay) {
2515 $delay = $delay * 1000; // in miliseconds
2516 $js = "setTimeout(function() { $js }, $delay);";
2518 return $js . "\n";
2522 * Special function which adds Y as first argument of function call.
2524 * @param string $function The function to call
2525 * @param array $extraarguments Any arguments to pass to it
2526 * @return string Some JS code
2528 public static function function_call_with_Y($function, array $extraarguments = null) {
2529 if ($extraarguments) {
2530 $extraarguments = array_map('json_encode', convert_to_array($extraarguments));
2531 $arguments = 'Y, ' . implode(', ', $extraarguments);
2532 } else {
2533 $arguments = 'Y';
2535 return "$function($arguments);\n";
2539 * Returns JavaScript code to initialise a new object
2541 * @param string $var If it is null then no var is assigned the new object.
2542 * @param string $class The class to initialise an object for.
2543 * @param array $arguments An array of args to pass to the init method.
2544 * @param array $requirements Any modules required for this class.
2545 * @param int $delay The delay before initialisation. 0 = no delay.
2546 * @return string Some JS code
2548 public static function object_init($var, $class, array $arguments = null, array $requirements = null, $delay=0) {
2549 if (is_array($arguments)) {
2550 $arguments = array_map('json_encode', convert_to_array($arguments));
2551 $arguments = implode(', ', $arguments);
2554 if ($var === null) {
2555 $js = "new $class(Y, $arguments);";
2556 } else if (strpos($var, '.')!==false) {
2557 $js = "$var = new $class(Y, $arguments);";
2558 } else {
2559 $js = "var $var = new $class(Y, $arguments);";
2562 if ($delay) {
2563 $delay = $delay * 1000; // in miliseconds
2564 $js = "setTimeout(function() { $js }, $delay);";
2567 if (count($requirements) > 0) {
2568 $requirements = implode("', '", $requirements);
2569 $js = "Y.use('$requirements', function(Y){ $js });";
2571 return $js."\n";
2575 * Returns code setting value to variable
2577 * @param string $name
2578 * @param mixed $value json serialised value
2579 * @param bool $usevar add var definition, ignored for nested properties
2580 * @return string JS code fragment
2582 public static function set_variable($name, $value, $usevar = true) {
2583 $output = '';
2585 if ($usevar) {
2586 if (strpos($name, '.')) {
2587 $output .= '';
2588 } else {
2589 $output .= 'var ';
2593 $output .= "$name = ".json_encode($value).";";
2595 return $output;
2599 * Writes event handler attaching code
2601 * @param array|string $selector standard YUI selector for elements, may be
2602 * array or string, element id is in the form "#idvalue"
2603 * @param string $event A valid DOM event (click, mousedown, change etc.)
2604 * @param string $function The name of the function to call
2605 * @param array $arguments An optional array of argument parameters to pass to the function
2606 * @return string JS code fragment
2608 public static function event_handler($selector, $event, $function, array $arguments = null) {
2609 $selector = json_encode($selector);
2610 $output = "Y.on('$event', $function, $selector, null";
2611 if (!empty($arguments)) {
2612 $output .= ', ' . json_encode($arguments);
2614 return $output . ");\n";
2619 * Holds all the information required to render a <table> by {@link core_renderer::table()}
2621 * Example of usage:
2622 * $t = new html_table();
2623 * ... // set various properties of the object $t as described below
2624 * echo html_writer::table($t);
2626 * @copyright 2009 David Mudrak <david.mudrak@gmail.com>
2627 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2628 * @since Moodle 2.0
2629 * @package core
2630 * @category output
2632 class html_table {
2635 * @var string Value to use for the id attribute of the table
2637 public $id = null;
2640 * @var array Attributes of HTML attributes for the <table> element
2642 public $attributes = array();
2645 * @var array An array of headings. The n-th array item is used as a heading of the n-th column.
2646 * For more control over the rendering of the headers, an array of html_table_cell objects
2647 * can be passed instead of an array of strings.
2649 * Example of usage:
2650 * $t->head = array('Student', 'Grade');
2652 public $head;
2655 * @var array An array that can be used to make a heading span multiple columns.
2656 * In this example, {@link html_table:$data} is supposed to have three columns. For the first two columns,
2657 * the same heading is used. Therefore, {@link html_table::$head} should consist of two items.
2659 * Example of usage:
2660 * $t->headspan = array(2,1);
2662 public $headspan;
2665 * @var array An array of column alignments.
2666 * The value is used as CSS 'text-align' property. Therefore, possible
2667 * values are 'left', 'right', 'center' and 'justify'. Specify 'right' or 'left' from the perspective
2668 * of a left-to-right (LTR) language. For RTL, the values are flipped automatically.
2670 * Examples of usage:
2671 * $t->align = array(null, 'right');
2672 * or
2673 * $t->align[1] = 'right';
2675 public $align;
2678 * @var array The value is used as CSS 'size' property.
2680 * Examples of usage:
2681 * $t->size = array('50%', '50%');
2682 * or
2683 * $t->size[1] = '120px';
2685 public $size;
2688 * @var array An array of wrapping information.
2689 * The only possible value is 'nowrap' that sets the
2690 * CSS property 'white-space' to the value 'nowrap' in the given column.
2692 * Example of usage:
2693 * $t->wrap = array(null, 'nowrap');
2695 public $wrap;
2698 * @var array Array of arrays or html_table_row objects containing the data. Alternatively, if you have
2699 * $head specified, the string 'hr' (for horizontal ruler) can be used
2700 * instead of an array of cells data resulting in a divider rendered.
2702 * Example of usage with array of arrays:
2703 * $row1 = array('Harry Potter', '76 %');
2704 * $row2 = array('Hermione Granger', '100 %');
2705 * $t->data = array($row1, $row2);
2707 * Example with array of html_table_row objects: (used for more fine-grained control)
2708 * $cell1 = new html_table_cell();
2709 * $cell1->text = 'Harry Potter';
2710 * $cell1->colspan = 2;
2711 * $row1 = new html_table_row();
2712 * $row1->cells[] = $cell1;
2713 * $cell2 = new html_table_cell();
2714 * $cell2->text = 'Hermione Granger';
2715 * $cell3 = new html_table_cell();
2716 * $cell3->text = '100 %';
2717 * $row2 = new html_table_row();
2718 * $row2->cells = array($cell2, $cell3);
2719 * $t->data = array($row1, $row2);
2721 public $data = [];
2724 * @deprecated since Moodle 2.0. Styling should be in the CSS.
2725 * @var string Width of the table, percentage of the page preferred.
2727 public $width = null;
2730 * @deprecated since Moodle 2.0. Styling should be in the CSS.
2731 * @var string Alignment for the whole table. Can be 'right', 'left' or 'center' (default).
2733 public $tablealign = null;
2736 * @deprecated since Moodle 2.0. Styling should be in the CSS.
2737 * @var int Padding on each cell, in pixels
2739 public $cellpadding = null;
2742 * @var int Spacing between cells, in pixels
2743 * @deprecated since Moodle 2.0. Styling should be in the CSS.
2745 public $cellspacing = null;
2748 * @var array Array of classes to add to particular rows, space-separated string.
2749 * Class 'lastrow' is added automatically for the last row in the table.
2751 * Example of usage:
2752 * $t->rowclasses[9] = 'tenth'
2754 public $rowclasses;
2757 * @var array An array of classes to add to every cell in a particular column,
2758 * space-separated string. Class 'cell' is added automatically by the renderer.
2759 * Classes 'c0' or 'c1' are added automatically for every odd or even column,
2760 * respectively. Class 'lastcol' is added automatically for all last cells
2761 * in a row.
2763 * Example of usage:
2764 * $t->colclasses = array(null, 'grade');
2766 public $colclasses;
2769 * @var string Description of the contents for screen readers.
2771 public $summary;
2774 * @var string Caption for the table, typically a title.
2776 * Example of usage:
2777 * $t->caption = "TV Guide";
2779 public $caption;
2782 * @var bool Whether to hide the table's caption from sighted users.
2784 * Example of usage:
2785 * $t->caption = "TV Guide";
2786 * $t->captionhide = true;
2788 public $captionhide = false;
2791 * Constructor
2793 public function __construct() {
2794 $this->attributes['class'] = '';
2799 * Component representing a table row.
2801 * @copyright 2009 Nicolas Connault
2802 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2803 * @since Moodle 2.0
2804 * @package core
2805 * @category output
2807 class html_table_row {
2810 * @var string Value to use for the id attribute of the row.
2812 public $id = null;
2815 * @var array Array of html_table_cell objects
2817 public $cells = array();
2820 * @var string Value to use for the style attribute of the table row
2822 public $style = null;
2825 * @var array Attributes of additional HTML attributes for the <tr> element
2827 public $attributes = array();
2830 * Constructor
2831 * @param array $cells
2833 public function __construct(array $cells=null) {
2834 $this->attributes['class'] = '';
2835 $cells = (array)$cells;
2836 foreach ($cells as $cell) {
2837 if ($cell instanceof html_table_cell) {
2838 $this->cells[] = $cell;
2839 } else {
2840 $this->cells[] = new html_table_cell($cell);
2847 * Component representing a table cell.
2849 * @copyright 2009 Nicolas Connault
2850 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2851 * @since Moodle 2.0
2852 * @package core
2853 * @category output
2855 class html_table_cell {
2858 * @var string Value to use for the id attribute of the cell.
2860 public $id = null;
2863 * @var string The contents of the cell.
2865 public $text;
2868 * @var string Abbreviated version of the contents of the cell.
2870 public $abbr = null;
2873 * @var int Number of columns this cell should span.
2875 public $colspan = null;
2878 * @var int Number of rows this cell should span.
2880 public $rowspan = null;
2883 * @var string Defines a way to associate header cells and data cells in a table.
2885 public $scope = null;
2888 * @var bool Whether or not this cell is a header cell.
2890 public $header = null;
2893 * @var string Value to use for the style attribute of the table cell
2895 public $style = null;
2898 * @var array Attributes of additional HTML attributes for the <td> element
2900 public $attributes = array();
2903 * Constructs a table cell
2905 * @param string $text
2907 public function __construct($text = null) {
2908 $this->text = $text;
2909 $this->attributes['class'] = '';
2914 * Component representing a paging bar.
2916 * @copyright 2009 Nicolas Connault
2917 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2918 * @since Moodle 2.0
2919 * @package core
2920 * @category output
2922 class paging_bar implements renderable, templatable {
2925 * @var int The maximum number of pagelinks to display.
2927 public $maxdisplay = 18;
2930 * @var int The total number of entries to be pages through..
2932 public $totalcount;
2935 * @var int The page you are currently viewing.
2937 public $page;
2940 * @var int The number of entries that should be shown per page.
2942 public $perpage;
2945 * @var string|moodle_url If this is a string then it is the url which will be appended with $pagevar,
2946 * an equals sign and the page number.
2947 * If this is a moodle_url object then the pagevar param will be replaced by
2948 * the page no, for each page.
2950 public $baseurl;
2953 * @var string This is the variable name that you use for the pagenumber in your
2954 * code (ie. 'tablepage', 'blogpage', etc)
2956 public $pagevar;
2959 * @var string A HTML link representing the "previous" page.
2961 public $previouslink = null;
2964 * @var string A HTML link representing the "next" page.
2966 public $nextlink = null;
2969 * @var string A HTML link representing the first page.
2971 public $firstlink = null;
2974 * @var string A HTML link representing the last page.
2976 public $lastlink = null;
2979 * @var array An array of strings. One of them is just a string: the current page
2981 public $pagelinks = array();
2984 * Constructor paging_bar with only the required params.
2986 * @param int $totalcount The total number of entries available to be paged through
2987 * @param int $page The page you are currently viewing
2988 * @param int $perpage The number of entries that should be shown per page
2989 * @param string|moodle_url $baseurl url of the current page, the $pagevar parameter is added
2990 * @param string $pagevar name of page parameter that holds the page number
2992 public function __construct($totalcount, $page, $perpage, $baseurl, $pagevar = 'page') {
2993 $this->totalcount = $totalcount;
2994 $this->page = $page;
2995 $this->perpage = $perpage;
2996 $this->baseurl = $baseurl;
2997 $this->pagevar = $pagevar;
3001 * Prepares the paging bar for output.
3003 * This method validates the arguments set up for the paging bar and then
3004 * produces fragments of HTML to assist display later on.
3006 * @param renderer_base $output
3007 * @param moodle_page $page
3008 * @param string $target
3009 * @throws coding_exception
3011 public function prepare(renderer_base $output, moodle_page $page, $target) {
3012 if (!isset($this->totalcount) || is_null($this->totalcount)) {
3013 throw new coding_exception('paging_bar requires a totalcount value.');
3015 if (!isset($this->page) || is_null($this->page)) {
3016 throw new coding_exception('paging_bar requires a page value.');
3018 if (empty($this->perpage)) {
3019 throw new coding_exception('paging_bar requires a perpage value.');
3021 if (empty($this->baseurl)) {
3022 throw new coding_exception('paging_bar requires a baseurl value.');
3025 if ($this->totalcount > $this->perpage) {
3026 $pagenum = $this->page - 1;
3028 if ($this->page > 0) {
3029 $this->previouslink = html_writer::link(new moodle_url($this->baseurl, array($this->pagevar=>$pagenum)), get_string('previous'), array('class'=>'previous'));
3032 if ($this->perpage > 0) {
3033 $lastpage = ceil($this->totalcount / $this->perpage);
3034 } else {
3035 $lastpage = 1;
3038 if ($this->page > round(($this->maxdisplay/3)*2)) {
3039 $currpage = $this->page - round($this->maxdisplay/3);
3041 $this->firstlink = html_writer::link(new moodle_url($this->baseurl, array($this->pagevar=>0)), '1', array('class'=>'first'));
3042 } else {
3043 $currpage = 0;
3046 $displaycount = $displaypage = 0;
3048 while ($displaycount < $this->maxdisplay and $currpage < $lastpage) {
3049 $displaypage = $currpage + 1;
3051 if ($this->page == $currpage) {
3052 $this->pagelinks[] = html_writer::span($displaypage, 'current-page');
3053 } else {
3054 $pagelink = html_writer::link(new moodle_url($this->baseurl, array($this->pagevar=>$currpage)), $displaypage);
3055 $this->pagelinks[] = $pagelink;
3058 $displaycount++;
3059 $currpage++;
3062 if ($currpage < $lastpage) {
3063 $lastpageactual = $lastpage - 1;
3064 $this->lastlink = html_writer::link(new moodle_url($this->baseurl, array($this->pagevar=>$lastpageactual)), $lastpage, array('class'=>'last'));
3067 $pagenum = $this->page + 1;
3069 if ($pagenum != $lastpage) {
3070 $this->nextlink = html_writer::link(new moodle_url($this->baseurl, array($this->pagevar=>$pagenum)), get_string('next'), array('class'=>'next'));
3076 * Export for template.
3078 * @param renderer_base $output The renderer.
3079 * @return stdClass
3081 public function export_for_template(renderer_base $output) {
3082 $data = new stdClass();
3083 $data->previous = null;
3084 $data->next = null;
3085 $data->first = null;
3086 $data->last = null;
3087 $data->label = get_string('page');
3088 $data->pages = [];
3089 $data->haspages = $this->totalcount > $this->perpage;
3091 if (!$data->haspages) {
3092 return $data;
3095 if ($this->page > 0) {
3096 $data->previous = [
3097 'page' => $this->page - 1,
3098 'url' => (new moodle_url($this->baseurl, [$this->pagevar => $this->page - 1]))->out(false)
3102 $currpage = 0;
3103 if ($this->page > round(($this->maxdisplay / 3) * 2)) {
3104 $currpage = $this->page - round($this->maxdisplay / 3);
3105 $data->first = [
3106 'page' => 1,
3107 'url' => (new moodle_url($this->baseurl, [$this->pagevar => 0]))->out(false)
3111 $lastpage = 1;
3112 if ($this->perpage > 0) {
3113 $lastpage = ceil($this->totalcount / $this->perpage);
3116 $displaycount = 0;
3117 $displaypage = 0;
3118 while ($displaycount < $this->maxdisplay and $currpage < $lastpage) {
3119 $displaypage = $currpage + 1;
3121 $iscurrent = $this->page == $currpage;
3122 $link = new moodle_url($this->baseurl, [$this->pagevar => $currpage]);
3124 $data->pages[] = [
3125 'page' => $displaypage,
3126 'active' => $iscurrent,
3127 'url' => $iscurrent ? null : $link->out(false)
3130 $displaycount++;
3131 $currpage++;
3134 if ($currpage < $lastpage) {
3135 $data->last = [
3136 'page' => $lastpage,
3137 'url' => (new moodle_url($this->baseurl, [$this->pagevar => $lastpage - 1]))->out(false)
3141 if ($this->page + 1 != $lastpage) {
3142 $data->next = [
3143 'page' => $this->page + 1,
3144 'url' => (new moodle_url($this->baseurl, [$this->pagevar => $this->page + 1]))->out(false)
3148 return $data;
3153 * Component representing initials bar.
3155 * @copyright 2017 Ilya Tregubov
3156 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3157 * @since Moodle 3.3
3158 * @package core
3159 * @category output
3161 class initials_bar implements renderable, templatable {
3164 * @var string Currently selected letter.
3166 public $current;
3169 * @var string Class name to add to this initial bar.
3171 public $class;
3174 * @var string The name to put in front of this initial bar.
3176 public $title;
3179 * @var string URL parameter name for this initial.
3181 public $urlvar;
3184 * @var string URL object.
3186 public $url;
3189 * @var array An array of letters in the alphabet.
3191 public $alpha;
3194 * Constructor initials_bar with only the required params.
3196 * @param string $current the currently selected letter.
3197 * @param string $class class name to add to this initial bar.
3198 * @param string $title the name to put in front of this initial bar.
3199 * @param string $urlvar URL parameter name for this initial.
3200 * @param string $url URL object.
3201 * @param array $alpha of letters in the alphabet.
3203 public function __construct($current, $class, $title, $urlvar, $url, $alpha = null) {
3204 $this->current = $current;
3205 $this->class = $class;
3206 $this->title = $title;
3207 $this->urlvar = $urlvar;
3208 $this->url = $url;
3209 $this->alpha = $alpha;
3213 * Export for template.
3215 * @param renderer_base $output The renderer.
3216 * @return stdClass
3218 public function export_for_template(renderer_base $output) {
3219 $data = new stdClass();
3221 if ($this->alpha == null) {
3222 $this->alpha = explode(',', get_string('alphabet', 'langconfig'));
3225 if ($this->current == 'all') {
3226 $this->current = '';
3229 // We want to find a letter grouping size which suits the language so
3230 // find the largest group size which is less than 15 chars.
3231 // The choice of 15 chars is the largest number of chars that reasonably
3232 // fits on the smallest supported screen size. By always using a max number
3233 // of groups which is a factor of 2, we always get nice wrapping, and the
3234 // last row is always the shortest.
3235 $groupsize = count($this->alpha);
3236 $groups = 1;
3237 while ($groupsize > 15) {
3238 $groups *= 2;
3239 $groupsize = ceil(count($this->alpha) / $groups);
3242 $groupsizelimit = 0;
3243 $groupnumber = 0;
3244 foreach ($this->alpha as $letter) {
3245 if ($groupsizelimit++ > 0 && $groupsizelimit % $groupsize == 1) {
3246 $groupnumber++;
3248 $groupletter = new stdClass();
3249 $groupletter->name = $letter;
3250 $groupletter->url = $this->url->out(false, array($this->urlvar => $letter));
3251 if ($letter == $this->current) {
3252 $groupletter->selected = $this->current;
3254 $data->group[$groupnumber]->letter[] = $groupletter;
3257 $data->class = $this->class;
3258 $data->title = $this->title;
3259 $data->url = $this->url->out(false, array($this->urlvar => ''));
3260 $data->current = $this->current;
3261 $data->all = get_string('all');
3263 return $data;
3268 * This class represents how a block appears on a page.
3270 * During output, each block instance is asked to return a block_contents object,
3271 * those are then passed to the $OUTPUT->block function for display.
3273 * contents should probably be generated using a moodle_block_..._renderer.
3275 * Other block-like things that need to appear on the page, for example the
3276 * add new block UI, are also represented as block_contents objects.
3278 * @copyright 2009 Tim Hunt
3279 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3280 * @since Moodle 2.0
3281 * @package core
3282 * @category output
3284 class block_contents {
3286 /** Used when the block cannot be collapsed **/
3287 const NOT_HIDEABLE = 0;
3289 /** Used when the block can be collapsed but currently is not **/
3290 const VISIBLE = 1;
3292 /** Used when the block has been collapsed **/
3293 const HIDDEN = 2;
3296 * @var int Used to set $skipid.
3298 protected static $idcounter = 1;
3301 * @var int All the blocks (or things that look like blocks) printed on
3302 * a page are given a unique number that can be used to construct id="" attributes.
3303 * This is set automatically be the {@link prepare()} method.
3304 * Do not try to set it manually.
3306 public $skipid;
3309 * @var int If this is the contents of a real block, this should be set
3310 * to the block_instance.id. Otherwise this should be set to 0.
3312 public $blockinstanceid = 0;
3315 * @var int If this is a real block instance, and there is a corresponding
3316 * block_position.id for the block on this page, this should be set to that id.
3317 * Otherwise it should be 0.
3319 public $blockpositionid = 0;
3322 * @var array An array of attribute => value pairs that are put on the outer div of this
3323 * block. {@link $id} and {@link $classes} attributes should be set separately.
3325 public $attributes;
3328 * @var string The title of this block. If this came from user input, it should already
3329 * have had format_string() processing done on it. This will be output inside
3330 * <h2> tags. Please do not cause invalid XHTML.
3332 public $title = '';
3335 * @var string The label to use when the block does not, or will not have a visible title.
3336 * You should never set this as well as title... it will just be ignored.
3338 public $arialabel = '';
3341 * @var string HTML for the content
3343 public $content = '';
3346 * @var array An alternative to $content, it you want a list of things with optional icons.
3348 public $footer = '';
3351 * @var string Any small print that should appear under the block to explain
3352 * to the teacher about the block, for example 'This is a sticky block that was
3353 * added in the system context.'
3355 public $annotation = '';
3358 * @var int One of the constants NOT_HIDEABLE, VISIBLE, HIDDEN. Whether
3359 * the user can toggle whether this block is visible.
3361 public $collapsible = self::NOT_HIDEABLE;
3364 * Set this to true if the block is dockable.
3365 * @var bool
3367 public $dockable = false;
3370 * @var array A (possibly empty) array of editing controls. Each element of
3371 * this array should be an array('url' => $url, 'icon' => $icon, 'caption' => $caption).
3372 * $icon is the icon name. Fed to $OUTPUT->image_url.
3374 public $controls = array();
3378 * Create new instance of block content
3379 * @param array $attributes
3381 public function __construct(array $attributes = null) {
3382 $this->skipid = self::$idcounter;
3383 self::$idcounter += 1;
3385 if ($attributes) {
3386 // standard block
3387 $this->attributes = $attributes;
3388 } else {
3389 // simple "fake" blocks used in some modules and "Add new block" block
3390 $this->attributes = array('class'=>'block');
3395 * Add html class to block
3397 * @param string $class
3399 public function add_class($class) {
3400 $this->attributes['class'] .= ' '.$class;
3406 * This class represents a target for where a block can go when it is being moved.
3408 * This needs to be rendered as a form with the given hidden from fields, and
3409 * clicking anywhere in the form should submit it. The form action should be
3410 * $PAGE->url.
3412 * @copyright 2009 Tim Hunt
3413 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3414 * @since Moodle 2.0
3415 * @package core
3416 * @category output
3418 class block_move_target {
3421 * @var moodle_url Move url
3423 public $url;
3426 * Constructor
3427 * @param moodle_url $url
3429 public function __construct(moodle_url $url) {
3430 $this->url = $url;
3435 * Custom menu item
3437 * This class is used to represent one item within a custom menu that may or may
3438 * not have children.
3440 * @copyright 2010 Sam Hemelryk
3441 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3442 * @since Moodle 2.0
3443 * @package core
3444 * @category output
3446 class custom_menu_item implements renderable, templatable {
3449 * @var string The text to show for the item
3451 protected $text;
3454 * @var moodle_url The link to give the icon if it has no children
3456 protected $url;
3459 * @var string A title to apply to the item. By default the text
3461 protected $title;
3464 * @var int A sort order for the item, not necessary if you order things in
3465 * the CFG var.
3467 protected $sort;
3470 * @var custom_menu_item A reference to the parent for this item or NULL if
3471 * it is a top level item
3473 protected $parent;
3476 * @var array A array in which to store children this item has.
3478 protected $children = array();
3481 * @var int A reference to the sort var of the last child that was added
3483 protected $lastsort = 0;
3486 * Constructs the new custom menu item
3488 * @param string $text
3489 * @param moodle_url $url A moodle url to apply as the link for this item [Optional]
3490 * @param string $title A title to apply to this item [Optional]
3491 * @param int $sort A sort or to use if we need to sort differently [Optional]
3492 * @param custom_menu_item $parent A reference to the parent custom_menu_item this child
3493 * belongs to, only if the child has a parent. [Optional]
3495 public function __construct($text, moodle_url $url=null, $title=null, $sort = null, custom_menu_item $parent = null) {
3496 $this->text = $text;
3497 $this->url = $url;
3498 $this->title = $title;
3499 $this->sort = (int)$sort;
3500 $this->parent = $parent;
3504 * Adds a custom menu item as a child of this node given its properties.
3506 * @param string $text
3507 * @param moodle_url $url
3508 * @param string $title
3509 * @param int $sort
3510 * @return custom_menu_item
3512 public function add($text, moodle_url $url = null, $title = null, $sort = null) {
3513 $key = count($this->children);
3514 if (empty($sort)) {
3515 $sort = $this->lastsort + 1;
3517 $this->children[$key] = new custom_menu_item($text, $url, $title, $sort, $this);
3518 $this->lastsort = (int)$sort;
3519 return $this->children[$key];
3523 * Removes a custom menu item that is a child or descendant to the current menu.
3525 * Returns true if child was found and removed.
3527 * @param custom_menu_item $menuitem
3528 * @return bool
3530 public function remove_child(custom_menu_item $menuitem) {
3531 $removed = false;
3532 if (($key = array_search($menuitem, $this->children)) !== false) {
3533 unset($this->children[$key]);
3534 $this->children = array_values($this->children);
3535 $removed = true;
3536 } else {
3537 foreach ($this->children as $child) {
3538 if ($removed = $child->remove_child($menuitem)) {
3539 break;
3543 return $removed;
3547 * Returns the text for this item
3548 * @return string
3550 public function get_text() {
3551 return $this->text;
3555 * Returns the url for this item
3556 * @return moodle_url
3558 public function get_url() {
3559 return $this->url;
3563 * Returns the title for this item
3564 * @return string
3566 public function get_title() {
3567 return $this->title;
3571 * Sorts and returns the children for this item
3572 * @return array
3574 public function get_children() {
3575 $this->sort();
3576 return $this->children;
3580 * Gets the sort order for this child
3581 * @return int
3583 public function get_sort_order() {
3584 return $this->sort;
3588 * Gets the parent this child belong to
3589 * @return custom_menu_item
3591 public function get_parent() {
3592 return $this->parent;
3596 * Sorts the children this item has
3598 public function sort() {
3599 usort($this->children, array('custom_menu','sort_custom_menu_items'));
3603 * Returns true if this item has any children
3604 * @return bool
3606 public function has_children() {
3607 return (count($this->children) > 0);
3611 * Sets the text for the node
3612 * @param string $text
3614 public function set_text($text) {
3615 $this->text = (string)$text;
3619 * Sets the title for the node
3620 * @param string $title
3622 public function set_title($title) {
3623 $this->title = (string)$title;
3627 * Sets the url for the node
3628 * @param moodle_url $url
3630 public function set_url(moodle_url $url) {
3631 $this->url = $url;
3635 * Export this data so it can be used as the context for a mustache template.
3637 * @param renderer_base $output Used to do a final render of any components that need to be rendered for export.
3638 * @return array
3640 public function export_for_template(renderer_base $output) {
3641 global $CFG;
3643 require_once($CFG->libdir . '/externallib.php');
3645 $syscontext = context_system::instance();
3647 $context = new stdClass();
3648 $context->text = external_format_string($this->text, $syscontext->id);
3649 $context->url = $this->url ? $this->url->out() : null;
3650 $context->title = external_format_string($this->title, $syscontext->id);
3651 $context->sort = $this->sort;
3652 $context->children = array();
3653 if (preg_match("/^#+$/", $this->text)) {
3654 $context->divider = true;
3656 $context->haschildren = !empty($this->children) && (count($this->children) > 0);
3657 foreach ($this->children as $child) {
3658 $child = $child->export_for_template($output);
3659 array_push($context->children, $child);
3662 return $context;
3667 * Custom menu class
3669 * This class is used to operate a custom menu that can be rendered for the page.
3670 * The custom menu is built using $CFG->custommenuitems and is a structured collection
3671 * of custom_menu_item nodes that can be rendered by the core renderer.
3673 * To configure the custom menu:
3674 * Settings: Administration > Appearance > Themes > Theme settings
3676 * @copyright 2010 Sam Hemelryk
3677 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3678 * @since Moodle 2.0
3679 * @package core
3680 * @category output
3682 class custom_menu extends custom_menu_item {
3685 * @var string The language we should render for, null disables multilang support.
3687 protected $currentlanguage = null;
3690 * Creates the custom menu
3692 * @param string $definition the menu items definition in syntax required by {@link convert_text_to_menu_nodes()}
3693 * @param string $currentlanguage the current language code, null disables multilang support
3695 public function __construct($definition = '', $currentlanguage = null) {
3696 $this->currentlanguage = $currentlanguage;
3697 parent::__construct('root'); // create virtual root element of the menu
3698 if (!empty($definition)) {
3699 $this->override_children(self::convert_text_to_menu_nodes($definition, $currentlanguage));
3704 * Overrides the children of this custom menu. Useful when getting children
3705 * from $CFG->custommenuitems
3707 * @param array $children
3709 public function override_children(array $children) {
3710 $this->children = array();
3711 foreach ($children as $child) {
3712 if ($child instanceof custom_menu_item) {
3713 $this->children[] = $child;
3719 * Converts a string into a structured array of custom_menu_items which can
3720 * then be added to a custom menu.
3722 * Structure:
3723 * text|url|title|langs
3724 * The number of hyphens at the start determines the depth of the item. The
3725 * languages are optional, comma separated list of languages the line is for.
3727 * Example structure:
3728 * First level first item|http://www.moodle.com/
3729 * -Second level first item|http://www.moodle.com/partners/
3730 * -Second level second item|http://www.moodle.com/hq/
3731 * --Third level first item|http://www.moodle.com/jobs/
3732 * -Second level third item|http://www.moodle.com/development/
3733 * First level second item|http://www.moodle.com/feedback/
3734 * First level third item
3735 * English only|http://moodle.com|English only item|en
3736 * German only|http://moodle.de|Deutsch|de,de_du,de_kids
3739 * @static
3740 * @param string $text the menu items definition
3741 * @param string $language the language code, null disables multilang support
3742 * @return array
3744 public static function convert_text_to_menu_nodes($text, $language = null) {
3745 $root = new custom_menu();
3746 $lastitem = $root;
3747 $lastdepth = 0;
3748 $hiddenitems = array();
3749 $lines = explode("\n", $text);
3750 foreach ($lines as $linenumber => $line) {
3751 $line = trim($line);
3752 if (strlen($line) == 0) {
3753 continue;
3755 // Parse item settings.
3756 $itemtext = null;
3757 $itemurl = null;
3758 $itemtitle = null;
3759 $itemvisible = true;
3760 $settings = explode('|', $line);
3761 foreach ($settings as $i => $setting) {
3762 $setting = trim($setting);
3763 if (!empty($setting)) {
3764 switch ($i) {
3765 case 0:
3766 $itemtext = ltrim($setting, '-');
3767 $itemtitle = $itemtext;
3768 break;
3769 case 1:
3770 try {
3771 $itemurl = new moodle_url($setting);
3772 } catch (moodle_exception $exception) {
3773 // We're not actually worried about this, we don't want to mess up the display
3774 // just for a wrongly entered URL.
3775 $itemurl = null;
3777 break;
3778 case 2:
3779 $itemtitle = $setting;
3780 break;
3781 case 3:
3782 if (!empty($language)) {
3783 $itemlanguages = array_map('trim', explode(',', $setting));
3784 $itemvisible &= in_array($language, $itemlanguages);
3786 break;
3790 // Get depth of new item.
3791 preg_match('/^(\-*)/', $line, $match);
3792 $itemdepth = strlen($match[1]) + 1;
3793 // Find parent item for new item.
3794 while (($lastdepth - $itemdepth) >= 0) {
3795 $lastitem = $lastitem->get_parent();
3796 $lastdepth--;
3798 $lastitem = $lastitem->add($itemtext, $itemurl, $itemtitle, $linenumber + 1);
3799 $lastdepth++;
3800 if (!$itemvisible) {
3801 $hiddenitems[] = $lastitem;
3804 foreach ($hiddenitems as $item) {
3805 $item->parent->remove_child($item);
3807 return $root->get_children();
3811 * Sorts two custom menu items
3813 * This function is designed to be used with the usort method
3814 * usort($this->children, array('custom_menu','sort_custom_menu_items'));
3816 * @static
3817 * @param custom_menu_item $itema
3818 * @param custom_menu_item $itemb
3819 * @return int
3821 public static function sort_custom_menu_items(custom_menu_item $itema, custom_menu_item $itemb) {
3822 $itema = $itema->get_sort_order();
3823 $itemb = $itemb->get_sort_order();
3824 if ($itema == $itemb) {
3825 return 0;
3827 return ($itema > $itemb) ? +1 : -1;
3832 * Stores one tab
3834 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3835 * @package core
3837 class tabobject implements renderable, templatable {
3838 /** @var string unique id of the tab in this tree, it is used to find selected and/or inactive tabs */
3839 var $id;
3840 /** @var moodle_url|string link */
3841 var $link;
3842 /** @var string text on the tab */
3843 var $text;
3844 /** @var string title under the link, by defaul equals to text */
3845 var $title;
3846 /** @var bool whether to display a link under the tab name when it's selected */
3847 var $linkedwhenselected = false;
3848 /** @var bool whether the tab is inactive */
3849 var $inactive = false;
3850 /** @var bool indicates that this tab's child is selected */
3851 var $activated = false;
3852 /** @var bool indicates that this tab is selected */
3853 var $selected = false;
3854 /** @var array stores children tabobjects */
3855 var $subtree = array();
3856 /** @var int level of tab in the tree, 0 for root (instance of tabtree), 1 for the first row of tabs */
3857 var $level = 1;
3860 * Constructor
3862 * @param string $id unique id of the tab in this tree, it is used to find selected and/or inactive tabs
3863 * @param string|moodle_url $link
3864 * @param string $text text on the tab
3865 * @param string $title title under the link, by defaul equals to text
3866 * @param bool $linkedwhenselected whether to display a link under the tab name when it's selected
3868 public function __construct($id, $link = null, $text = '', $title = '', $linkedwhenselected = false) {
3869 $this->id = $id;
3870 $this->link = $link;
3871 $this->text = $text;
3872 $this->title = $title ? $title : $text;
3873 $this->linkedwhenselected = $linkedwhenselected;
3877 * Travels through tree and finds the tab to mark as selected, all parents are automatically marked as activated
3879 * @param string $selected the id of the selected tab (whatever row it's on),
3880 * if null marks all tabs as unselected
3881 * @return bool whether this tab is selected or contains selected tab in its subtree
3883 protected function set_selected($selected) {
3884 if ((string)$selected === (string)$this->id) {
3885 $this->selected = true;
3886 // This tab is selected. No need to travel through subtree.
3887 return true;
3889 foreach ($this->subtree as $subitem) {
3890 if ($subitem->set_selected($selected)) {
3891 // This tab has child that is selected. Mark it as activated. No need to check other children.
3892 $this->activated = true;
3893 return true;
3896 return false;
3900 * Travels through tree and finds a tab with specified id
3902 * @param string $id
3903 * @return tabtree|null
3905 public function find($id) {
3906 if ((string)$this->id === (string)$id) {
3907 return $this;
3909 foreach ($this->subtree as $tab) {
3910 if ($obj = $tab->find($id)) {
3911 return $obj;
3914 return null;
3918 * Allows to mark each tab's level in the tree before rendering.
3920 * @param int $level
3922 protected function set_level($level) {
3923 $this->level = $level;
3924 foreach ($this->subtree as $tab) {
3925 $tab->set_level($level + 1);
3930 * Export for template.
3932 * @param renderer_base $output Renderer.
3933 * @return object
3935 public function export_for_template(renderer_base $output) {
3936 if ($this->inactive || ($this->selected && !$this->linkedwhenselected) || $this->activated) {
3937 $link = null;
3938 } else {
3939 $link = $this->link;
3941 $active = $this->activated || $this->selected;
3943 return (object) [
3944 'id' => $this->id,
3945 'link' => is_object($link) ? $link->out(false) : $link,
3946 'text' => $this->text,
3947 'title' => $this->title,
3948 'inactive' => !$active && $this->inactive,
3949 'active' => $active,
3950 'level' => $this->level,
3957 * Renderable for the main page header.
3959 * @package core
3960 * @category output
3961 * @since 2.9
3962 * @copyright 2015 Adrian Greeve <adrian@moodle.com>
3963 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3965 class context_header implements renderable {
3968 * @var string $heading Main heading.
3970 public $heading;
3972 * @var int $headinglevel Main heading 'h' tag level.
3974 public $headinglevel;
3976 * @var string|null $imagedata HTML code for the picture in the page header.
3978 public $imagedata;
3980 * @var array $additionalbuttons Additional buttons for the header e.g. Messaging button for the user header.
3981 * array elements - title => alternate text for the image, or if no image is available the button text.
3982 * url => Link for the button to head to. Should be a moodle_url.
3983 * image => location to the image, or name of the image in /pix/t/{image name}.
3984 * linkattributes => additional attributes for the <a href> element.
3985 * page => page object. Don't include if the image is an external image.
3987 public $additionalbuttons;
3990 * Constructor.
3992 * @param string $heading Main heading data.
3993 * @param int $headinglevel Main heading 'h' tag level.
3994 * @param string|null $imagedata HTML code for the picture in the page header.
3995 * @param string $additionalbuttons Buttons for the header e.g. Messaging button for the user header.
3997 public function __construct($heading = null, $headinglevel = 1, $imagedata = null, $additionalbuttons = null) {
3999 $this->heading = $heading;
4000 $this->headinglevel = $headinglevel;
4001 $this->imagedata = $imagedata;
4002 $this->additionalbuttons = $additionalbuttons;
4003 // If we have buttons then format them.
4004 if (isset($this->additionalbuttons)) {
4005 $this->format_button_images();
4010 * Adds an array element for a formatted image.
4012 protected function format_button_images() {
4014 foreach ($this->additionalbuttons as $buttontype => $button) {
4015 $page = $button['page'];
4016 // If no image is provided then just use the title.
4017 if (!isset($button['image'])) {
4018 $this->additionalbuttons[$buttontype]['formattedimage'] = $button['title'];
4019 } else {
4020 // Check to see if this is an internal Moodle icon.
4021 $internalimage = $page->theme->resolve_image_location('t/' . $button['image'], 'moodle');
4022 if ($internalimage) {
4023 $this->additionalbuttons[$buttontype]['formattedimage'] = 't/' . $button['image'];
4024 } else {
4025 // Treat as an external image.
4026 $this->additionalbuttons[$buttontype]['formattedimage'] = $button['image'];
4030 if (isset($button['linkattributes']['class'])) {
4031 $class = $button['linkattributes']['class'] . ' btn';
4032 } else {
4033 $class = 'btn';
4035 // Add the bootstrap 'btn' class for formatting.
4036 $this->additionalbuttons[$buttontype]['linkattributes'] = array_merge($button['linkattributes'],
4037 array('class' => $class));
4043 * Stores tabs list
4045 * Example how to print a single line tabs:
4046 * $rows = array(
4047 * new tabobject(...),
4048 * new tabobject(...)
4049 * );
4050 * echo $OUTPUT->tabtree($rows, $selectedid);
4052 * Multiple row tabs may not look good on some devices but if you want to use them
4053 * you can specify ->subtree for the active tabobject.
4055 * @copyright 2013 Marina Glancy
4056 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4057 * @since Moodle 2.5
4058 * @package core
4059 * @category output
4061 class tabtree extends tabobject {
4063 * Constuctor
4065 * It is highly recommended to call constructor when list of tabs is already
4066 * populated, this way you ensure that selected and inactive tabs are located
4067 * and attribute level is set correctly.
4069 * @param array $tabs array of tabs, each of them may have it's own ->subtree
4070 * @param string|null $selected which tab to mark as selected, all parent tabs will
4071 * automatically be marked as activated
4072 * @param array|string|null $inactive list of ids of inactive tabs, regardless of
4073 * their level. Note that you can as weel specify tabobject::$inactive for separate instances
4075 public function __construct($tabs, $selected = null, $inactive = null) {
4076 $this->subtree = $tabs;
4077 if ($selected !== null) {
4078 $this->set_selected($selected);
4080 if ($inactive !== null) {
4081 if (is_array($inactive)) {
4082 foreach ($inactive as $id) {
4083 if ($tab = $this->find($id)) {
4084 $tab->inactive = true;
4087 } else if ($tab = $this->find($inactive)) {
4088 $tab->inactive = true;
4091 $this->set_level(0);
4095 * Export for template.
4097 * @param renderer_base $output Renderer.
4098 * @return object
4100 public function export_for_template(renderer_base $output) {
4101 $tabs = [];
4102 $secondrow = false;
4104 foreach ($this->subtree as $tab) {
4105 $tabs[] = $tab->export_for_template($output);
4106 if (!empty($tab->subtree) && ($tab->level == 0 || $tab->selected || $tab->activated)) {
4107 $secondrow = new tabtree($tab->subtree);
4111 return (object) [
4112 'tabs' => $tabs,
4113 'secondrow' => $secondrow ? $secondrow->export_for_template($output) : false
4119 * An action menu.
4121 * This action menu component takes a series of primary and secondary actions.
4122 * The primary actions are displayed permanently and the secondary attributes are displayed within a drop
4123 * down menu.
4125 * @package core
4126 * @category output
4127 * @copyright 2013 Sam Hemelryk
4128 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4130 class action_menu implements renderable, templatable {
4133 * Top right alignment.
4135 const TL = 1;
4138 * Top right alignment.
4140 const TR = 2;
4143 * Top right alignment.
4145 const BL = 3;
4148 * Top right alignment.
4150 const BR = 4;
4153 * The instance number. This is unique to this instance of the action menu.
4154 * @var int
4156 protected $instance = 0;
4159 * An array of primary actions. Please use {@link action_menu::add_primary_action()} to add actions.
4160 * @var array
4162 protected $primaryactions = array();
4165 * An array of secondary actions. Please use {@link action_menu::add_secondary_action()} to add actions.
4166 * @var array
4168 protected $secondaryactions = array();
4171 * An array of attributes added to the container of the action menu.
4172 * Initialised with defaults during construction.
4173 * @var array
4175 public $attributes = array();
4177 * An array of attributes added to the container of the primary actions.
4178 * Initialised with defaults during construction.
4179 * @var array
4181 public $attributesprimary = array();
4183 * An array of attributes added to the container of the secondary actions.
4184 * Initialised with defaults during construction.
4185 * @var array
4187 public $attributessecondary = array();
4190 * The string to use next to the icon for the action icon relating to the secondary (dropdown) menu.
4191 * @var array
4193 public $actiontext = null;
4196 * The string to use for the accessible label for the menu.
4197 * @var array
4199 public $actionlabel = null;
4202 * An icon to use for the toggling the secondary menu (dropdown).
4203 * @var actionicon
4205 public $actionicon;
4208 * Any text to use for the toggling the secondary menu (dropdown).
4209 * @var menutrigger
4211 public $menutrigger = '';
4214 * Any extra classes for toggling to the secondary menu.
4215 * @var triggerextraclasses
4217 public $triggerextraclasses = '';
4220 * Place the action menu before all other actions.
4221 * @var prioritise
4223 public $prioritise = false;
4226 * Constructs the action menu with the given items.
4228 * @param array $actions An array of actions.
4230 public function __construct(array $actions = array()) {
4231 static $initialised = 0;
4232 $this->instance = $initialised;
4233 $initialised++;
4235 $this->attributes = array(
4236 'id' => 'action-menu-'.$this->instance,
4237 'class' => 'moodle-actionmenu',
4238 'data-enhance' => 'moodle-core-actionmenu'
4240 $this->attributesprimary = array(
4241 'id' => 'action-menu-'.$this->instance.'-menubar',
4242 'class' => 'menubar',
4243 'role' => 'menubar'
4245 $this->attributessecondary = array(
4246 'id' => 'action-menu-'.$this->instance.'-menu',
4247 'class' => 'menu',
4248 'data-rel' => 'menu-content',
4249 'aria-labelledby' => 'action-menu-toggle-'.$this->instance,
4250 'role' => 'menu'
4252 $this->set_alignment(self::TR, self::BR);
4253 foreach ($actions as $action) {
4254 $this->add($action);
4259 * Sets the label for the menu trigger.
4261 * @param string $label The text
4262 * @return null
4264 public function set_action_label($label) {
4265 $this->actionlabel = $label;
4269 * Sets the menu trigger text.
4271 * @param string $trigger The text
4272 * @param string $extraclasses Extra classes to style the secondary menu toggle.
4273 * @return null
4275 public function set_menu_trigger($trigger, $extraclasses = '') {
4276 $this->menutrigger = $trigger;
4277 $this->triggerextraclasses = $extraclasses;
4281 * Return true if there is at least one visible link in the menu.
4283 * @return bool
4285 public function is_empty() {
4286 return !count($this->primaryactions) && !count($this->secondaryactions);
4290 * Initialises JS required fore the action menu.
4291 * The JS is only required once as it manages all action menu's on the page.
4293 * @param moodle_page $page
4295 public function initialise_js(moodle_page $page) {
4296 static $initialised = false;
4297 if (!$initialised) {
4298 $page->requires->yui_module('moodle-core-actionmenu', 'M.core.actionmenu.init');
4299 $initialised = true;
4304 * Adds an action to this action menu.
4306 * @param action_menu_link|pix_icon|string $action
4308 public function add($action) {
4309 if ($action instanceof action_link) {
4310 if ($action->primary) {
4311 $this->add_primary_action($action);
4312 } else {
4313 $this->add_secondary_action($action);
4315 } else if ($action instanceof pix_icon) {
4316 $this->add_primary_action($action);
4317 } else {
4318 $this->add_secondary_action($action);
4323 * Adds a primary action to the action menu.
4325 * @param action_menu_link|action_link|pix_icon|string $action
4327 public function add_primary_action($action) {
4328 if ($action instanceof action_link || $action instanceof pix_icon) {
4329 $action->attributes['role'] = 'menuitem';
4330 if ($action instanceof action_menu_link) {
4331 $action->actionmenu = $this;
4334 $this->primaryactions[] = $action;
4338 * Adds a secondary action to the action menu.
4340 * @param action_link|pix_icon|string $action
4342 public function add_secondary_action($action) {
4343 if ($action instanceof action_link || $action instanceof pix_icon) {
4344 $action->attributes['role'] = 'menuitem';
4345 if ($action instanceof action_menu_link) {
4346 $action->actionmenu = $this;
4349 $this->secondaryactions[] = $action;
4353 * Returns the primary actions ready to be rendered.
4355 * @param core_renderer $output The renderer to use for getting icons.
4356 * @return array
4358 public function get_primary_actions(core_renderer $output = null) {
4359 global $OUTPUT;
4360 if ($output === null) {
4361 $output = $OUTPUT;
4363 $pixicon = $this->actionicon;
4364 $linkclasses = array('toggle-display');
4366 $title = '';
4367 if (!empty($this->menutrigger)) {
4368 $pixicon = '<b class="caret"></b>';
4369 $linkclasses[] = 'textmenu';
4370 } else {
4371 $title = new lang_string('actionsmenu', 'moodle');
4372 $this->actionicon = new pix_icon(
4373 't/edit_menu',
4375 'moodle',
4376 array('class' => 'iconsmall actionmenu', 'title' => '')
4378 $pixicon = $this->actionicon;
4380 if ($pixicon instanceof renderable) {
4381 $pixicon = $output->render($pixicon);
4382 if ($pixicon instanceof pix_icon && isset($pixicon->attributes['alt'])) {
4383 $title = $pixicon->attributes['alt'];
4386 $string = '';
4387 if ($this->actiontext) {
4388 $string = $this->actiontext;
4390 $label = '';
4391 if ($this->actionlabel) {
4392 $label = $this->actionlabel;
4393 } else {
4394 $label = $title;
4396 $actions = $this->primaryactions;
4397 $attributes = array(
4398 'class' => implode(' ', $linkclasses),
4399 'title' => $title,
4400 'aria-label' => $label,
4401 'id' => 'action-menu-toggle-'.$this->instance,
4402 'role' => 'menuitem'
4404 $link = html_writer::link('#', $string . $this->menutrigger . $pixicon, $attributes);
4405 if ($this->prioritise) {
4406 array_unshift($actions, $link);
4407 } else {
4408 $actions[] = $link;
4410 return $actions;
4414 * Returns the secondary actions ready to be rendered.
4415 * @return array
4417 public function get_secondary_actions() {
4418 return $this->secondaryactions;
4422 * Sets the selector that should be used to find the owning node of this menu.
4423 * @param string $selector A CSS/YUI selector to identify the owner of the menu.
4425 public function set_owner_selector($selector) {
4426 $this->attributes['data-owner'] = $selector;
4430 * Sets the alignment of the dialogue in relation to button used to toggle it.
4432 * @param int $dialogue One of action_menu::TL, action_menu::TR, action_menu::BL, action_menu::BR.
4433 * @param int $button One of action_menu::TL, action_menu::TR, action_menu::BL, action_menu::BR.
4435 public function set_alignment($dialogue, $button) {
4436 if (isset($this->attributessecondary['data-align'])) {
4437 // We've already got one set, lets remove the old class so as to avoid troubles.
4438 $class = $this->attributessecondary['class'];
4439 $search = 'align-'.$this->attributessecondary['data-align'];
4440 $this->attributessecondary['class'] = str_replace($search, '', $class);
4442 $align = $this->get_align_string($dialogue) . '-' . $this->get_align_string($button);
4443 $this->attributessecondary['data-align'] = $align;
4444 $this->attributessecondary['class'] .= ' align-'.$align;
4448 * Returns a string to describe the alignment.
4450 * @param int $align One of action_menu::TL, action_menu::TR, action_menu::BL, action_menu::BR.
4451 * @return string
4453 protected function get_align_string($align) {
4454 switch ($align) {
4455 case self::TL :
4456 return 'tl';
4457 case self::TR :
4458 return 'tr';
4459 case self::BL :
4460 return 'bl';
4461 case self::BR :
4462 return 'br';
4463 default :
4464 return 'tl';
4469 * Sets a constraint for the dialogue.
4471 * The constraint is applied when the dialogue is shown and limits the display of the dialogue to within the
4472 * element the constraint identifies.
4474 * This is required whenever the action menu is displayed inside any CSS element with the .no-overflow class
4475 * (flexible_table and any of it's child classes are a likely candidate).
4477 * @param string $ancestorselector A snippet of CSS used to identify the ancestor to contrain the dialogue to.
4479 public function set_constraint($ancestorselector) {
4480 $this->attributessecondary['data-constraint'] = $ancestorselector;
4484 * If you call this method the action menu will be displayed but will not be enhanced.
4486 * By not displaying the menu enhanced all items will be displayed in a single row.
4488 * @deprecated since Moodle 3.2
4490 public function do_not_enhance() {
4491 debugging('The method action_menu::do_not_enhance() is deprecated, use a list of action_icon instead.', DEBUG_DEVELOPER);
4495 * Returns true if this action menu will be enhanced.
4497 * @return bool
4499 public function will_be_enhanced() {
4500 return isset($this->attributes['data-enhance']);
4504 * Sets nowrap on items. If true menu items should not wrap lines if they are longer than the available space.
4506 * This property can be useful when the action menu is displayed within a parent element that is either floated
4507 * or relatively positioned.
4508 * In that situation the width of the menu is determined by the width of the parent element which may not be large
4509 * enough for the menu items without them wrapping.
4510 * This disables the wrapping so that the menu takes on the width of the longest item.
4512 * @param bool $value If true nowrap gets set, if false it gets removed. Defaults to true.
4514 public function set_nowrap_on_items($value = true) {
4515 $class = 'nowrap-items';
4516 if (!empty($this->attributes['class'])) {
4517 $pos = strpos($this->attributes['class'], $class);
4518 if ($value === true && $pos === false) {
4519 // The value is true and the class has not been set yet. Add it.
4520 $this->attributes['class'] .= ' '.$class;
4521 } else if ($value === false && $pos !== false) {
4522 // The value is false and the class has been set. Remove it.
4523 $this->attributes['class'] = substr($this->attributes['class'], $pos, strlen($class));
4525 } else if ($value) {
4526 // The value is true and the class has not been set yet. Add it.
4527 $this->attributes['class'] = $class;
4532 * Export for template.
4534 * @param renderer_base $output The renderer.
4535 * @return stdClass
4537 public function export_for_template(renderer_base $output) {
4538 $data = new stdClass();
4539 $attributes = $this->attributes;
4540 $attributesprimary = $this->attributesprimary;
4541 $attributessecondary = $this->attributessecondary;
4543 $data->instance = $this->instance;
4545 $data->classes = isset($attributes['class']) ? $attributes['class'] : '';
4546 unset($attributes['class']);
4548 $data->attributes = array_map(function($key, $value) {
4549 return [ 'name' => $key, 'value' => $value ];
4550 }, array_keys($attributes), $attributes);
4552 $primary = new stdClass();
4553 $primary->title = '';
4554 $primary->prioritise = $this->prioritise;
4556 $primary->classes = isset($attributesprimary['class']) ? $attributesprimary['class'] : '';
4557 unset($attributesprimary['class']);
4558 $primary->attributes = array_map(function($key, $value) {
4559 return [ 'name' => $key, 'value' => $value ];
4560 }, array_keys($attributesprimary), $attributesprimary);
4562 $actionicon = $this->actionicon;
4563 if (!empty($this->menutrigger)) {
4564 $primary->menutrigger = $this->menutrigger;
4565 $primary->triggerextraclasses = $this->triggerextraclasses;
4566 if ($this->actionlabel) {
4567 $primary->title = $this->actionlabel;
4568 } else if ($this->actiontext) {
4569 $primary->title = $this->actiontext;
4570 } else {
4571 $primary->title = strip_tags($this->menutrigger);
4573 } else {
4574 $primary->title = get_string('actionsmenu');
4575 $iconattributes = ['class' => 'iconsmall actionmenu', 'title' => $primary->title];
4576 $actionicon = new pix_icon('t/edit_menu', '', 'moodle', $iconattributes);
4579 if ($actionicon instanceof pix_icon) {
4580 $primary->icon = $actionicon->export_for_pix();
4581 if (!empty($actionicon->attributes['alt'])) {
4582 $primary->title = $actionicon->attributes['alt'];
4584 } else {
4585 $primary->iconraw = $actionicon ? $output->render($actionicon) : '';
4588 $primary->actiontext = $this->actiontext ? (string) $this->actiontext : '';
4589 $primary->items = array_map(function($item) use ($output) {
4590 $data = (object) [];
4591 if ($item instanceof action_menu_link) {
4592 $data->actionmenulink = $item->export_for_template($output);
4593 } else if ($item instanceof action_menu_filler) {
4594 $data->actionmenufiller = $item->export_for_template($output);
4595 } else if ($item instanceof action_link) {
4596 $data->actionlink = $item->export_for_template($output);
4597 } else if ($item instanceof pix_icon) {
4598 $data->pixicon = $item->export_for_template($output);
4599 } else {
4600 $data->rawhtml = ($item instanceof renderable) ? $output->render($item) : $item;
4602 return $data;
4603 }, $this->primaryactions);
4605 $secondary = new stdClass();
4606 $secondary->classes = isset($attributessecondary['class']) ? $attributessecondary['class'] : '';
4607 unset($attributessecondary['class']);
4608 $secondary->attributes = array_map(function($key, $value) {
4609 return [ 'name' => $key, 'value' => $value ];
4610 }, array_keys($attributessecondary), $attributessecondary);
4611 $secondary->items = array_map(function($item) use ($output) {
4612 $data = (object) [];
4613 if ($item instanceof action_menu_link) {
4614 $data->actionmenulink = $item->export_for_template($output);
4615 } else if ($item instanceof action_menu_filler) {
4616 $data->actionmenufiller = $item->export_for_template($output);
4617 } else if ($item instanceof action_link) {
4618 $data->actionlink = $item->export_for_template($output);
4619 } else if ($item instanceof pix_icon) {
4620 $data->pixicon = $item->export_for_template($output);
4621 } else {
4622 $data->rawhtml = ($item instanceof renderable) ? $output->render($item) : $item;
4624 return $data;
4625 }, $this->secondaryactions);
4627 $data->primary = $primary;
4628 $data->secondary = $secondary;
4630 return $data;
4636 * An action menu filler
4638 * @package core
4639 * @category output
4640 * @copyright 2013 Andrew Nicols
4641 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4643 class action_menu_filler extends action_link implements renderable {
4646 * True if this is a primary action. False if not.
4647 * @var bool
4649 public $primary = true;
4652 * Constructs the object.
4654 public function __construct() {
4659 * An action menu action
4661 * @package core
4662 * @category output
4663 * @copyright 2013 Sam Hemelryk
4664 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4666 class action_menu_link extends action_link implements renderable {
4669 * True if this is a primary action. False if not.
4670 * @var bool
4672 public $primary = true;
4675 * The action menu this link has been added to.
4676 * @var action_menu
4678 public $actionmenu = null;
4681 * Constructs the object.
4683 * @param moodle_url $url The URL for the action.
4684 * @param pix_icon $icon The icon to represent the action.
4685 * @param string $text The text to represent the action.
4686 * @param bool $primary Whether this is a primary action or not.
4687 * @param array $attributes Any attribtues associated with the action.
4689 public function __construct(moodle_url $url, pix_icon $icon = null, $text, $primary = true, array $attributes = array()) {
4690 parent::__construct($url, $text, null, $attributes, $icon);
4691 $this->primary = (bool)$primary;
4692 $this->add_class('menu-action');
4693 $this->attributes['role'] = 'menuitem';
4697 * Export for template.
4699 * @param renderer_base $output The renderer.
4700 * @return stdClass
4702 public function export_for_template(renderer_base $output) {
4703 static $instance = 1;
4705 $data = parent::export_for_template($output);
4706 $data->instance = $instance++;
4708 // Ignore what the parent did with the attributes, except for ID and class.
4709 $data->attributes = [];
4710 $attributes = $this->attributes;
4711 unset($attributes['id']);
4712 unset($attributes['class']);
4714 // Handle text being a renderable.
4715 if ($this->text instanceof renderable) {
4716 $data->text = $this->render($this->text);
4719 $data->showtext = (!$this->icon || $this->primary === false);
4721 $data->icon = null;
4722 if ($this->icon) {
4723 $icon = $this->icon;
4724 if ($this->primary || !$this->actionmenu->will_be_enhanced()) {
4725 $attributes['title'] = $data->text;
4727 $data->icon = $icon ? $icon->export_for_pix() : null;
4730 $data->disabled = !empty($attributes['disabled']);
4731 unset($attributes['disabled']);
4733 $data->attributes = array_map(function($key, $value) {
4734 return [
4735 'name' => $key,
4736 'value' => $value
4738 }, array_keys($attributes), $attributes);
4740 return $data;
4745 * A primary action menu action
4747 * @package core
4748 * @category output
4749 * @copyright 2013 Sam Hemelryk
4750 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4752 class action_menu_link_primary extends action_menu_link {
4754 * Constructs the object.
4756 * @param moodle_url $url
4757 * @param pix_icon $icon
4758 * @param string $text
4759 * @param array $attributes
4761 public function __construct(moodle_url $url, pix_icon $icon = null, $text, array $attributes = array()) {
4762 parent::__construct($url, $icon, $text, true, $attributes);
4767 * A secondary action menu action
4769 * @package core
4770 * @category output
4771 * @copyright 2013 Sam Hemelryk
4772 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4774 class action_menu_link_secondary extends action_menu_link {
4776 * Constructs the object.
4778 * @param moodle_url $url
4779 * @param pix_icon $icon
4780 * @param string $text
4781 * @param array $attributes
4783 public function __construct(moodle_url $url, pix_icon $icon = null, $text, array $attributes = array()) {
4784 parent::__construct($url, $icon, $text, false, $attributes);
4789 * Represents a set of preferences groups.
4791 * @package core
4792 * @category output
4793 * @copyright 2015 Frédéric Massart - FMCorz.net
4794 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4796 class preferences_groups implements renderable {
4799 * Array of preferences_group.
4800 * @var array
4802 public $groups;
4805 * Constructor.
4806 * @param array $groups of preferences_group
4808 public function __construct($groups) {
4809 $this->groups = $groups;
4815 * Represents a group of preferences page link.
4817 * @package core
4818 * @category output
4819 * @copyright 2015 Frédéric Massart - FMCorz.net
4820 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4822 class preferences_group implements renderable {
4825 * Title of the group.
4826 * @var string
4828 public $title;
4831 * Array of navigation_node.
4832 * @var array
4834 public $nodes;
4837 * Constructor.
4838 * @param string $title The title.
4839 * @param array $nodes of navigation_node.
4841 public function __construct($title, $nodes) {
4842 $this->title = $title;
4843 $this->nodes = $nodes;
4848 * Progress bar class.
4850 * Manages the display of a progress bar.
4852 * To use this class.
4853 * - construct
4854 * - call create (or use the 3rd param to the constructor)
4855 * - call update or update_full() or update() repeatedly
4857 * @copyright 2008 jamiesensei
4858 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4859 * @package core
4860 * @category output
4862 class progress_bar implements renderable, templatable {
4863 /** @var string html id */
4864 private $html_id;
4865 /** @var int total width */
4866 private $width;
4867 /** @var int last percentage printed */
4868 private $percent = 0;
4869 /** @var int time when last printed */
4870 private $lastupdate = 0;
4871 /** @var int when did we start printing this */
4872 private $time_start = 0;
4875 * Constructor
4877 * Prints JS code if $autostart true.
4879 * @param string $htmlid The container ID.
4880 * @param int $width The suggested width.
4881 * @param bool $autostart Whether to start the progress bar right away.
4883 public function __construct($htmlid = '', $width = 500, $autostart = false) {
4884 if (!CLI_SCRIPT && !NO_OUTPUT_BUFFERING) {
4885 debugging('progress_bar used in a non-CLI script without setting NO_OUTPUT_BUFFERING.', DEBUG_DEVELOPER);
4888 if (!empty($htmlid)) {
4889 $this->html_id = $htmlid;
4890 } else {
4891 $this->html_id = 'pbar_'.uniqid();
4894 $this->width = $width;
4896 if ($autostart) {
4897 $this->create();
4902 * Create a new progress bar, this function will output html.
4904 * @return void Echo's output
4906 public function create() {
4907 global $OUTPUT;
4909 $this->time_start = microtime(true);
4910 if (CLI_SCRIPT) {
4911 return; // Temporary solution for cli scripts.
4914 flush();
4915 echo $OUTPUT->render($this);
4916 flush();
4920 * Update the progress bar.
4922 * @param int $percent From 1-100.
4923 * @param string $msg The message.
4924 * @return void Echo's output
4925 * @throws coding_exception
4927 private function _update($percent, $msg) {
4928 if (empty($this->time_start)) {
4929 throw new coding_exception('You must call create() (or use the $autostart ' .
4930 'argument to the constructor) before you try updating the progress bar.');
4933 if (CLI_SCRIPT) {
4934 return; // Temporary solution for cli scripts.
4937 $estimate = $this->estimate($percent);
4939 if ($estimate === null) {
4940 // Always do the first and last updates.
4941 } else if ($estimate == 0) {
4942 // Always do the last updates.
4943 } else if ($this->lastupdate + 20 < time()) {
4944 // We must update otherwise browser would time out.
4945 } else if (round($this->percent, 2) === round($percent, 2)) {
4946 // No significant change, no need to update anything.
4947 return;
4950 $estimatemsg = null;
4951 if (is_numeric($estimate)) {
4952 $estimatemsg = get_string('secondsleft', 'moodle', round($estimate, 2));
4955 $this->percent = round($percent, 2);
4956 $this->lastupdate = microtime(true);
4958 echo html_writer::script(js_writer::function_call('updateProgressBar',
4959 array($this->html_id, $this->percent, $msg, $estimatemsg)));
4960 flush();
4964 * Estimate how much time it is going to take.
4966 * @param int $pt From 1-100.
4967 * @return mixed Null (unknown), or int.
4969 private function estimate($pt) {
4970 if ($this->lastupdate == 0) {
4971 return null;
4973 if ($pt < 0.00001) {
4974 return null; // We do not know yet how long it will take.
4976 if ($pt > 99.99999) {
4977 return 0; // Nearly done, right?
4979 $consumed = microtime(true) - $this->time_start;
4980 if ($consumed < 0.001) {
4981 return null;
4984 return (100 - $pt) * ($consumed / $pt);
4988 * Update progress bar according percent.
4990 * @param int $percent From 1-100.
4991 * @param string $msg The message needed to be shown.
4993 public function update_full($percent, $msg) {
4994 $percent = max(min($percent, 100), 0);
4995 $this->_update($percent, $msg);
4999 * Update progress bar according the number of tasks.
5001 * @param int $cur Current task number.
5002 * @param int $total Total task number.
5003 * @param string $msg The message needed to be shown.
5005 public function update($cur, $total, $msg) {
5006 $percent = ($cur / $total) * 100;
5007 $this->update_full($percent, $msg);
5011 * Restart the progress bar.
5013 public function restart() {
5014 $this->percent = 0;
5015 $this->lastupdate = 0;
5016 $this->time_start = 0;
5020 * Export for template.
5022 * @param renderer_base $output The renderer.
5023 * @return array
5025 public function export_for_template(renderer_base $output) {
5026 return [
5027 'id' => $this->html_id,
5028 'width' => $this->width,