MDL-49684 timezones: rewrite timezone support
[moodle.git] / lib / weblib.php
blobce30a8f6923631f89a1d29b21ce7128756de1a8f
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 * Library of functions for web output
20 * Library of all general-purpose Moodle PHP functions and constants
21 * that produce HTML output
23 * Other main libraries:
24 * - datalib.php - functions that access the database.
25 * - moodlelib.php - general-purpose Moodle functions.
27 * @package core
28 * @subpackage lib
29 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33 defined('MOODLE_INTERNAL') || die();
35 // Constants.
37 // Define text formatting types ... eventually we can add Wiki, BBcode etc.
39 /**
40 * Does all sorts of transformations and filtering.
42 define('FORMAT_MOODLE', '0');
44 /**
45 * Plain HTML (with some tags stripped).
47 define('FORMAT_HTML', '1');
49 /**
50 * Plain text (even tags are printed in full).
52 define('FORMAT_PLAIN', '2');
54 /**
55 * Wiki-formatted text.
56 * Deprecated: left here just to note that '3' is not used (at the moment)
57 * and to catch any latent wiki-like text (which generates an error)
58 * @deprecated since 2005!
60 define('FORMAT_WIKI', '3');
62 /**
63 * Markdown-formatted text http://daringfireball.net/projects/markdown/
65 define('FORMAT_MARKDOWN', '4');
67 /**
68 * A moodle_url comparison using this flag will return true if the base URLs match, params are ignored.
70 define('URL_MATCH_BASE', 0);
72 /**
73 * A moodle_url comparison using this flag will return true if the base URLs match and the params of url1 are part of url2.
75 define('URL_MATCH_PARAMS', 1);
77 /**
78 * A moodle_url comparison using this flag will return true if the two URLs are identical, except for the order of the params.
80 define('URL_MATCH_EXACT', 2);
82 // Functions.
84 /**
85 * Add quotes to HTML characters.
87 * Returns $var with HTML characters (like "<", ">", etc.) properly quoted.
88 * This function is very similar to {@link p()}
90 * @param string $var the string potentially containing HTML characters
91 * @return string
93 function s($var) {
95 if ($var === false) {
96 return '0';
99 // When we move to PHP 5.4 as a minimum version, change ENT_QUOTES on the
100 // next line to ENT_QUOTES | ENT_HTML5 | ENT_SUBSTITUTE, and remove the
101 // 'UTF-8' argument. Both bring a speed-increase.
102 return preg_replace('/&amp;#(\d+|x[0-9a-f]+);/i', '&#$1;', htmlspecialchars($var, ENT_QUOTES, 'UTF-8'));
106 * Add quotes to HTML characters.
108 * Prints $var with HTML characters (like "<", ">", etc.) properly quoted.
109 * This function simply calls {@link s()}
110 * @see s()
112 * @todo Remove obsolete param $obsolete if not used anywhere
114 * @param string $var the string potentially containing HTML characters
115 * @param boolean $obsolete no longer used.
116 * @return string
118 function p($var, $obsolete = false) {
119 echo s($var, $obsolete);
123 * Does proper javascript quoting.
125 * Do not use addslashes anymore, because it does not work when magic_quotes_sybase is enabled.
127 * @param mixed $var String, Array, or Object to add slashes to
128 * @return mixed quoted result
130 function addslashes_js($var) {
131 if (is_string($var)) {
132 $var = str_replace('\\', '\\\\', $var);
133 $var = str_replace(array('\'', '"', "\n", "\r", "\0"), array('\\\'', '\\"', '\\n', '\\r', '\\0'), $var);
134 $var = str_replace('</', '<\/', $var); // XHTML compliance.
135 } else if (is_array($var)) {
136 $var = array_map('addslashes_js', $var);
137 } else if (is_object($var)) {
138 $a = get_object_vars($var);
139 foreach ($a as $key => $value) {
140 $a[$key] = addslashes_js($value);
142 $var = (object)$a;
144 return $var;
148 * Remove query string from url.
150 * Takes in a URL and returns it without the querystring portion.
152 * @param string $url the url which may have a query string attached.
153 * @return string The remaining URL.
155 function strip_querystring($url) {
157 if ($commapos = strpos($url, '?')) {
158 return substr($url, 0, $commapos);
159 } else {
160 return $url;
165 * Returns the URL of the HTTP_REFERER, less the querystring portion if required.
167 * @param boolean $stripquery if true, also removes the query part of the url.
168 * @return string The resulting referer or empty string.
170 function get_referer($stripquery=true) {
171 if (isset($_SERVER['HTTP_REFERER'])) {
172 if ($stripquery) {
173 return strip_querystring($_SERVER['HTTP_REFERER']);
174 } else {
175 return $_SERVER['HTTP_REFERER'];
177 } else {
178 return '';
183 * Returns the name of the current script, WITH the querystring portion.
185 * This function is necessary because PHP_SELF and REQUEST_URI and SCRIPT_NAME
186 * return different things depending on a lot of things like your OS, Web
187 * server, and the way PHP is compiled (ie. as a CGI, module, ISAPI, etc.)
188 * <b>NOTE:</b> This function returns false if the global variables needed are not set.
190 * @return mixed String or false if the global variables needed are not set.
192 function me() {
193 global $ME;
194 return $ME;
198 * Guesses the full URL of the current script.
200 * This function is using $PAGE->url, but may fall back to $FULLME which
201 * is constructed from PHP_SELF and REQUEST_URI or SCRIPT_NAME
203 * @return mixed full page URL string or false if unknown
205 function qualified_me() {
206 global $FULLME, $PAGE, $CFG;
208 if (isset($PAGE) and $PAGE->has_set_url()) {
209 // This is the only recommended way to find out current page.
210 return $PAGE->url->out(false);
212 } else {
213 if ($FULLME === null) {
214 // CLI script most probably.
215 return false;
217 if (!empty($CFG->sslproxy)) {
218 // Return only https links when using SSL proxy.
219 return preg_replace('/^http:/', 'https:', $FULLME, 1);
220 } else {
221 return $FULLME;
227 * Determines whether or not the Moodle site is being served over HTTPS.
229 * This is done simply by checking the value of $CFG->httpswwwroot, which seems
230 * to be the only reliable method.
232 * @return boolean True if site is served over HTTPS, false otherwise.
234 function is_https() {
235 global $CFG;
237 return (strpos($CFG->httpswwwroot, 'https://') === 0);
241 * Class for creating and manipulating urls.
243 * It can be used in moodle pages where config.php has been included without any further includes.
245 * It is useful for manipulating urls with long lists of params.
246 * One situation where it will be useful is a page which links to itself to perform various actions
247 * and / or to process form data. A moodle_url object :
248 * can be created for a page to refer to itself with all the proper get params being passed from page call to
249 * page call and methods can be used to output a url including all the params, optionally adding and overriding
250 * params and can also be used to
251 * - output the url without any get params
252 * - and output the params as hidden fields to be output within a form
254 * @copyright 2007 jamiesensei
255 * @link http://docs.moodle.org/dev/lib/weblib.php_moodle_url See short write up here
256 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
257 * @package core
259 class moodle_url {
262 * Scheme, ex.: http, https
263 * @var string
265 protected $scheme = '';
268 * Hostname.
269 * @var string
271 protected $host = '';
274 * Port number, empty means default 80 or 443 in case of http.
275 * @var int
277 protected $port = '';
280 * Username for http auth.
281 * @var string
283 protected $user = '';
286 * Password for http auth.
287 * @var string
289 protected $pass = '';
292 * Script path.
293 * @var string
295 protected $path = '';
298 * Optional slash argument value.
299 * @var string
301 protected $slashargument = '';
304 * Anchor, may be also empty, null means none.
305 * @var string
307 protected $anchor = null;
310 * Url parameters as associative array.
311 * @var array
313 protected $params = array();
316 * Create new instance of moodle_url.
318 * @param moodle_url|string $url - moodle_url means make a copy of another
319 * moodle_url and change parameters, string means full url or shortened
320 * form (ex.: '/course/view.php'). It is strongly encouraged to not include
321 * query string because it may result in double encoded values. Use the
322 * $params instead. For admin URLs, just use /admin/script.php, this
323 * class takes care of the $CFG->admin issue.
324 * @param array $params these params override current params or add new
325 * @param string $anchor The anchor to use as part of the URL if there is one.
326 * @throws moodle_exception
328 public function __construct($url, array $params = null, $anchor = null) {
329 global $CFG;
331 if ($url instanceof moodle_url) {
332 $this->scheme = $url->scheme;
333 $this->host = $url->host;
334 $this->port = $url->port;
335 $this->user = $url->user;
336 $this->pass = $url->pass;
337 $this->path = $url->path;
338 $this->slashargument = $url->slashargument;
339 $this->params = $url->params;
340 $this->anchor = $url->anchor;
342 } else {
343 // Detect if anchor used.
344 $apos = strpos($url, '#');
345 if ($apos !== false) {
346 $anchor = substr($url, $apos);
347 $anchor = ltrim($anchor, '#');
348 $this->set_anchor($anchor);
349 $url = substr($url, 0, $apos);
352 // Normalise shortened form of our url ex.: '/course/view.php'.
353 if (strpos($url, '/') === 0) {
354 // We must not use httpswwwroot here, because it might be url of other page,
355 // devs have to use httpswwwroot explicitly when creating new moodle_url.
356 $url = $CFG->wwwroot.$url;
359 // Now fix the admin links if needed, no need to mess with httpswwwroot.
360 if ($CFG->admin !== 'admin') {
361 if (strpos($url, "$CFG->wwwroot/admin/") === 0) {
362 $url = str_replace("$CFG->wwwroot/admin/", "$CFG->wwwroot/$CFG->admin/", $url);
366 // Parse the $url.
367 $parts = parse_url($url);
368 if ($parts === false) {
369 throw new moodle_exception('invalidurl');
371 if (isset($parts['query'])) {
372 // Note: the values may not be correctly decoded, url parameters should be always passed as array.
373 parse_str(str_replace('&amp;', '&', $parts['query']), $this->params);
375 unset($parts['query']);
376 foreach ($parts as $key => $value) {
377 $this->$key = $value;
380 // Detect slashargument value from path - we do not support directory names ending with .php.
381 $pos = strpos($this->path, '.php/');
382 if ($pos !== false) {
383 $this->slashargument = substr($this->path, $pos + 4);
384 $this->path = substr($this->path, 0, $pos + 4);
388 $this->params($params);
389 if ($anchor !== null) {
390 $this->anchor = (string)$anchor;
395 * Add an array of params to the params for this url.
397 * The added params override existing ones if they have the same name.
399 * @param array $params Defaults to null. If null then returns all params.
400 * @return array Array of Params for url.
401 * @throws coding_exception
403 public function params(array $params = null) {
404 $params = (array)$params;
406 foreach ($params as $key => $value) {
407 if (is_int($key)) {
408 throw new coding_exception('Url parameters can not have numeric keys!');
410 if (!is_string($value)) {
411 if (is_array($value)) {
412 throw new coding_exception('Url parameters values can not be arrays!');
414 if (is_object($value) and !method_exists($value, '__toString')) {
415 throw new coding_exception('Url parameters values can not be objects, unless __toString() is defined!');
418 $this->params[$key] = (string)$value;
420 return $this->params;
424 * Remove all params if no arguments passed.
425 * Remove selected params if arguments are passed.
427 * Can be called as either remove_params('param1', 'param2')
428 * or remove_params(array('param1', 'param2')).
430 * @param string[]|string $params,... either an array of param names, or 1..n string params to remove as args.
431 * @return array url parameters
433 public function remove_params($params = null) {
434 if (!is_array($params)) {
435 $params = func_get_args();
437 foreach ($params as $param) {
438 unset($this->params[$param]);
440 return $this->params;
444 * Remove all url parameters.
446 * @todo remove the unused param.
447 * @param array $params Unused param
448 * @return void
450 public function remove_all_params($params = null) {
451 $this->params = array();
452 $this->slashargument = '';
456 * Add a param to the params for this url.
458 * The added param overrides existing one if they have the same name.
460 * @param string $paramname name
461 * @param string $newvalue Param value. If new value specified current value is overriden or parameter is added
462 * @return mixed string parameter value, null if parameter does not exist
464 public function param($paramname, $newvalue = '') {
465 if (func_num_args() > 1) {
466 // Set new value.
467 $this->params(array($paramname => $newvalue));
469 if (isset($this->params[$paramname])) {
470 return $this->params[$paramname];
471 } else {
472 return null;
477 * Merges parameters and validates them
479 * @param array $overrideparams
480 * @return array merged parameters
481 * @throws coding_exception
483 protected function merge_overrideparams(array $overrideparams = null) {
484 $overrideparams = (array)$overrideparams;
485 $params = $this->params;
486 foreach ($overrideparams as $key => $value) {
487 if (is_int($key)) {
488 throw new coding_exception('Overridden parameters can not have numeric keys!');
490 if (is_array($value)) {
491 throw new coding_exception('Overridden parameters values can not be arrays!');
493 if (is_object($value) and !method_exists($value, '__toString')) {
494 throw new coding_exception('Overridden parameters values can not be objects, unless __toString() is defined!');
496 $params[$key] = (string)$value;
498 return $params;
502 * Get the params as as a query string.
504 * This method should not be used outside of this method.
506 * @param bool $escaped Use &amp; as params separator instead of plain &
507 * @param array $overrideparams params to add to the output params, these
508 * override existing ones with the same name.
509 * @return string query string that can be added to a url.
511 public function get_query_string($escaped = true, array $overrideparams = null) {
512 $arr = array();
513 if ($overrideparams !== null) {
514 $params = $this->merge_overrideparams($overrideparams);
515 } else {
516 $params = $this->params;
518 foreach ($params as $key => $val) {
519 if (is_array($val)) {
520 foreach ($val as $index => $value) {
521 $arr[] = rawurlencode($key.'['.$index.']')."=".rawurlencode($value);
523 } else {
524 if (isset($val) && $val !== '') {
525 $arr[] = rawurlencode($key)."=".rawurlencode($val);
526 } else {
527 $arr[] = rawurlencode($key);
531 if ($escaped) {
532 return implode('&amp;', $arr);
533 } else {
534 return implode('&', $arr);
539 * Shortcut for printing of encoded URL.
541 * @return string
543 public function __toString() {
544 return $this->out(true);
548 * Output url.
550 * If you use the returned URL in HTML code, you want the escaped ampersands. If you use
551 * the returned URL in HTTP headers, you want $escaped=false.
553 * @param bool $escaped Use &amp; as params separator instead of plain &
554 * @param array $overrideparams params to add to the output url, these override existing ones with the same name.
555 * @return string Resulting URL
557 public function out($escaped = true, array $overrideparams = null) {
558 if (!is_bool($escaped)) {
559 debugging('Escape parameter must be of type boolean, '.gettype($escaped).' given instead.');
562 $uri = $this->out_omit_querystring().$this->slashargument;
564 $querystring = $this->get_query_string($escaped, $overrideparams);
565 if ($querystring !== '') {
566 $uri .= '?' . $querystring;
568 if (!is_null($this->anchor)) {
569 $uri .= '#'.$this->anchor;
572 return $uri;
576 * Returns url without parameters, everything before '?'.
578 * @param bool $includeanchor if {@link self::anchor} is defined, should it be returned?
579 * @return string
581 public function out_omit_querystring($includeanchor = false) {
583 $uri = $this->scheme ? $this->scheme.':'.((strtolower($this->scheme) == 'mailto') ? '':'//'): '';
584 $uri .= $this->user ? $this->user.($this->pass? ':'.$this->pass:'').'@':'';
585 $uri .= $this->host ? $this->host : '';
586 $uri .= $this->port ? ':'.$this->port : '';
587 $uri .= $this->path ? $this->path : '';
588 if ($includeanchor and !is_null($this->anchor)) {
589 $uri .= '#' . $this->anchor;
592 return $uri;
596 * Compares this moodle_url with another.
598 * See documentation of constants for an explanation of the comparison flags.
600 * @param moodle_url $url The moodle_url object to compare
601 * @param int $matchtype The type of comparison (URL_MATCH_BASE, URL_MATCH_PARAMS, URL_MATCH_EXACT)
602 * @return bool
604 public function compare(moodle_url $url, $matchtype = URL_MATCH_EXACT) {
606 $baseself = $this->out_omit_querystring();
607 $baseother = $url->out_omit_querystring();
609 // Append index.php if there is no specific file.
610 if (substr($baseself, -1) == '/') {
611 $baseself .= 'index.php';
613 if (substr($baseother, -1) == '/') {
614 $baseother .= 'index.php';
617 // Compare the two base URLs.
618 if ($baseself != $baseother) {
619 return false;
622 if ($matchtype == URL_MATCH_BASE) {
623 return true;
626 $urlparams = $url->params();
627 foreach ($this->params() as $param => $value) {
628 if ($param == 'sesskey') {
629 continue;
631 if (!array_key_exists($param, $urlparams) || $urlparams[$param] != $value) {
632 return false;
636 if ($matchtype == URL_MATCH_PARAMS) {
637 return true;
640 foreach ($urlparams as $param => $value) {
641 if ($param == 'sesskey') {
642 continue;
644 if (!array_key_exists($param, $this->params()) || $this->param($param) != $value) {
645 return false;
649 if ($url->anchor !== $this->anchor) {
650 return false;
653 return true;
657 * Sets the anchor for the URI (the bit after the hash)
659 * @param string $anchor null means remove previous
661 public function set_anchor($anchor) {
662 if (is_null($anchor)) {
663 // Remove.
664 $this->anchor = null;
665 } else if ($anchor === '') {
666 // Special case, used as empty link.
667 $this->anchor = '';
668 } else if (preg_match('|[a-zA-Z\_\:][a-zA-Z0-9\_\-\.\:]*|', $anchor)) {
669 // Match the anchor against the NMTOKEN spec.
670 $this->anchor = $anchor;
671 } else {
672 // Bad luck, no valid anchor found.
673 $this->anchor = null;
678 * Sets the url slashargument value.
680 * @param string $path usually file path
681 * @param string $parameter name of page parameter if slasharguments not supported
682 * @param bool $supported usually null, then it depends on $CFG->slasharguments, use true or false for other servers
683 * @return void
685 public function set_slashargument($path, $parameter = 'file', $supported = null) {
686 global $CFG;
687 if (is_null($supported)) {
688 $supported = !empty($CFG->slasharguments);
691 if ($supported) {
692 $parts = explode('/', $path);
693 $parts = array_map('rawurlencode', $parts);
694 $path = implode('/', $parts);
695 $this->slashargument = $path;
696 unset($this->params[$parameter]);
698 } else {
699 $this->slashargument = '';
700 $this->params[$parameter] = $path;
704 // Static factory methods.
707 * General moodle file url.
709 * @param string $urlbase the script serving the file
710 * @param string $path
711 * @param bool $forcedownload
712 * @return moodle_url
714 public static function make_file_url($urlbase, $path, $forcedownload = false) {
715 $params = array();
716 if ($forcedownload) {
717 $params['forcedownload'] = 1;
720 $url = new moodle_url($urlbase, $params);
721 $url->set_slashargument($path);
722 return $url;
726 * Factory method for creation of url pointing to plugin file.
728 * Please note this method can be used only from the plugins to
729 * create urls of own files, it must not be used outside of plugins!
731 * @param int $contextid
732 * @param string $component
733 * @param string $area
734 * @param int $itemid
735 * @param string $pathname
736 * @param string $filename
737 * @param bool $forcedownload
738 * @return moodle_url
740 public static function make_pluginfile_url($contextid, $component, $area, $itemid, $pathname, $filename,
741 $forcedownload = false) {
742 global $CFG;
743 $urlbase = "$CFG->httpswwwroot/pluginfile.php";
744 if ($itemid === null) {
745 return self::make_file_url($urlbase, "/$contextid/$component/$area".$pathname.$filename, $forcedownload);
746 } else {
747 return self::make_file_url($urlbase, "/$contextid/$component/$area/$itemid".$pathname.$filename, $forcedownload);
752 * Factory method for creation of url pointing to plugin file.
753 * This method is the same that make_pluginfile_url but pointing to the webservice pluginfile.php script.
754 * It should be used only in external functions.
756 * @since 2.8
757 * @param int $contextid
758 * @param string $component
759 * @param string $area
760 * @param int $itemid
761 * @param string $pathname
762 * @param string $filename
763 * @param bool $forcedownload
764 * @return moodle_url
766 public static function make_webservice_pluginfile_url($contextid, $component, $area, $itemid, $pathname, $filename,
767 $forcedownload = false) {
768 global $CFG;
769 $urlbase = "$CFG->httpswwwroot/webservice/pluginfile.php";
770 if ($itemid === null) {
771 return self::make_file_url($urlbase, "/$contextid/$component/$area".$pathname.$filename, $forcedownload);
772 } else {
773 return self::make_file_url($urlbase, "/$contextid/$component/$area/$itemid".$pathname.$filename, $forcedownload);
778 * Factory method for creation of url pointing to draft file of current user.
780 * @param int $draftid draft item id
781 * @param string $pathname
782 * @param string $filename
783 * @param bool $forcedownload
784 * @return moodle_url
786 public static function make_draftfile_url($draftid, $pathname, $filename, $forcedownload = false) {
787 global $CFG, $USER;
788 $urlbase = "$CFG->httpswwwroot/draftfile.php";
789 $context = context_user::instance($USER->id);
791 return self::make_file_url($urlbase, "/$context->id/user/draft/$draftid".$pathname.$filename, $forcedownload);
795 * Factory method for creating of links to legacy course files.
797 * @param int $courseid
798 * @param string $filepath
799 * @param bool $forcedownload
800 * @return moodle_url
802 public static function make_legacyfile_url($courseid, $filepath, $forcedownload = false) {
803 global $CFG;
805 $urlbase = "$CFG->wwwroot/file.php";
806 return self::make_file_url($urlbase, '/'.$courseid.'/'.$filepath, $forcedownload);
810 * Returns URL a relative path from $CFG->wwwroot
812 * Can be used for passing around urls with the wwwroot stripped
814 * @param boolean $escaped Use &amp; as params separator instead of plain &
815 * @param array $overrideparams params to add to the output url, these override existing ones with the same name.
816 * @return string Resulting URL
817 * @throws coding_exception if called on a non-local url
819 public function out_as_local_url($escaped = true, array $overrideparams = null) {
820 global $CFG;
822 $url = $this->out($escaped, $overrideparams);
823 $httpswwwroot = str_replace("http://", "https://", $CFG->wwwroot);
825 // Url should be equal to wwwroot or httpswwwroot. If not then throw exception.
826 if (($url === $CFG->wwwroot) || (strpos($url, $CFG->wwwroot.'/') === 0)) {
827 $localurl = substr($url, strlen($CFG->wwwroot));
828 return !empty($localurl) ? $localurl : '';
829 } else if (($url === $httpswwwroot) || (strpos($url, $httpswwwroot.'/') === 0)) {
830 $localurl = substr($url, strlen($httpswwwroot));
831 return !empty($localurl) ? $localurl : '';
832 } else {
833 throw new coding_exception('out_as_local_url called on a non-local URL');
838 * Returns the 'path' portion of a URL. For example, if the URL is
839 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
840 * return '/my/file/is/here.txt'.
842 * By default the path includes slash-arguments (for example,
843 * '/myfile.php/extra/arguments') so it is what you would expect from a
844 * URL path. If you don't want this behaviour, you can opt to exclude the
845 * slash arguments. (Be careful: if the $CFG variable slasharguments is
846 * disabled, these URLs will have a different format and you may need to
847 * look at the 'file' parameter too.)
849 * @param bool $includeslashargument If true, includes slash arguments
850 * @return string Path of URL
852 public function get_path($includeslashargument = true) {
853 return $this->path . ($includeslashargument ? $this->slashargument : '');
857 * Returns a given parameter value from the URL.
859 * @param string $name Name of parameter
860 * @return string Value of parameter or null if not set
862 public function get_param($name) {
863 if (array_key_exists($name, $this->params)) {
864 return $this->params[$name];
865 } else {
866 return null;
871 * Returns the 'scheme' portion of a URL. For example, if the URL is
872 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
873 * return 'http' (without the colon).
875 * @return string Scheme of the URL.
877 public function get_scheme() {
878 return $this->scheme;
882 * Returns the 'host' portion of a URL. For example, if the URL is
883 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
884 * return 'www.example.org'.
886 * @return string Host of the URL.
888 public function get_host() {
889 return $this->host;
893 * Returns the 'port' portion of a URL. For example, if the URL is
894 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
895 * return '447'.
897 * @return string Port of the URL.
899 public function get_port() {
900 return $this->port;
905 * Determine if there is data waiting to be processed from a form
907 * Used on most forms in Moodle to check for data
908 * Returns the data as an object, if it's found.
909 * This object can be used in foreach loops without
910 * casting because it's cast to (array) automatically
912 * Checks that submitted POST data exists and returns it as object.
914 * @return mixed false or object
916 function data_submitted() {
918 if (empty($_POST)) {
919 return false;
920 } else {
921 return (object)fix_utf8($_POST);
926 * Given some normal text this function will break up any
927 * long words to a given size by inserting the given character
929 * It's multibyte savvy and doesn't change anything inside html tags.
931 * @param string $string the string to be modified
932 * @param int $maxsize maximum length of the string to be returned
933 * @param string $cutchar the string used to represent word breaks
934 * @return string
936 function break_up_long_words($string, $maxsize=20, $cutchar=' ') {
938 // First of all, save all the tags inside the text to skip them.
939 $tags = array();
940 filter_save_tags($string, $tags);
942 // Process the string adding the cut when necessary.
943 $output = '';
944 $length = core_text::strlen($string);
945 $wordlength = 0;
947 for ($i=0; $i<$length; $i++) {
948 $char = core_text::substr($string, $i, 1);
949 if ($char == ' ' or $char == "\t" or $char == "\n" or $char == "\r" or $char == "<" or $char == ">") {
950 $wordlength = 0;
951 } else {
952 $wordlength++;
953 if ($wordlength > $maxsize) {
954 $output .= $cutchar;
955 $wordlength = 0;
958 $output .= $char;
961 // Finally load the tags back again.
962 if (!empty($tags)) {
963 $output = str_replace(array_keys($tags), $tags, $output);
966 return $output;
970 * Try and close the current window using JavaScript, either immediately, or after a delay.
972 * Echo's out the resulting XHTML & javascript
974 * @param integer $delay a delay in seconds before closing the window. Default 0.
975 * @param boolean $reloadopener if true, we will see if this window was a pop-up, and try
976 * to reload the parent window before this one closes.
978 function close_window($delay = 0, $reloadopener = false) {
979 global $PAGE, $OUTPUT;
981 if (!$PAGE->headerprinted) {
982 $PAGE->set_title(get_string('closewindow'));
983 echo $OUTPUT->header();
984 } else {
985 $OUTPUT->container_end_all(false);
988 if ($reloadopener) {
989 // Trigger the reload immediately, even if the reload is after a delay.
990 $PAGE->requires->js_function_call('window.opener.location.reload', array(true));
992 $OUTPUT->notification(get_string('windowclosing'), 'notifysuccess');
994 $PAGE->requires->js_function_call('close_window', array(new stdClass()), false, $delay);
996 echo $OUTPUT->footer();
997 exit;
1001 * Returns a string containing a link to the user documentation for the current page.
1003 * Also contains an icon by default. Shown to teachers and admin only.
1005 * @param string $text The text to be displayed for the link
1006 * @return string The link to user documentation for this current page
1008 function page_doc_link($text='') {
1009 global $OUTPUT, $PAGE;
1010 $path = page_get_doc_link_path($PAGE);
1011 if (!$path) {
1012 return '';
1014 return $OUTPUT->doc_link($path, $text);
1018 * Returns the path to use when constructing a link to the docs.
1020 * @since Moodle 2.5.1 2.6
1021 * @param moodle_page $page
1022 * @return string
1024 function page_get_doc_link_path(moodle_page $page) {
1025 global $CFG;
1027 if (empty($CFG->docroot) || during_initial_install()) {
1028 return '';
1030 if (!has_capability('moodle/site:doclinks', $page->context)) {
1031 return '';
1034 $path = $page->docspath;
1035 if (!$path) {
1036 return '';
1038 return $path;
1043 * Validates an email to make sure it makes sense.
1045 * @param string $address The email address to validate.
1046 * @return boolean
1048 function validate_email($address) {
1050 return (preg_match('#^[-!\#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+'.
1051 '(\.[-!\#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+)*'.
1052 '@'.
1053 '[-!\#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'.
1054 '[-!\#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$#',
1055 $address));
1059 * Extracts file argument either from file parameter or PATH_INFO
1061 * Note: $scriptname parameter is not needed anymore
1063 * @return string file path (only safe characters)
1065 function get_file_argument() {
1066 global $SCRIPT;
1068 $relativepath = optional_param('file', false, PARAM_PATH);
1070 if ($relativepath !== false and $relativepath !== '') {
1071 return $relativepath;
1073 $relativepath = false;
1075 // Then try extract file from the slasharguments.
1076 if (stripos($_SERVER['SERVER_SOFTWARE'], 'iis') !== false) {
1077 // NOTE: IIS tends to convert all file paths to single byte DOS encoding,
1078 // we can not use other methods because they break unicode chars,
1079 // the only ways are to use URL rewriting
1080 // OR
1081 // to properly set the 'FastCGIUtf8ServerVariables' registry key.
1082 if (isset($_SERVER['PATH_INFO']) and $_SERVER['PATH_INFO'] !== '') {
1083 // Check that PATH_INFO works == must not contain the script name.
1084 if (strpos($_SERVER['PATH_INFO'], $SCRIPT) === false) {
1085 $relativepath = clean_param(urldecode($_SERVER['PATH_INFO']), PARAM_PATH);
1088 } else {
1089 // All other apache-like servers depend on PATH_INFO.
1090 if (isset($_SERVER['PATH_INFO'])) {
1091 if (isset($_SERVER['SCRIPT_NAME']) and strpos($_SERVER['PATH_INFO'], $_SERVER['SCRIPT_NAME']) === 0) {
1092 $relativepath = substr($_SERVER['PATH_INFO'], strlen($_SERVER['SCRIPT_NAME']));
1093 } else {
1094 $relativepath = $_SERVER['PATH_INFO'];
1096 $relativepath = clean_param($relativepath, PARAM_PATH);
1100 return $relativepath;
1104 * Just returns an array of text formats suitable for a popup menu
1106 * @return array
1108 function format_text_menu() {
1109 return array (FORMAT_MOODLE => get_string('formattext'),
1110 FORMAT_HTML => get_string('formathtml'),
1111 FORMAT_PLAIN => get_string('formatplain'),
1112 FORMAT_MARKDOWN => get_string('formatmarkdown'));
1116 * Given text in a variety of format codings, this function returns the text as safe HTML.
1118 * This function should mainly be used for long strings like posts,
1119 * answers, glossary items etc. For short strings {@link format_string()}.
1121 * <pre>
1122 * Options:
1123 * trusted : If true the string won't be cleaned. Default false required noclean=true.
1124 * noclean : If true the string won't be cleaned. Default false required trusted=true.
1125 * nocache : If true the strign will not be cached and will be formatted every call. Default false.
1126 * filter : If true the string will be run through applicable filters as well. Default true.
1127 * para : If true then the returned string will be wrapped in div tags. Default true.
1128 * newlines : If true then lines newline breaks will be converted to HTML newline breaks. Default true.
1129 * context : The context that will be used for filtering.
1130 * overflowdiv : If set to true the formatted text will be encased in a div
1131 * with the class no-overflow before being returned. Default false.
1132 * allowid : If true then id attributes will not be removed, even when
1133 * using htmlpurifier. Default false.
1134 * </pre>
1136 * @staticvar array $croncache
1137 * @param string $text The text to be formatted. This is raw text originally from user input.
1138 * @param int $format Identifier of the text format to be used
1139 * [FORMAT_MOODLE, FORMAT_HTML, FORMAT_PLAIN, FORMAT_MARKDOWN]
1140 * @param object/array $options text formatting options
1141 * @param int $courseiddonotuse deprecated course id, use context option instead
1142 * @return string
1144 function format_text($text, $format = FORMAT_MOODLE, $options = null, $courseiddonotuse = null) {
1145 global $CFG, $DB, $PAGE;
1147 if ($text === '' || is_null($text)) {
1148 // No need to do any filters and cleaning.
1149 return '';
1152 // Detach object, we can not modify it.
1153 $options = (array)$options;
1155 if (!isset($options['trusted'])) {
1156 $options['trusted'] = false;
1158 if (!isset($options['noclean'])) {
1159 if ($options['trusted'] and trusttext_active()) {
1160 // No cleaning if text trusted and noclean not specified.
1161 $options['noclean'] = true;
1162 } else {
1163 $options['noclean'] = false;
1166 if (!isset($options['nocache'])) {
1167 $options['nocache'] = false;
1169 if (!isset($options['filter'])) {
1170 $options['filter'] = true;
1172 if (!isset($options['para'])) {
1173 $options['para'] = true;
1175 if (!isset($options['newlines'])) {
1176 $options['newlines'] = true;
1178 if (!isset($options['overflowdiv'])) {
1179 $options['overflowdiv'] = false;
1182 // Calculate best context.
1183 if (empty($CFG->version) or $CFG->version < 2013051400 or during_initial_install()) {
1184 // Do not filter anything during installation or before upgrade completes.
1185 $context = null;
1187 } else if (isset($options['context'])) { // First by explicit passed context option.
1188 if (is_object($options['context'])) {
1189 $context = $options['context'];
1190 } else {
1191 $context = context::instance_by_id($options['context']);
1193 } else if ($courseiddonotuse) {
1194 // Legacy courseid.
1195 $context = context_course::instance($courseiddonotuse);
1196 } else {
1197 // Fallback to $PAGE->context this may be problematic in CLI and other non-standard pages :-(.
1198 $context = $PAGE->context;
1201 if (!$context) {
1202 // Either install/upgrade or something has gone really wrong because context does not exist (yet?).
1203 $options['nocache'] = true;
1204 $options['filter'] = false;
1207 if ($options['filter']) {
1208 $filtermanager = filter_manager::instance();
1209 $filtermanager->setup_page_for_filters($PAGE, $context); // Setup global stuff filters may have.
1210 } else {
1211 $filtermanager = new null_filter_manager();
1214 switch ($format) {
1215 case FORMAT_HTML:
1216 if (!$options['noclean']) {
1217 $text = clean_text($text, FORMAT_HTML, $options);
1219 $text = $filtermanager->filter_text($text, $context, array(
1220 'originalformat' => FORMAT_HTML,
1221 'noclean' => $options['noclean']
1223 break;
1225 case FORMAT_PLAIN:
1226 $text = s($text); // Cleans dangerous JS.
1227 $text = rebuildnolinktag($text);
1228 $text = str_replace(' ', '&nbsp; ', $text);
1229 $text = nl2br($text);
1230 break;
1232 case FORMAT_WIKI:
1233 // This format is deprecated.
1234 $text = '<p>NOTICE: Wiki-like formatting has been removed from Moodle. You should not be seeing
1235 this message as all texts should have been converted to Markdown format instead.
1236 Please post a bug report to http://moodle.org/bugs with information about where you
1237 saw this message.</p>'.s($text);
1238 break;
1240 case FORMAT_MARKDOWN:
1241 $text = markdown_to_html($text);
1242 if (!$options['noclean']) {
1243 $text = clean_text($text, FORMAT_HTML, $options);
1245 $text = $filtermanager->filter_text($text, $context, array(
1246 'originalformat' => FORMAT_MARKDOWN,
1247 'noclean' => $options['noclean']
1249 break;
1251 default: // FORMAT_MOODLE or anything else.
1252 $text = text_to_html($text, null, $options['para'], $options['newlines']);
1253 if (!$options['noclean']) {
1254 $text = clean_text($text, FORMAT_HTML, $options);
1256 $text = $filtermanager->filter_text($text, $context, array(
1257 'originalformat' => $format,
1258 'noclean' => $options['noclean']
1260 break;
1262 if ($options['filter']) {
1263 // At this point there should not be any draftfile links any more,
1264 // this happens when developers forget to post process the text.
1265 // The only potential problem is that somebody might try to format
1266 // the text before storing into database which would be itself big bug..
1267 $text = str_replace("\"$CFG->httpswwwroot/draftfile.php", "\"$CFG->httpswwwroot/brokenfile.php#", $text);
1269 if ($CFG->debugdeveloper) {
1270 if (strpos($text, '@@PLUGINFILE@@/') !== false) {
1271 debugging('Before calling format_text(), the content must be processed with file_rewrite_pluginfile_urls()',
1272 DEBUG_DEVELOPER);
1277 if (!empty($options['overflowdiv'])) {
1278 $text = html_writer::tag('div', $text, array('class' => 'no-overflow'));
1281 return $text;
1285 * Resets some data related to filters, called during upgrade or when general filter settings change.
1287 * @param bool $phpunitreset true means called from our PHPUnit integration test reset
1288 * @return void
1290 function reset_text_filters_cache($phpunitreset = false) {
1291 global $CFG, $DB;
1293 if ($phpunitreset) {
1294 // HTMLPurifier does not change, DB is already reset to defaults,
1295 // nothing to do here, the dataroot was cleared too.
1296 return;
1299 // The purge_all_caches() deals with cachedir and localcachedir purging,
1300 // the individual filter caches are invalidated as necessary elsewhere.
1302 // Update $CFG->filterall cache flag.
1303 if (empty($CFG->stringfilters)) {
1304 set_config('filterall', 0);
1305 return;
1307 $installedfilters = core_component::get_plugin_list('filter');
1308 $filters = explode(',', $CFG->stringfilters);
1309 foreach ($filters as $filter) {
1310 if (isset($installedfilters[$filter])) {
1311 set_config('filterall', 1);
1312 return;
1315 set_config('filterall', 0);
1319 * Given a simple string, this function returns the string
1320 * processed by enabled string filters if $CFG->filterall is enabled
1322 * This function should be used to print short strings (non html) that
1323 * need filter processing e.g. activity titles, post subjects,
1324 * glossary concepts.
1326 * @staticvar bool $strcache
1327 * @param string $string The string to be filtered. Should be plain text, expect
1328 * possibly for multilang tags.
1329 * @param boolean $striplinks To strip any link in the result text. Moodle 1.8 default changed from false to true! MDL-8713
1330 * @param array $options options array/object or courseid
1331 * @return string
1333 function format_string($string, $striplinks = true, $options = null) {
1334 global $CFG, $PAGE;
1336 // We'll use a in-memory cache here to speed up repeated strings.
1337 static $strcache = false;
1339 if (empty($CFG->version) or $CFG->version < 2013051400 or during_initial_install()) {
1340 // Do not filter anything during installation or before upgrade completes.
1341 return $string = strip_tags($string);
1344 if ($strcache === false or count($strcache) > 2000) {
1345 // This number might need some tuning to limit memory usage in cron.
1346 $strcache = array();
1349 if (is_numeric($options)) {
1350 // Legacy courseid usage.
1351 $options = array('context' => context_course::instance($options));
1352 } else {
1353 // Detach object, we can not modify it.
1354 $options = (array)$options;
1357 if (empty($options['context'])) {
1358 // Fallback to $PAGE->context this may be problematic in CLI and other non-standard pages :-(.
1359 $options['context'] = $PAGE->context;
1360 } else if (is_numeric($options['context'])) {
1361 $options['context'] = context::instance_by_id($options['context']);
1364 if (!$options['context']) {
1365 // We did not find any context? weird.
1366 return $string = strip_tags($string);
1369 // Calculate md5.
1370 $md5 = md5($string.'<+>'.$striplinks.'<+>'.$options['context']->id.'<+>'.current_language());
1372 // Fetch from cache if possible.
1373 if (isset($strcache[$md5])) {
1374 return $strcache[$md5];
1377 // First replace all ampersands not followed by html entity code
1378 // Regular expression moved to its own method for easier unit testing.
1379 $string = replace_ampersands_not_followed_by_entity($string);
1381 if (!empty($CFG->filterall)) {
1382 $filtermanager = filter_manager::instance();
1383 $filtermanager->setup_page_for_filters($PAGE, $options['context']); // Setup global stuff filters may have.
1384 $string = $filtermanager->filter_string($string, $options['context']);
1387 // If the site requires it, strip ALL tags from this string.
1388 if (!empty($CFG->formatstringstriptags)) {
1389 $string = str_replace(array('<', '>'), array('&lt;', '&gt;'), strip_tags($string));
1391 } else {
1392 // Otherwise strip just links if that is required (default).
1393 if ($striplinks) {
1394 // Strip links in string.
1395 $string = strip_links($string);
1397 $string = clean_text($string);
1400 // Store to cache.
1401 $strcache[$md5] = $string;
1403 return $string;
1407 * Given a string, performs a negative lookahead looking for any ampersand character
1408 * that is not followed by a proper HTML entity. If any is found, it is replaced
1409 * by &amp;. The string is then returned.
1411 * @param string $string
1412 * @return string
1414 function replace_ampersands_not_followed_by_entity($string) {
1415 return preg_replace("/\&(?![a-zA-Z0-9#]{1,8};)/", "&amp;", $string);
1419 * Given a string, replaces all <a>.*</a> by .* and returns the string.
1421 * @param string $string
1422 * @return string
1424 function strip_links($string) {
1425 return preg_replace('/(<a\s[^>]+?>)(.+?)(<\/a>)/is', '$2', $string);
1429 * This expression turns links into something nice in a text format. (Russell Jungwirth)
1431 * @param string $string
1432 * @return string
1434 function wikify_links($string) {
1435 return preg_replace('~(<a [^<]*href=["|\']?([^ "\']*)["|\']?[^>]*>([^<]*)</a>)~i', '$3 [ $2 ]', $string);
1439 * Given text in a variety of format codings, this function returns the text as plain text suitable for plain email.
1441 * @param string $text The text to be formatted. This is raw text originally from user input.
1442 * @param int $format Identifier of the text format to be used
1443 * [FORMAT_MOODLE, FORMAT_HTML, FORMAT_PLAIN, FORMAT_WIKI, FORMAT_MARKDOWN]
1444 * @return string
1446 function format_text_email($text, $format) {
1448 switch ($format) {
1450 case FORMAT_PLAIN:
1451 return $text;
1452 break;
1454 case FORMAT_WIKI:
1455 // There should not be any of these any more!
1456 $text = wikify_links($text);
1457 return core_text::entities_to_utf8(strip_tags($text), true);
1458 break;
1460 case FORMAT_HTML:
1461 return html_to_text($text);
1462 break;
1464 case FORMAT_MOODLE:
1465 case FORMAT_MARKDOWN:
1466 default:
1467 $text = wikify_links($text);
1468 return core_text::entities_to_utf8(strip_tags($text), true);
1469 break;
1474 * Formats activity intro text
1476 * @param string $module name of module
1477 * @param object $activity instance of activity
1478 * @param int $cmid course module id
1479 * @param bool $filter filter resulting html text
1480 * @return string
1482 function format_module_intro($module, $activity, $cmid, $filter=true) {
1483 global $CFG;
1484 require_once("$CFG->libdir/filelib.php");
1485 $context = context_module::instance($cmid);
1486 $options = array('noclean' => true, 'para' => false, 'filter' => $filter, 'context' => $context, 'overflowdiv' => true);
1487 $intro = file_rewrite_pluginfile_urls($activity->intro, 'pluginfile.php', $context->id, 'mod_'.$module, 'intro', null);
1488 return trim(format_text($intro, $activity->introformat, $options, null));
1492 * Removes the usage of Moodle files from a text.
1494 * In some rare cases we need to re-use a text that already has embedded links
1495 * to some files hosted within Moodle. But the new area in which we will push
1496 * this content does not support files... therefore we need to remove those files.
1498 * @param string $source The text
1499 * @return string The stripped text
1501 function strip_pluginfile_content($source) {
1502 $baseurl = '@@PLUGINFILE@@';
1503 // Looking for something like < .* "@@pluginfile@@.*" .* >
1504 $pattern = '$<[^<>]+["\']' . $baseurl . '[^"\']*["\'][^<>]*>$';
1505 $stripped = preg_replace($pattern, '', $source);
1506 // Use purify html to rebalence potentially mismatched tags and generally cleanup.
1507 return purify_html($stripped);
1511 * Legacy function, used for cleaning of old forum and glossary text only.
1513 * @param string $text text that may contain legacy TRUSTTEXT marker
1514 * @return string text without legacy TRUSTTEXT marker
1516 function trusttext_strip($text) {
1517 while (true) { // Removing nested TRUSTTEXT.
1518 $orig = $text;
1519 $text = str_replace('#####TRUSTTEXT#####', '', $text);
1520 if (strcmp($orig, $text) === 0) {
1521 return $text;
1527 * Must be called before editing of all texts with trust flag. Removes all XSS nasties from texts stored in database if needed.
1529 * @param stdClass $object data object with xxx, xxxformat and xxxtrust fields
1530 * @param string $field name of text field
1531 * @param context $context active context
1532 * @return stdClass updated $object
1534 function trusttext_pre_edit($object, $field, $context) {
1535 $trustfield = $field.'trust';
1536 $formatfield = $field.'format';
1538 if (!$object->$trustfield or !trusttext_trusted($context)) {
1539 $object->$field = clean_text($object->$field, $object->$formatfield);
1542 return $object;
1546 * Is current user trusted to enter no dangerous XSS in this context?
1548 * Please note the user must be in fact trusted everywhere on this server!!
1550 * @param context $context
1551 * @return bool true if user trusted
1553 function trusttext_trusted($context) {
1554 return (trusttext_active() and has_capability('moodle/site:trustcontent', $context));
1558 * Is trusttext feature active?
1560 * @return bool
1562 function trusttext_active() {
1563 global $CFG;
1565 return !empty($CFG->enabletrusttext);
1569 * Cleans raw text removing nasties.
1571 * Given raw text (eg typed in by a user) this function cleans it up and removes any nasty tags that could mess up
1572 * Moodle pages through XSS attacks.
1574 * The result must be used as a HTML text fragment, this function can not cleanup random
1575 * parts of html tags such as url or src attributes.
1577 * NOTE: the format parameter was deprecated because we can safely clean only HTML.
1579 * @param string $text The text to be cleaned
1580 * @param int|string $format deprecated parameter, should always contain FORMAT_HTML or FORMAT_MOODLE
1581 * @param array $options Array of options; currently only option supported is 'allowid' (if true,
1582 * does not remove id attributes when cleaning)
1583 * @return string The cleaned up text
1585 function clean_text($text, $format = FORMAT_HTML, $options = array()) {
1586 $text = (string)$text;
1588 if ($format != FORMAT_HTML and $format != FORMAT_HTML) {
1589 // TODO: we need to standardise cleanup of text when loading it into editor first.
1590 // debugging('clean_text() is designed to work only with html');.
1593 if ($format == FORMAT_PLAIN) {
1594 return $text;
1597 if (is_purify_html_necessary($text)) {
1598 $text = purify_html($text, $options);
1601 // Originally we tried to neutralise some script events here, it was a wrong approach because
1602 // it was trivial to work around that (for example using style based XSS exploits).
1603 // We must not give false sense of security here - all developers MUST understand how to use
1604 // rawurlencode(), htmlentities(), htmlspecialchars(), p(), s(), moodle_url, html_writer and friends!!!
1606 return $text;
1610 * Is it necessary to use HTMLPurifier?
1612 * @private
1613 * @param string $text
1614 * @return bool false means html is safe and valid, true means use HTMLPurifier
1616 function is_purify_html_necessary($text) {
1617 if ($text === '') {
1618 return false;
1621 if ($text === (string)((int)$text)) {
1622 return false;
1625 if (strpos($text, '&') !== false or preg_match('|<[^pesb/]|', $text)) {
1626 // We need to normalise entities or other tags except p, em, strong and br present.
1627 return true;
1630 $altered = htmlspecialchars($text, ENT_NOQUOTES, 'UTF-8', true);
1631 if ($altered === $text) {
1632 // No < > or other special chars means this must be safe.
1633 return false;
1636 // Let's try to convert back some safe html tags.
1637 $altered = preg_replace('|&lt;p&gt;(.*?)&lt;/p&gt;|m', '<p>$1</p>', $altered);
1638 if ($altered === $text) {
1639 return false;
1641 $altered = preg_replace('|&lt;em&gt;([^<>]+?)&lt;/em&gt;|m', '<em>$1</em>', $altered);
1642 if ($altered === $text) {
1643 return false;
1645 $altered = preg_replace('|&lt;strong&gt;([^<>]+?)&lt;/strong&gt;|m', '<strong>$1</strong>', $altered);
1646 if ($altered === $text) {
1647 return false;
1649 $altered = str_replace('&lt;br /&gt;', '<br />', $altered);
1650 if ($altered === $text) {
1651 return false;
1654 return true;
1658 * KSES replacement cleaning function - uses HTML Purifier.
1660 * @param string $text The (X)HTML string to purify
1661 * @param array $options Array of options; currently only option supported is 'allowid' (if set,
1662 * does not remove id attributes when cleaning)
1663 * @return string
1665 function purify_html($text, $options = array()) {
1666 global $CFG;
1668 $text = (string)$text;
1670 static $purifiers = array();
1671 static $caches = array();
1673 // Purifier code can change only during major version upgrade.
1674 $version = empty($CFG->version) ? 0 : $CFG->version;
1675 $cachedir = "$CFG->localcachedir/htmlpurifier/$version";
1676 if (!file_exists($cachedir)) {
1677 // Purging of caches may remove the cache dir at any time,
1678 // luckily file_exists() results should be cached for all existing directories.
1679 $purifiers = array();
1680 $caches = array();
1681 gc_collect_cycles();
1683 make_localcache_directory('htmlpurifier', false);
1684 check_dir_exists($cachedir);
1687 $allowid = empty($options['allowid']) ? 0 : 1;
1688 $allowobjectembed = empty($CFG->allowobjectembed) ? 0 : 1;
1690 $type = 'type_'.$allowid.'_'.$allowobjectembed;
1692 if (!array_key_exists($type, $caches)) {
1693 $caches[$type] = cache::make('core', 'htmlpurifier', array('type' => $type));
1695 $cache = $caches[$type];
1697 // Add revision number and all options to the text key so that it is compatible with local cluster node caches.
1698 $key = "|$version|$allowobjectembed|$allowid|$text";
1699 $filteredtext = $cache->get($key);
1701 if ($filteredtext === true) {
1702 // The filtering did not change the text last time, no need to filter anything again.
1703 return $text;
1704 } else if ($filteredtext !== false) {
1705 return $filteredtext;
1708 if (empty($purifiers[$type])) {
1709 require_once $CFG->libdir.'/htmlpurifier/HTMLPurifier.safe-includes.php';
1710 require_once $CFG->libdir.'/htmlpurifier/locallib.php';
1711 $config = HTMLPurifier_Config::createDefault();
1713 $config->set('HTML.DefinitionID', 'moodlehtml');
1714 $config->set('HTML.DefinitionRev', 2);
1715 $config->set('Cache.SerializerPath', $cachedir);
1716 $config->set('Cache.SerializerPermissions', $CFG->directorypermissions);
1717 $config->set('Core.NormalizeNewlines', false);
1718 $config->set('Core.ConvertDocumentToFragment', true);
1719 $config->set('Core.Encoding', 'UTF-8');
1720 $config->set('HTML.Doctype', 'XHTML 1.0 Transitional');
1721 $config->set('URI.AllowedSchemes', array(
1722 'http' => true,
1723 'https' => true,
1724 'ftp' => true,
1725 'irc' => true,
1726 'nntp' => true,
1727 'news' => true,
1728 'rtsp' => true,
1729 'rtmp' => true,
1730 'teamspeak' => true,
1731 'gopher' => true,
1732 'mms' => true,
1733 'mailto' => true
1735 $config->set('Attr.AllowedFrameTargets', array('_blank'));
1737 if ($allowobjectembed) {
1738 $config->set('HTML.SafeObject', true);
1739 $config->set('Output.FlashCompat', true);
1740 $config->set('HTML.SafeEmbed', true);
1743 if ($allowid) {
1744 $config->set('Attr.EnableID', true);
1747 if ($def = $config->maybeGetRawHTMLDefinition()) {
1748 $def->addElement('nolink', 'Block', 'Flow', array()); // Skip our filters inside.
1749 $def->addElement('tex', 'Inline', 'Inline', array()); // Tex syntax, equivalent to $$xx$$.
1750 $def->addElement('algebra', 'Inline', 'Inline', array()); // Algebra syntax, equivalent to @@xx@@.
1751 $def->addElement('lang', 'Block', 'Flow', array(), array('lang'=>'CDATA')); // Original multilang style - only our hacked lang attribute.
1752 $def->addAttribute('span', 'xxxlang', 'CDATA'); // Current very problematic multilang.
1755 $purifier = new HTMLPurifier($config);
1756 $purifiers[$type] = $purifier;
1757 } else {
1758 $purifier = $purifiers[$type];
1761 $multilang = (strpos($text, 'class="multilang"') !== false);
1763 $filteredtext = $text;
1764 if ($multilang) {
1765 $filteredtextregex = '/<span(\s+lang="([a-zA-Z0-9_-]+)"|\s+class="multilang"){2}\s*>/';
1766 $filteredtext = preg_replace($filteredtextregex, '<span xxxlang="${2}">', $filteredtext);
1768 $filteredtext = (string)$purifier->purify($filteredtext);
1769 if ($multilang) {
1770 $filteredtext = preg_replace('/<span xxxlang="([a-zA-Z0-9_-]+)">/', '<span lang="${1}" class="multilang">', $filteredtext);
1773 if ($text === $filteredtext) {
1774 // No need to store the filtered text, next time we will just return unfiltered text
1775 // because it was not changed by purifying.
1776 $cache->set($key, true);
1777 } else {
1778 $cache->set($key, $filteredtext);
1781 return $filteredtext;
1785 * Given plain text, makes it into HTML as nicely as possible.
1787 * May contain HTML tags already.
1789 * Do not abuse this function. It is intended as lower level formatting feature used
1790 * by {@link format_text()} to convert FORMAT_MOODLE to HTML. You are supposed
1791 * to call format_text() in most of cases.
1793 * @param string $text The string to convert.
1794 * @param boolean $smileyignored Was used to determine if smiley characters should convert to smiley images, ignored now
1795 * @param boolean $para If true then the returned string will be wrapped in div tags
1796 * @param boolean $newlines If true then lines newline breaks will be converted to HTML newline breaks.
1797 * @return string
1799 function text_to_html($text, $smileyignored = null, $para = true, $newlines = true) {
1800 // Remove any whitespace that may be between HTML tags.
1801 $text = preg_replace("~>([[:space:]]+)<~i", "><", $text);
1803 // Remove any returns that precede or follow HTML tags.
1804 $text = preg_replace("~([\n\r])<~i", " <", $text);
1805 $text = preg_replace("~>([\n\r])~i", "> ", $text);
1807 // Make returns into HTML newlines.
1808 if ($newlines) {
1809 $text = nl2br($text);
1812 // Wrap the whole thing in a div if required.
1813 if ($para) {
1814 // In 1.9 this was changed from a p => div.
1815 return '<div class="text_to_html">'.$text.'</div>';
1816 } else {
1817 return $text;
1822 * Given Markdown formatted text, make it into XHTML using external function
1824 * @param string $text The markdown formatted text to be converted.
1825 * @return string Converted text
1827 function markdown_to_html($text) {
1828 global $CFG;
1830 if ($text === '' or $text === null) {
1831 return $text;
1834 require_once($CFG->libdir .'/markdown/MarkdownInterface.php');
1835 require_once($CFG->libdir .'/markdown/Markdown.php');
1836 require_once($CFG->libdir .'/markdown/MarkdownExtra.php');
1838 return \Michelf\MarkdownExtra::defaultTransform($text);
1842 * Given HTML text, make it into plain text using external function
1844 * @param string $html The text to be converted.
1845 * @param integer $width Width to wrap the text at. (optional, default 75 which
1846 * is a good value for email. 0 means do not limit line length.)
1847 * @param boolean $dolinks By default, any links in the HTML are collected, and
1848 * printed as a list at the end of the HTML. If you don't want that, set this
1849 * argument to false.
1850 * @return string plain text equivalent of the HTML.
1852 function html_to_text($html, $width = 75, $dolinks = true) {
1854 global $CFG;
1856 require_once($CFG->libdir .'/html2text.php');
1858 $h2t = new html2text($html, false, $dolinks, $width);
1859 $result = $h2t->get_text();
1861 return $result;
1865 * This function will highlight search words in a given string
1867 * It cares about HTML and will not ruin links. It's best to use
1868 * this function after performing any conversions to HTML.
1870 * @param string $needle The search string. Syntax like "word1 +word2 -word3" is dealt with correctly.
1871 * @param string $haystack The string (HTML) within which to highlight the search terms.
1872 * @param boolean $matchcase whether to do case-sensitive. Default case-insensitive.
1873 * @param string $prefix the string to put before each search term found.
1874 * @param string $suffix the string to put after each search term found.
1875 * @return string The highlighted HTML.
1877 function highlight($needle, $haystack, $matchcase = false,
1878 $prefix = '<span class="highlight">', $suffix = '</span>') {
1880 // Quick bail-out in trivial cases.
1881 if (empty($needle) or empty($haystack)) {
1882 return $haystack;
1885 // Break up the search term into words, discard any -words and build a regexp.
1886 $words = preg_split('/ +/', trim($needle));
1887 foreach ($words as $index => $word) {
1888 if (strpos($word, '-') === 0) {
1889 unset($words[$index]);
1890 } else if (strpos($word, '+') === 0) {
1891 $words[$index] = '\b' . preg_quote(ltrim($word, '+'), '/') . '\b'; // Match only as a complete word.
1892 } else {
1893 $words[$index] = preg_quote($word, '/');
1896 $regexp = '/(' . implode('|', $words) . ')/u'; // Char u is to do UTF-8 matching.
1897 if (!$matchcase) {
1898 $regexp .= 'i';
1901 // Another chance to bail-out if $search was only -words.
1902 if (empty($words)) {
1903 return $haystack;
1906 // Split the string into HTML tags and real content.
1907 $chunks = preg_split('/((?:<[^>]*>)+)/', $haystack, -1, PREG_SPLIT_DELIM_CAPTURE);
1909 // We have an array of alternating blocks of text, then HTML tags, then text, ...
1910 // Loop through replacing search terms in the text, and leaving the HTML unchanged.
1911 $ishtmlchunk = false;
1912 $result = '';
1913 foreach ($chunks as $chunk) {
1914 if ($ishtmlchunk) {
1915 $result .= $chunk;
1916 } else {
1917 $result .= preg_replace($regexp, $prefix . '$1' . $suffix, $chunk);
1919 $ishtmlchunk = !$ishtmlchunk;
1922 return $result;
1926 * This function will highlight instances of $needle in $haystack
1928 * It's faster that the above function {@link highlight()} and doesn't care about
1929 * HTML or anything.
1931 * @param string $needle The string to search for
1932 * @param string $haystack The string to search for $needle in
1933 * @return string The highlighted HTML
1935 function highlightfast($needle, $haystack) {
1937 if (empty($needle) or empty($haystack)) {
1938 return $haystack;
1941 $parts = explode(core_text::strtolower($needle), core_text::strtolower($haystack));
1943 if (count($parts) === 1) {
1944 return $haystack;
1947 $pos = 0;
1949 foreach ($parts as $key => $part) {
1950 $parts[$key] = substr($haystack, $pos, strlen($part));
1951 $pos += strlen($part);
1953 $parts[$key] .= '<span class="highlight">'.substr($haystack, $pos, strlen($needle)).'</span>';
1954 $pos += strlen($needle);
1957 return str_replace('<span class="highlight"></span>', '', join('', $parts));
1961 * Return a string containing 'lang', xml:lang and optionally 'dir' HTML attributes.
1963 * Internationalisation, for print_header and backup/restorelib.
1965 * @param bool $dir Default false
1966 * @return string Attributes
1968 function get_html_lang($dir = false) {
1969 $direction = '';
1970 if ($dir) {
1971 if (right_to_left()) {
1972 $direction = ' dir="rtl"';
1973 } else {
1974 $direction = ' dir="ltr"';
1977 // Accessibility: added the 'lang' attribute to $direction, used in theme <html> tag.
1978 $language = str_replace('_', '-', current_language());
1979 @header('Content-Language: '.$language);
1980 return ($direction.' lang="'.$language.'" xml:lang="'.$language.'"');
1984 // STANDARD WEB PAGE PARTS.
1987 * Send the HTTP headers that Moodle requires.
1989 * There is a backwards compatibility hack for legacy code
1990 * that needs to add custom IE compatibility directive.
1992 * Example:
1993 * <code>
1994 * if (!isset($CFG->additionalhtmlhead)) {
1995 * $CFG->additionalhtmlhead = '';
1997 * $CFG->additionalhtmlhead .= '<meta http-equiv="X-UA-Compatible" content="IE=8" />';
1998 * header('X-UA-Compatible: IE=8');
1999 * echo $OUTPUT->header();
2000 * </code>
2002 * Please note the $CFG->additionalhtmlhead alone might not work,
2003 * you should send the IE compatibility header() too.
2005 * @param string $contenttype
2006 * @param bool $cacheable Can this page be cached on back?
2007 * @return void, sends HTTP headers
2009 function send_headers($contenttype, $cacheable = true) {
2010 global $CFG;
2012 @header('Content-Type: ' . $contenttype);
2013 @header('Content-Script-Type: text/javascript');
2014 @header('Content-Style-Type: text/css');
2016 if (empty($CFG->additionalhtmlhead) or stripos($CFG->additionalhtmlhead, 'X-UA-Compatible') === false) {
2017 @header('X-UA-Compatible: IE=edge');
2020 if ($cacheable) {
2021 // Allow caching on "back" (but not on normal clicks).
2022 @header('Cache-Control: private, pre-check=0, post-check=0, max-age=0, no-transform');
2023 @header('Pragma: no-cache');
2024 @header('Expires: ');
2025 } else {
2026 // Do everything we can to always prevent clients and proxies caching.
2027 @header('Cache-Control: no-store, no-cache, must-revalidate');
2028 @header('Cache-Control: post-check=0, pre-check=0, no-transform', false);
2029 @header('Pragma: no-cache');
2030 @header('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
2031 @header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
2033 @header('Accept-Ranges: none');
2035 if (empty($CFG->allowframembedding)) {
2036 @header('X-Frame-Options: sameorigin');
2041 * Return the right arrow with text ('next'), and optionally embedded in a link.
2043 * @param string $text HTML/plain text label (set to blank only for breadcrumb separator cases).
2044 * @param string $url An optional link to use in a surrounding HTML anchor.
2045 * @param bool $accesshide True if text should be hidden (for screen readers only).
2046 * @param string $addclass Additional class names for the link, or the arrow character.
2047 * @return string HTML string.
2049 function link_arrow_right($text, $url='', $accesshide=false, $addclass='') {
2050 global $OUTPUT; // TODO: move to output renderer.
2051 $arrowclass = 'arrow ';
2052 if (!$url) {
2053 $arrowclass .= $addclass;
2055 $arrow = '<span class="'.$arrowclass.'">'.$OUTPUT->rarrow().'</span>';
2056 $htmltext = '';
2057 if ($text) {
2058 $htmltext = '<span class="arrow_text">'.$text.'</span>&nbsp;';
2059 if ($accesshide) {
2060 $htmltext = get_accesshide($htmltext);
2063 if ($url) {
2064 $class = 'arrow_link';
2065 if ($addclass) {
2066 $class .= ' '.$addclass;
2068 return '<a class="'.$class.'" href="'.$url.'" title="'.preg_replace('/<.*?>/', '', $text).'">'.$htmltext.$arrow.'</a>';
2070 return $htmltext.$arrow;
2074 * Return the left arrow with text ('previous'), and optionally embedded in a link.
2076 * @param string $text HTML/plain text label (set to blank only for breadcrumb separator cases).
2077 * @param string $url An optional link to use in a surrounding HTML anchor.
2078 * @param bool $accesshide True if text should be hidden (for screen readers only).
2079 * @param string $addclass Additional class names for the link, or the arrow character.
2080 * @return string HTML string.
2082 function link_arrow_left($text, $url='', $accesshide=false, $addclass='') {
2083 global $OUTPUT; // TODO: move to utput renderer.
2084 $arrowclass = 'arrow ';
2085 if (! $url) {
2086 $arrowclass .= $addclass;
2088 $arrow = '<span class="'.$arrowclass.'">'.$OUTPUT->larrow().'</span>';
2089 $htmltext = '';
2090 if ($text) {
2091 $htmltext = '&nbsp;<span class="arrow_text">'.$text.'</span>';
2092 if ($accesshide) {
2093 $htmltext = get_accesshide($htmltext);
2096 if ($url) {
2097 $class = 'arrow_link';
2098 if ($addclass) {
2099 $class .= ' '.$addclass;
2101 return '<a class="'.$class.'" href="'.$url.'" title="'.preg_replace('/<.*?>/', '', $text).'">'.$arrow.$htmltext.'</a>';
2103 return $arrow.$htmltext;
2107 * Return a HTML element with the class "accesshide", for accessibility.
2109 * Please use cautiously - where possible, text should be visible!
2111 * @param string $text Plain text.
2112 * @param string $elem Lowercase element name, default "span".
2113 * @param string $class Additional classes for the element.
2114 * @param string $attrs Additional attributes string in the form, "name='value' name2='value2'"
2115 * @return string HTML string.
2117 function get_accesshide($text, $elem='span', $class='', $attrs='') {
2118 return "<$elem class=\"accesshide $class\" $attrs>$text</$elem>";
2122 * Return the breadcrumb trail navigation separator.
2124 * @return string HTML string.
2126 function get_separator() {
2127 // Accessibility: the 'hidden' slash is preferred for screen readers.
2128 return ' '.link_arrow_right($text='/', $url='', $accesshide=true, 'sep').' ';
2132 * Print (or return) a collapsible region, that has a caption that can be clicked to expand or collapse the region.
2134 * If JavaScript is off, then the region will always be expanded.
2136 * @param string $contents the contents of the box.
2137 * @param string $classes class names added to the div that is output.
2138 * @param string $id id added to the div that is output. Must not be blank.
2139 * @param string $caption text displayed at the top. Clicking on this will cause the region to expand or contract.
2140 * @param string $userpref the name of the user preference that stores the user's preferred default state.
2141 * (May be blank if you do not wish the state to be persisted.
2142 * @param boolean $default Initial collapsed state to use if the user_preference it not set.
2143 * @param boolean $return if true, return the HTML as a string, rather than printing it.
2144 * @return string|void If $return is false, returns nothing, otherwise returns a string of HTML.
2146 function print_collapsible_region($contents, $classes, $id, $caption, $userpref = '', $default = false, $return = false) {
2147 $output = print_collapsible_region_start($classes, $id, $caption, $userpref, $default, true);
2148 $output .= $contents;
2149 $output .= print_collapsible_region_end(true);
2151 if ($return) {
2152 return $output;
2153 } else {
2154 echo $output;
2159 * Print (or return) the start of a collapsible region
2161 * The collapsibleregion has a caption that can be clicked to expand or collapse the region. If JavaScript is off, then the region
2162 * will always be expanded.
2164 * @param string $classes class names added to the div that is output.
2165 * @param string $id id added to the div that is output. Must not be blank.
2166 * @param string $caption text displayed at the top. Clicking on this will cause the region to expand or contract.
2167 * @param string $userpref the name of the user preference that stores the user's preferred default state.
2168 * (May be blank if you do not wish the state to be persisted.
2169 * @param boolean $default Initial collapsed state to use if the user_preference it not set.
2170 * @param boolean $return if true, return the HTML as a string, rather than printing it.
2171 * @return string|void if $return is false, returns nothing, otherwise returns a string of HTML.
2173 function print_collapsible_region_start($classes, $id, $caption, $userpref = '', $default = false, $return = false) {
2174 global $PAGE;
2176 // Work out the initial state.
2177 if (!empty($userpref) and is_string($userpref)) {
2178 user_preference_allow_ajax_update($userpref, PARAM_BOOL);
2179 $collapsed = get_user_preferences($userpref, $default);
2180 } else {
2181 $collapsed = $default;
2182 $userpref = false;
2185 if ($collapsed) {
2186 $classes .= ' collapsed';
2189 $output = '';
2190 $output .= '<div id="' . $id . '" class="collapsibleregion ' . $classes . '">';
2191 $output .= '<div id="' . $id . '_sizer">';
2192 $output .= '<div id="' . $id . '_caption" class="collapsibleregioncaption">';
2193 $output .= $caption . ' ';
2194 $output .= '</div><div id="' . $id . '_inner" class="collapsibleregioninner">';
2195 $PAGE->requires->js_init_call('M.util.init_collapsible_region', array($id, $userpref, get_string('clicktohideshow')));
2197 if ($return) {
2198 return $output;
2199 } else {
2200 echo $output;
2205 * Close a region started with print_collapsible_region_start.
2207 * @param boolean $return if true, return the HTML as a string, rather than printing it.
2208 * @return string|void if $return is false, returns nothing, otherwise returns a string of HTML.
2210 function print_collapsible_region_end($return = false) {
2211 $output = '</div></div></div>';
2213 if ($return) {
2214 return $output;
2215 } else {
2216 echo $output;
2221 * Print a specified group's avatar.
2223 * @param array|stdClass $group A single {@link group} object OR array of groups.
2224 * @param int $courseid The course ID.
2225 * @param boolean $large Default small picture, or large.
2226 * @param boolean $return If false print picture, otherwise return the output as string
2227 * @param boolean $link Enclose image in a link to view specified course?
2228 * @return string|void Depending on the setting of $return
2230 function print_group_picture($group, $courseid, $large=false, $return=false, $link=true) {
2231 global $CFG;
2233 if (is_array($group)) {
2234 $output = '';
2235 foreach ($group as $g) {
2236 $output .= print_group_picture($g, $courseid, $large, true, $link);
2238 if ($return) {
2239 return $output;
2240 } else {
2241 echo $output;
2242 return;
2246 $context = context_course::instance($courseid);
2248 // If there is no picture, do nothing.
2249 if (!$group->picture) {
2250 return '';
2253 // If picture is hidden, only show to those with course:managegroups.
2254 if ($group->hidepicture and !has_capability('moodle/course:managegroups', $context)) {
2255 return '';
2258 if ($link or has_capability('moodle/site:accessallgroups', $context)) {
2259 $output = '<a href="'. $CFG->wwwroot .'/user/index.php?id='. $courseid .'&amp;group='. $group->id .'">';
2260 } else {
2261 $output = '';
2263 if ($large) {
2264 $file = 'f1';
2265 } else {
2266 $file = 'f2';
2269 $grouppictureurl = moodle_url::make_pluginfile_url($context->id, 'group', 'icon', $group->id, '/', $file);
2270 $grouppictureurl->param('rev', $group->picture);
2271 $output .= '<img class="grouppicture" src="'.$grouppictureurl.'"'.
2272 ' alt="'.s(get_string('group').' '.$group->name).'" title="'.s($group->name).'"/>';
2274 if ($link or has_capability('moodle/site:accessallgroups', $context)) {
2275 $output .= '</a>';
2278 if ($return) {
2279 return $output;
2280 } else {
2281 echo $output;
2287 * Display a recent activity note
2289 * @staticvar string $strftimerecent
2290 * @param int $time A timestamp int.
2291 * @param stdClass $user A user object from the database.
2292 * @param string $text Text for display for the note
2293 * @param string $link The link to wrap around the text
2294 * @param bool $return If set to true the HTML is returned rather than echo'd
2295 * @param string $viewfullnames
2296 * @return string If $retrun was true returns HTML for a recent activity notice.
2298 function print_recent_activity_note($time, $user, $text, $link, $return=false, $viewfullnames=null) {
2299 static $strftimerecent = null;
2300 $output = '';
2302 if (is_null($viewfullnames)) {
2303 $context = context_system::instance();
2304 $viewfullnames = has_capability('moodle/site:viewfullnames', $context);
2307 if (is_null($strftimerecent)) {
2308 $strftimerecent = get_string('strftimerecent');
2311 $output .= '<div class="head">';
2312 $output .= '<div class="date">'.userdate($time, $strftimerecent).'</div>';
2313 $output .= '<div class="name">'.fullname($user, $viewfullnames).'</div>';
2314 $output .= '</div>';
2315 $output .= '<div class="info"><a href="'.$link.'">'.format_string($text, true).'</a></div>';
2317 if ($return) {
2318 return $output;
2319 } else {
2320 echo $output;
2325 * Returns a popup menu with course activity modules
2327 * Given a course this function returns a small popup menu with all the course activity modules in it, as a navigation menu
2328 * outputs a simple list structure in XHTML.
2329 * The data is taken from the serialised array stored in the course record.
2331 * @param course $course A {@link $COURSE} object.
2332 * @param array $sections
2333 * @param course_modinfo $modinfo
2334 * @param string $strsection
2335 * @param string $strjumpto
2336 * @param int $width
2337 * @param string $cmid
2338 * @return string The HTML block
2340 function navmenulist($course, $sections, $modinfo, $strsection, $strjumpto, $width=50, $cmid=0) {
2342 global $CFG, $OUTPUT;
2344 $section = -1;
2345 $menu = array();
2346 $doneheading = false;
2348 $courseformatoptions = course_get_format($course)->get_format_options();
2349 $coursecontext = context_course::instance($course->id);
2351 $menu[] = '<ul class="navmenulist"><li class="jumpto section"><span>'.$strjumpto.'</span><ul>';
2352 foreach ($modinfo->cms as $mod) {
2353 if (!$mod->has_view()) {
2354 // Don't show modules which you can't link to!
2355 continue;
2358 // For course formats using 'numsections' do not show extra sections.
2359 if (isset($courseformatoptions['numsections']) && $mod->sectionnum > $courseformatoptions['numsections']) {
2360 break;
2363 if (!$mod->uservisible) { // Do not icnlude empty sections at all.
2364 continue;
2367 if ($mod->sectionnum >= 0 and $section != $mod->sectionnum) {
2368 $thissection = $sections[$mod->sectionnum];
2370 if ($thissection->visible or
2371 (isset($courseformatoptions['hiddensections']) and !$courseformatoptions['hiddensections']) or
2372 has_capability('moodle/course:viewhiddensections', $coursecontext)) {
2373 $thissection->summary = strip_tags(format_string($thissection->summary, true));
2374 if (!$doneheading) {
2375 $menu[] = '</ul></li>';
2377 if ($course->format == 'weeks' or empty($thissection->summary)) {
2378 $item = $strsection ." ". $mod->sectionnum;
2379 } else {
2380 if (core_text::strlen($thissection->summary) < ($width-3)) {
2381 $item = $thissection->summary;
2382 } else {
2383 $item = core_text::substr($thissection->summary, 0, $width).'...';
2386 $menu[] = '<li class="section"><span>'.$item.'</span>';
2387 $menu[] = '<ul>';
2388 $doneheading = true;
2390 $section = $mod->sectionnum;
2391 } else {
2392 // No activities from this hidden section shown.
2393 continue;
2397 $url = $mod->modname .'/view.php?id='. $mod->id;
2398 $mod->name = strip_tags(format_string($mod->name ,true));
2399 if (core_text::strlen($mod->name) > ($width+5)) {
2400 $mod->name = core_text::substr($mod->name, 0, $width).'...';
2402 if (!$mod->visible) {
2403 $mod->name = '('.$mod->name.')';
2405 $class = 'activity '.$mod->modname;
2406 $class .= ($cmid == $mod->id) ? ' selected' : '';
2407 $menu[] = '<li class="'.$class.'">'.
2408 '<img src="'.$OUTPUT->pix_url('icon', $mod->modname) . '" alt="" />'.
2409 '<a href="'.$CFG->wwwroot.'/mod/'.$url.'">'.$mod->name.'</a></li>';
2412 if ($doneheading) {
2413 $menu[] = '</ul></li>';
2415 $menu[] = '</ul></li></ul>';
2417 return implode("\n", $menu);
2421 * Prints a grade menu (as part of an existing form) with help showing all possible numerical grades and scales.
2423 * @todo Finish documenting this function
2424 * @todo Deprecate: this is only used in a few contrib modules
2426 * @param int $courseid The course ID
2427 * @param string $name
2428 * @param string $current
2429 * @param boolean $includenograde Include those with no grades
2430 * @param boolean $return If set to true returns rather than echo's
2431 * @return string|bool Depending on value of $return
2433 function print_grade_menu($courseid, $name, $current, $includenograde=true, $return=false) {
2434 global $OUTPUT;
2436 $output = '';
2437 $strscale = get_string('scale');
2438 $strscales = get_string('scales');
2440 $scales = get_scales_menu($courseid);
2441 foreach ($scales as $i => $scalename) {
2442 $grades[-$i] = $strscale .': '. $scalename;
2444 if ($includenograde) {
2445 $grades[0] = get_string('nograde');
2447 for ($i=100; $i>=1; $i--) {
2448 $grades[$i] = $i;
2450 $output .= html_writer::select($grades, $name, $current, false);
2452 $helppix = $OUTPUT->pix_url('help');
2453 $linkobject = '<span class="helplink"><img class="iconhelp" alt="'.$strscales.'" src="'.$helppix.'" /></span>';
2454 $link = new moodle_url('/course/scales.php', array('id' => $courseid, 'list' => 1));
2455 $action = new popup_action('click', $link, 'ratingscales', array('height' => 400, 'width' => 500));
2456 $output .= $OUTPUT->action_link($link, $linkobject, $action, array('title' => $strscales));
2458 if ($return) {
2459 return $output;
2460 } else {
2461 echo $output;
2466 * Print an error to STDOUT and exit with a non-zero code. For commandline scripts.
2468 * Default errorcode is 1.
2470 * Very useful for perl-like error-handling:
2471 * do_somethting() or mdie("Something went wrong");
2473 * @param string $msg Error message
2474 * @param integer $errorcode Error code to emit
2476 function mdie($msg='', $errorcode=1) {
2477 trigger_error($msg);
2478 exit($errorcode);
2482 * Print a message and exit.
2484 * @param string $message The message to print in the notice
2485 * @param string $link The link to use for the continue button
2486 * @param object $course A course object. Unused.
2487 * @return void This function simply exits
2489 function notice ($message, $link='', $course=null) {
2490 global $PAGE, $OUTPUT;
2492 $message = clean_text($message); // In case nasties are in here.
2494 if (CLI_SCRIPT) {
2495 echo("!!$message!!\n");
2496 exit(1); // No success.
2499 if (!$PAGE->headerprinted) {
2500 // Header not yet printed.
2501 $PAGE->set_title(get_string('notice'));
2502 echo $OUTPUT->header();
2503 } else {
2504 echo $OUTPUT->container_end_all(false);
2507 echo $OUTPUT->box($message, 'generalbox', 'notice');
2508 echo $OUTPUT->continue_button($link);
2510 echo $OUTPUT->footer();
2511 exit(1); // General error code.
2515 * Redirects the user to another page, after printing a notice.
2517 * This function calls the OUTPUT redirect method, echo's the output and then dies to ensure nothing else happens.
2519 * <strong>Good practice:</strong> You should call this method before starting page
2520 * output by using any of the OUTPUT methods.
2522 * @param moodle_url|string $url A moodle_url to redirect to. Strings are not to be trusted!
2523 * @param string $message The message to display to the user
2524 * @param int $delay The delay before redirecting
2525 * @throws moodle_exception
2527 function redirect($url, $message='', $delay=-1) {
2528 global $OUTPUT, $PAGE, $CFG;
2530 if (CLI_SCRIPT or AJAX_SCRIPT) {
2531 // This is wrong - developers should not use redirect in these scripts but it should not be very likely.
2532 throw new moodle_exception('redirecterrordetected', 'error');
2535 // Prevent debug errors - make sure context is properly initialised.
2536 if ($PAGE) {
2537 $PAGE->set_context(null);
2538 $PAGE->set_pagelayout('redirect'); // No header and footer needed.
2539 $PAGE->set_title(get_string('pageshouldredirect', 'moodle'));
2542 if ($url instanceof moodle_url) {
2543 $url = $url->out(false);
2546 $debugdisableredirect = false;
2547 do {
2548 if (defined('DEBUGGING_PRINTED')) {
2549 // Some debugging already printed, no need to look more.
2550 $debugdisableredirect = true;
2551 break;
2554 if (core_useragent::is_msword()) {
2555 // Clicking a URL from MS Word sends a request to the server without cookies. If that
2556 // causes a redirect Word will open a browser pointing the new URL. If not, the URL that
2557 // was clicked is opened. Because the request from Word is without cookies, it almost
2558 // always results in a redirect to the login page, even if the user is logged in in their
2559 // browser. This is not what we want, so prevent the redirect for requests from Word.
2560 $debugdisableredirect = true;
2561 break;
2564 if (empty($CFG->debugdisplay) or empty($CFG->debug)) {
2565 // No errors should be displayed.
2566 break;
2569 if (!function_exists('error_get_last') or !$lasterror = error_get_last()) {
2570 break;
2573 if (!($lasterror['type'] & $CFG->debug)) {
2574 // Last error not interesting.
2575 break;
2578 // Watch out here, @hidden() errors are returned from error_get_last() too.
2579 if (headers_sent()) {
2580 // We already started printing something - that means errors likely printed.
2581 $debugdisableredirect = true;
2582 break;
2585 if (ob_get_level() and ob_get_contents()) {
2586 // There is something waiting to be printed, hopefully it is the errors,
2587 // but it might be some error hidden by @ too - such as the timezone mess from setup.php.
2588 $debugdisableredirect = true;
2589 break;
2591 } while (false);
2593 // Technically, HTTP/1.1 requires Location: header to contain the absolute path.
2594 // (In practice browsers accept relative paths - but still, might as well do it properly.)
2595 // This code turns relative into absolute.
2596 if (!preg_match('|^[a-z]+:|', $url)) {
2597 // Get host name http://www.wherever.com.
2598 $hostpart = preg_replace('|^(.*?[^:/])/.*$|', '$1', $CFG->wwwroot);
2599 if (preg_match('|^/|', $url)) {
2600 // URLs beginning with / are relative to web server root so we just add them in.
2601 $url = $hostpart.$url;
2602 } else {
2603 // URLs not beginning with / are relative to path of current script, so add that on.
2604 $url = $hostpart.preg_replace('|\?.*$|', '', me()).'/../'.$url;
2606 // Replace all ..s.
2607 while (true) {
2608 $newurl = preg_replace('|/(?!\.\.)[^/]*/\.\./|', '/', $url);
2609 if ($newurl == $url) {
2610 break;
2612 $url = $newurl;
2616 // Sanitise url - we can not rely on moodle_url or our URL cleaning
2617 // because they do not support all valid external URLs.
2618 $url = preg_replace('/[\x00-\x1F\x7F]/', '', $url);
2619 $url = str_replace('"', '%22', $url);
2620 $encodedurl = preg_replace("/\&(?![a-zA-Z0-9#]{1,8};)/", "&amp;", $url);
2621 $encodedurl = preg_replace('/^.*href="([^"]*)".*$/', "\\1", clean_text('<a href="'.$encodedurl.'" />', FORMAT_HTML));
2622 $url = str_replace('&amp;', '&', $encodedurl);
2624 if (!empty($message)) {
2625 if ($delay === -1 || !is_numeric($delay)) {
2626 $delay = 3;
2628 $message = clean_text($message);
2629 } else {
2630 $message = get_string('pageshouldredirect');
2631 $delay = 0;
2634 // Make sure the session is closed properly, this prevents problems in IIS
2635 // and also some potential PHP shutdown issues.
2636 \core\session\manager::write_close();
2638 if ($delay == 0 && !$debugdisableredirect && !headers_sent()) {
2639 // 302 might not work for POST requests, 303 is ignored by obsolete clients.
2640 @header($_SERVER['SERVER_PROTOCOL'] . ' 303 See Other');
2641 @header('Location: '.$url);
2642 echo bootstrap_renderer::plain_redirect_message($encodedurl);
2643 exit;
2646 // Include a redirect message, even with a HTTP redirect, because that is recommended practice.
2647 if ($PAGE) {
2648 $CFG->docroot = false; // To prevent the link to moodle docs from being displayed on redirect page.
2649 echo $OUTPUT->redirect_message($encodedurl, $message, $delay, $debugdisableredirect);
2650 exit;
2651 } else {
2652 echo bootstrap_renderer::early_redirect_message($encodedurl, $message, $delay);
2653 exit;
2658 * Given an email address, this function will return an obfuscated version of it.
2660 * @param string $email The email address to obfuscate
2661 * @return string The obfuscated email address
2663 function obfuscate_email($email) {
2664 $i = 0;
2665 $length = strlen($email);
2666 $obfuscated = '';
2667 while ($i < $length) {
2668 if (rand(0, 2) && $email{$i}!='@') { // MDL-20619 some browsers have problems unobfuscating @.
2669 $obfuscated.='%'.dechex(ord($email{$i}));
2670 } else {
2671 $obfuscated.=$email{$i};
2673 $i++;
2675 return $obfuscated;
2679 * This function takes some text and replaces about half of the characters
2680 * with HTML entity equivalents. Return string is obviously longer.
2682 * @param string $plaintext The text to be obfuscated
2683 * @return string The obfuscated text
2685 function obfuscate_text($plaintext) {
2686 $i=0;
2687 $length = core_text::strlen($plaintext);
2688 $obfuscated='';
2689 $prevobfuscated = false;
2690 while ($i < $length) {
2691 $char = core_text::substr($plaintext, $i, 1);
2692 $ord = core_text::utf8ord($char);
2693 $numerical = ($ord >= ord('0')) && ($ord <= ord('9'));
2694 if ($prevobfuscated and $numerical ) {
2695 $obfuscated.='&#'.$ord.';';
2696 } else if (rand(0, 2)) {
2697 $obfuscated.='&#'.$ord.';';
2698 $prevobfuscated = true;
2699 } else {
2700 $obfuscated.=$char;
2701 $prevobfuscated = false;
2703 $i++;
2705 return $obfuscated;
2709 * This function uses the {@link obfuscate_email()} and {@link obfuscate_text()}
2710 * to generate a fully obfuscated email link, ready to use.
2712 * @param string $email The email address to display
2713 * @param string $label The text to displayed as hyperlink to $email
2714 * @param boolean $dimmed If true then use css class 'dimmed' for hyperlink
2715 * @param string $subject The subject of the email in the mailto link
2716 * @param string $body The content of the email in the mailto link
2717 * @return string The obfuscated mailto link
2719 function obfuscate_mailto($email, $label='', $dimmed=false, $subject = '', $body = '') {
2721 if (empty($label)) {
2722 $label = $email;
2725 $label = obfuscate_text($label);
2726 $email = obfuscate_email($email);
2727 $mailto = obfuscate_text('mailto');
2728 $url = new moodle_url("mailto:$email");
2729 $attrs = array();
2731 if (!empty($subject)) {
2732 $url->param('subject', format_string($subject));
2734 if (!empty($body)) {
2735 $url->param('body', format_string($body));
2738 // Use the obfuscated mailto.
2739 $url = preg_replace('/^mailto/', $mailto, $url->out());
2741 if ($dimmed) {
2742 $attrs['title'] = get_string('emaildisable');
2743 $attrs['class'] = 'dimmed';
2746 return html_writer::link($url, $label, $attrs);
2750 * This function is used to rebuild the <nolink> tag because some formats (PLAIN and WIKI)
2751 * will transform it to html entities
2753 * @param string $text Text to search for nolink tag in
2754 * @return string
2756 function rebuildnolinktag($text) {
2758 $text = preg_replace('/&lt;(\/*nolink)&gt;/i', '<$1>', $text);
2760 return $text;
2764 * Prints a maintenance message from $CFG->maintenance_message or default if empty.
2766 function print_maintenance_message() {
2767 global $CFG, $SITE, $PAGE, $OUTPUT;
2769 $PAGE->set_pagetype('maintenance-message');
2770 $PAGE->set_pagelayout('maintenance');
2771 $PAGE->set_title(strip_tags($SITE->fullname));
2772 $PAGE->set_heading($SITE->fullname);
2773 echo $OUTPUT->header();
2774 echo $OUTPUT->heading(get_string('sitemaintenance', 'admin'));
2775 if (isset($CFG->maintenance_message) and !html_is_blank($CFG->maintenance_message)) {
2776 echo $OUTPUT->box_start('maintenance_message generalbox boxwidthwide boxaligncenter');
2777 echo $CFG->maintenance_message;
2778 echo $OUTPUT->box_end();
2780 echo $OUTPUT->footer();
2781 die;
2785 * Returns a string containing a nested list, suitable for formatting into tabs with CSS.
2787 * It is not recommended to use this function in Moodle 2.5 but it is left for backward
2788 * compartibility.
2790 * Example how to print a single line tabs:
2791 * $rows = array(
2792 * new tabobject(...),
2793 * new tabobject(...)
2794 * );
2795 * echo $OUTPUT->tabtree($rows, $selectedid);
2797 * Multiple row tabs may not look good on some devices but if you want to use them
2798 * you can specify ->subtree for the active tabobject.
2800 * @param array $tabrows An array of rows where each row is an array of tab objects
2801 * @param string $selected The id of the selected tab (whatever row it's on)
2802 * @param array $inactive An array of ids of inactive tabs that are not selectable.
2803 * @param array $activated An array of ids of other tabs that are currently activated
2804 * @param bool $return If true output is returned rather then echo'd
2805 * @return string HTML output if $return was set to true.
2807 function print_tabs($tabrows, $selected = null, $inactive = null, $activated = null, $return = false) {
2808 global $OUTPUT;
2810 $tabrows = array_reverse($tabrows);
2811 $subtree = array();
2812 foreach ($tabrows as $row) {
2813 $tree = array();
2815 foreach ($row as $tab) {
2816 $tab->inactive = is_array($inactive) && in_array((string)$tab->id, $inactive);
2817 $tab->activated = is_array($activated) && in_array((string)$tab->id, $activated);
2818 $tab->selected = (string)$tab->id == $selected;
2820 if ($tab->activated || $tab->selected) {
2821 $tab->subtree = $subtree;
2823 $tree[] = $tab;
2825 $subtree = $tree;
2827 $output = $OUTPUT->tabtree($subtree);
2828 if ($return) {
2829 return $output;
2830 } else {
2831 print $output;
2832 return !empty($output);
2837 * Alter debugging level for the current request,
2838 * the change is not saved in database.
2840 * @param int $level one of the DEBUG_* constants
2841 * @param bool $debugdisplay
2843 function set_debugging($level, $debugdisplay = null) {
2844 global $CFG;
2846 $CFG->debug = (int)$level;
2847 $CFG->debugdeveloper = (($CFG->debug & DEBUG_DEVELOPER) === DEBUG_DEVELOPER);
2849 if ($debugdisplay !== null) {
2850 $CFG->debugdisplay = (bool)$debugdisplay;
2855 * Standard Debugging Function
2857 * Returns true if the current site debugging settings are equal or above specified level.
2858 * If passed a parameter it will emit a debugging notice similar to trigger_error(). The
2859 * routing of notices is controlled by $CFG->debugdisplay
2860 * eg use like this:
2862 * 1) debugging('a normal debug notice');
2863 * 2) debugging('something really picky', DEBUG_ALL);
2864 * 3) debugging('annoying debug message only for developers', DEBUG_DEVELOPER);
2865 * 4) if (debugging()) { perform extra debugging operations (do not use print or echo) }
2867 * In code blocks controlled by debugging() (such as example 4)
2868 * any output should be routed via debugging() itself, or the lower-level
2869 * trigger_error() or error_log(). Using echo or print will break XHTML
2870 * JS and HTTP headers.
2872 * It is also possible to define NO_DEBUG_DISPLAY which redirects the message to error_log.
2874 * @param string $message a message to print
2875 * @param int $level the level at which this debugging statement should show
2876 * @param array $backtrace use different backtrace
2877 * @return bool
2879 function debugging($message = '', $level = DEBUG_NORMAL, $backtrace = null) {
2880 global $CFG, $USER;
2882 $forcedebug = false;
2883 if (!empty($CFG->debugusers) && $USER) {
2884 $debugusers = explode(',', $CFG->debugusers);
2885 $forcedebug = in_array($USER->id, $debugusers);
2888 if (!$forcedebug and (empty($CFG->debug) || ($CFG->debug != -1 and $CFG->debug < $level))) {
2889 return false;
2892 if (!isset($CFG->debugdisplay)) {
2893 $CFG->debugdisplay = ini_get_bool('display_errors');
2896 if ($message) {
2897 if (!$backtrace) {
2898 $backtrace = debug_backtrace();
2900 $from = format_backtrace($backtrace, CLI_SCRIPT || NO_DEBUG_DISPLAY);
2901 if (PHPUNIT_TEST) {
2902 if (phpunit_util::debugging_triggered($message, $level, $from)) {
2903 // We are inside test, the debug message was logged.
2904 return true;
2908 if (NO_DEBUG_DISPLAY) {
2909 // Script does not want any errors or debugging in output,
2910 // we send the info to error log instead.
2911 error_log('Debugging: ' . $message . ' in '. PHP_EOL . $from);
2913 } else if ($forcedebug or $CFG->debugdisplay) {
2914 if (!defined('DEBUGGING_PRINTED')) {
2915 define('DEBUGGING_PRINTED', 1); // Indicates we have printed something.
2917 if (CLI_SCRIPT) {
2918 echo "++ $message ++\n$from";
2919 } else {
2920 echo '<div class="notifytiny debuggingmessage" data-rel="debugging">' , $message , $from , '</div>';
2923 } else {
2924 trigger_error($message . $from, E_USER_NOTICE);
2927 return true;
2931 * Outputs a HTML comment to the browser.
2933 * This is used for those hard-to-debug pages that use bits from many different files in very confusing ways (e.g. blocks).
2935 * <code>print_location_comment(__FILE__, __LINE__);</code>
2937 * @param string $file
2938 * @param integer $line
2939 * @param boolean $return Whether to return or print the comment
2940 * @return string|void Void unless true given as third parameter
2942 function print_location_comment($file, $line, $return = false) {
2943 if ($return) {
2944 return "<!-- $file at line $line -->\n";
2945 } else {
2946 echo "<!-- $file at line $line -->\n";
2952 * Returns true if the user is using a right-to-left language.
2954 * @return boolean true if the current language is right-to-left (Hebrew, Arabic etc)
2956 function right_to_left() {
2957 return (get_string('thisdirection', 'langconfig') === 'rtl');
2962 * Returns swapped left<=> right if in RTL environment.
2964 * Part of RTL Moodles support.
2966 * @param string $align align to check
2967 * @return string
2969 function fix_align_rtl($align) {
2970 if (!right_to_left()) {
2971 return $align;
2973 if ($align == 'left') {
2974 return 'right';
2976 if ($align == 'right') {
2977 return 'left';
2979 return $align;
2984 * Returns true if the page is displayed in a popup window.
2986 * Gets the information from the URL parameter inpopup.
2988 * @todo Use a central function to create the popup calls all over Moodle and
2989 * In the moment only works with resources and probably questions.
2991 * @return boolean
2993 function is_in_popup() {
2994 $inpopup = optional_param('inpopup', '', PARAM_BOOL);
2996 return ($inpopup);
3000 * Progress bar class.
3002 * Manages the display of a progress bar.
3004 * To use this class.
3005 * - construct
3006 * - call create (or use the 3rd param to the constructor)
3007 * - call update or update_full() or update() repeatedly
3009 * @copyright 2008 jamiesensei
3010 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3011 * @package core
3013 class progress_bar {
3014 /** @var string html id */
3015 private $html_id;
3016 /** @var int total width */
3017 private $width;
3018 /** @var int last percentage printed */
3019 private $percent = 0;
3020 /** @var int time when last printed */
3021 private $lastupdate = 0;
3022 /** @var int when did we start printing this */
3023 private $time_start = 0;
3026 * Constructor
3028 * Prints JS code if $autostart true.
3030 * @param string $html_id
3031 * @param int $width
3032 * @param bool $autostart Default to false
3034 public function __construct($htmlid = '', $width = 500, $autostart = false) {
3035 if (!empty($htmlid)) {
3036 $this->html_id = $htmlid;
3037 } else {
3038 $this->html_id = 'pbar_'.uniqid();
3041 $this->width = $width;
3043 if ($autostart) {
3044 $this->create();
3049 * Create a new progress bar, this function will output html.
3051 * @return void Echo's output
3053 public function create() {
3054 global $PAGE;
3056 $this->time_start = microtime(true);
3057 if (CLI_SCRIPT) {
3058 return; // Temporary solution for cli scripts.
3061 $PAGE->requires->string_for_js('secondsleft', 'moodle');
3063 $htmlcode = <<<EOT
3064 <div class="progressbar_container" style="width: {$this->width}px;" id="{$this->html_id}">
3065 <h2></h2>
3066 <div class="progress progress-striped active">
3067 <div class="bar" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">&nbsp;</div>
3068 </div>
3069 <p></p>
3070 </div>
3071 EOT;
3072 flush();
3073 echo $htmlcode;
3074 flush();
3078 * Update the progress bar
3080 * @param int $percent from 1-100
3081 * @param string $msg
3082 * @return void Echo's output
3083 * @throws coding_exception
3085 private function _update($percent, $msg) {
3086 if (empty($this->time_start)) {
3087 throw new coding_exception('You must call create() (or use the $autostart ' .
3088 'argument to the constructor) before you try updating the progress bar.');
3091 if (CLI_SCRIPT) {
3092 return; // Temporary solution for cli scripts.
3095 $estimate = $this->estimate($percent);
3097 if ($estimate === null) {
3098 // Always do the first and last updates.
3099 } else if ($estimate == 0) {
3100 // Always do the last updates.
3101 } else if ($this->lastupdate + 20 < time()) {
3102 // We must update otherwise browser would time out.
3103 } else if (round($this->percent, 2) === round($percent, 2)) {
3104 // No significant change, no need to update anything.
3105 return;
3107 if (is_numeric($estimate)) {
3108 $estimate = get_string('secondsleft', 'moodle', round($estimate, 2));
3111 $this->percent = round($percent, 2);
3112 $this->lastupdate = microtime(true);
3114 echo html_writer::script(js_writer::function_call('updateProgressBar',
3115 array($this->html_id, $this->percent, $msg, $estimate)));
3116 flush();
3120 * Estimate how much time it is going to take.
3122 * @param int $pt from 1-100
3123 * @return mixed Null (unknown), or int
3125 private function estimate($pt) {
3126 if ($this->lastupdate == 0) {
3127 return null;
3129 if ($pt < 0.00001) {
3130 return null; // We do not know yet how long it will take.
3132 if ($pt > 99.99999) {
3133 return 0; // Nearly done, right?
3135 $consumed = microtime(true) - $this->time_start;
3136 if ($consumed < 0.001) {
3137 return null;
3140 return (100 - $pt) * ($consumed / $pt);
3144 * Update progress bar according percent
3146 * @param int $percent from 1-100
3147 * @param string $msg the message needed to be shown
3149 public function update_full($percent, $msg) {
3150 $percent = max(min($percent, 100), 0);
3151 $this->_update($percent, $msg);
3155 * Update progress bar according the number of tasks
3157 * @param int $cur current task number
3158 * @param int $total total task number
3159 * @param string $msg message
3161 public function update($cur, $total, $msg) {
3162 $percent = ($cur / $total) * 100;
3163 $this->update_full($percent, $msg);
3167 * Restart the progress bar.
3169 public function restart() {
3170 $this->percent = 0;
3171 $this->lastupdate = 0;
3172 $this->time_start = 0;
3177 * Progress trace class.
3179 * Use this class from long operations where you want to output occasional information about
3180 * what is going on, but don't know if, or in what format, the output should be.
3182 * @copyright 2009 Tim Hunt
3183 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3184 * @package core
3186 abstract class progress_trace {
3188 * Output an progress message in whatever format.
3190 * @param string $message the message to output.
3191 * @param integer $depth indent depth for this message.
3193 abstract public function output($message, $depth = 0);
3196 * Called when the processing is finished.
3198 public function finished() {
3203 * This subclass of progress_trace does not ouput anything.
3205 * @copyright 2009 Tim Hunt
3206 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3207 * @package core
3209 class null_progress_trace extends progress_trace {
3211 * Does Nothing
3213 * @param string $message
3214 * @param int $depth
3215 * @return void Does Nothing
3217 public function output($message, $depth = 0) {
3222 * This subclass of progress_trace outputs to plain text.
3224 * @copyright 2009 Tim Hunt
3225 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3226 * @package core
3228 class text_progress_trace extends progress_trace {
3230 * Output the trace message.
3232 * @param string $message
3233 * @param int $depth
3234 * @return void Output is echo'd
3236 public function output($message, $depth = 0) {
3237 echo str_repeat(' ', $depth), $message, "\n";
3238 flush();
3243 * This subclass of progress_trace outputs as HTML.
3245 * @copyright 2009 Tim Hunt
3246 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3247 * @package core
3249 class html_progress_trace extends progress_trace {
3251 * Output the trace message.
3253 * @param string $message
3254 * @param int $depth
3255 * @return void Output is echo'd
3257 public function output($message, $depth = 0) {
3258 echo '<p>', str_repeat('&#160;&#160;', $depth), htmlspecialchars($message), "</p>\n";
3259 flush();
3264 * HTML List Progress Tree
3266 * @copyright 2009 Tim Hunt
3267 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3268 * @package core
3270 class html_list_progress_trace extends progress_trace {
3271 /** @var int */
3272 protected $currentdepth = -1;
3275 * Echo out the list
3277 * @param string $message The message to display
3278 * @param int $depth
3279 * @return void Output is echoed
3281 public function output($message, $depth = 0) {
3282 $samedepth = true;
3283 while ($this->currentdepth > $depth) {
3284 echo "</li>\n</ul>\n";
3285 $this->currentdepth -= 1;
3286 if ($this->currentdepth == $depth) {
3287 echo '<li>';
3289 $samedepth = false;
3291 while ($this->currentdepth < $depth) {
3292 echo "<ul>\n<li>";
3293 $this->currentdepth += 1;
3294 $samedepth = false;
3296 if ($samedepth) {
3297 echo "</li>\n<li>";
3299 echo htmlspecialchars($message);
3300 flush();
3304 * Called when the processing is finished.
3306 public function finished() {
3307 while ($this->currentdepth >= 0) {
3308 echo "</li>\n</ul>\n";
3309 $this->currentdepth -= 1;
3315 * This subclass of progress_trace outputs to error log.
3317 * @copyright Petr Skoda {@link http://skodak.org}
3318 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3319 * @package core
3321 class error_log_progress_trace extends progress_trace {
3322 /** @var string log prefix */
3323 protected $prefix;
3326 * Constructor.
3327 * @param string $prefix optional log prefix
3329 public function __construct($prefix = '') {
3330 $this->prefix = $prefix;
3334 * Output the trace message.
3336 * @param string $message
3337 * @param int $depth
3338 * @return void Output is sent to error log.
3340 public function output($message, $depth = 0) {
3341 error_log($this->prefix . str_repeat(' ', $depth) . $message);
3346 * Special type of trace that can be used for catching of output of other traces.
3348 * @copyright Petr Skoda {@link http://skodak.org}
3349 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3350 * @package core
3352 class progress_trace_buffer extends progress_trace {
3353 /** @var progres_trace */
3354 protected $trace;
3355 /** @var bool do we pass output out */
3356 protected $passthrough;
3357 /** @var string output buffer */
3358 protected $buffer;
3361 * Constructor.
3363 * @param progress_trace $trace
3364 * @param bool $passthrough true means output and buffer, false means just buffer and no output
3366 public function __construct(progress_trace $trace, $passthrough = true) {
3367 $this->trace = $trace;
3368 $this->passthrough = $passthrough;
3369 $this->buffer = '';
3373 * Output the trace message.
3375 * @param string $message the message to output.
3376 * @param int $depth indent depth for this message.
3377 * @return void output stored in buffer
3379 public function output($message, $depth = 0) {
3380 ob_start();
3381 $this->trace->output($message, $depth);
3382 $this->buffer .= ob_get_contents();
3383 if ($this->passthrough) {
3384 ob_end_flush();
3385 } else {
3386 ob_end_clean();
3391 * Called when the processing is finished.
3393 public function finished() {
3394 ob_start();
3395 $this->trace->finished();
3396 $this->buffer .= ob_get_contents();
3397 if ($this->passthrough) {
3398 ob_end_flush();
3399 } else {
3400 ob_end_clean();
3405 * Reset internal text buffer.
3407 public function reset_buffer() {
3408 $this->buffer = '';
3412 * Return internal text buffer.
3413 * @return string buffered plain text
3415 public function get_buffer() {
3416 return $this->buffer;
3421 * Special type of trace that can be used for redirecting to multiple other traces.
3423 * @copyright Petr Skoda {@link http://skodak.org}
3424 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3425 * @package core
3427 class combined_progress_trace extends progress_trace {
3430 * An array of traces.
3431 * @var array
3433 protected $traces;
3436 * Constructs a new instance.
3438 * @param array $traces multiple traces
3440 public function __construct(array $traces) {
3441 $this->traces = $traces;
3445 * Output an progress message in whatever format.
3447 * @param string $message the message to output.
3448 * @param integer $depth indent depth for this message.
3450 public function output($message, $depth = 0) {
3451 foreach ($this->traces as $trace) {
3452 $trace->output($message, $depth);
3457 * Called when the processing is finished.
3459 public function finished() {
3460 foreach ($this->traces as $trace) {
3461 $trace->finished();
3467 * Returns a localized sentence in the current language summarizing the current password policy
3469 * @todo this should be handled by a function/method in the language pack library once we have a support for it
3470 * @uses $CFG
3471 * @return string
3473 function print_password_policy() {
3474 global $CFG;
3476 $message = '';
3477 if (!empty($CFG->passwordpolicy)) {
3478 $messages = array();
3479 $messages[] = get_string('informminpasswordlength', 'auth', $CFG->minpasswordlength);
3480 if (!empty($CFG->minpassworddigits)) {
3481 $messages[] = get_string('informminpassworddigits', 'auth', $CFG->minpassworddigits);
3483 if (!empty($CFG->minpasswordlower)) {
3484 $messages[] = get_string('informminpasswordlower', 'auth', $CFG->minpasswordlower);
3486 if (!empty($CFG->minpasswordupper)) {
3487 $messages[] = get_string('informminpasswordupper', 'auth', $CFG->minpasswordupper);
3489 if (!empty($CFG->minpasswordnonalphanum)) {
3490 $messages[] = get_string('informminpasswordnonalphanum', 'auth', $CFG->minpasswordnonalphanum);
3493 $messages = join(', ', $messages); // This is ugly but we do not have anything better yet...
3494 $message = get_string('informpasswordpolicy', 'auth', $messages);
3496 return $message;
3500 * Get the value of a help string fully prepared for display in the current language.
3502 * @param string $identifier The identifier of the string to search for.
3503 * @param string $component The module the string is associated with.
3504 * @param boolean $ajax Whether this help is called from an AJAX script.
3505 * This is used to influence text formatting and determines
3506 * which format to output the doclink in.
3507 * @param string|object|array $a An object, string or number that can be used
3508 * within translation strings
3509 * @return Object An object containing:
3510 * - heading: Any heading that there may be for this help string.
3511 * - text: The wiki-formatted help string.
3512 * - doclink: An object containing a link, the linktext, and any additional
3513 * CSS classes to apply to that link. Only present if $ajax = false.
3514 * - completedoclink: A text representation of the doclink. Only present if $ajax = true.
3516 function get_formatted_help_string($identifier, $component, $ajax = false, $a = null) {
3517 global $CFG, $OUTPUT;
3518 $sm = get_string_manager();
3520 // Do not rebuild caches here!
3521 // Devs need to learn to purge all caches after any change or disable $CFG->langstringcache.
3523 $data = new stdClass();
3525 if ($sm->string_exists($identifier, $component)) {
3526 $data->heading = format_string(get_string($identifier, $component));
3527 } else {
3528 // Gracefully fall back to an empty string.
3529 $data->heading = '';
3532 if ($sm->string_exists($identifier . '_help', $component)) {
3533 $options = new stdClass();
3534 $options->trusted = false;
3535 $options->noclean = false;
3536 $options->smiley = false;
3537 $options->filter = false;
3538 $options->para = true;
3539 $options->newlines = false;
3540 $options->overflowdiv = !$ajax;
3542 // Should be simple wiki only MDL-21695.
3543 $data->text = format_text(get_string($identifier.'_help', $component, $a), FORMAT_MARKDOWN, $options);
3545 $helplink = $identifier . '_link';
3546 if ($sm->string_exists($helplink, $component)) { // Link to further info in Moodle docs.
3547 $link = get_string($helplink, $component);
3548 $linktext = get_string('morehelp');
3550 $data->doclink = new stdClass();
3551 $url = new moodle_url(get_docs_url($link));
3552 if ($ajax) {
3553 $data->doclink->link = $url->out();
3554 $data->doclink->linktext = $linktext;
3555 $data->doclink->class = ($CFG->doctonewwindow) ? 'helplinkpopup' : '';
3556 } else {
3557 $data->completedoclink = html_writer::tag('div', $OUTPUT->doc_link($link, $linktext),
3558 array('class' => 'helpdoclink'));
3561 } else {
3562 $data->text = html_writer::tag('p',
3563 html_writer::tag('strong', 'TODO') . ": missing help string [{$identifier}_help, {$component}]");
3565 return $data;