Merge branch 'MDL-56057_master' of git://github.com/dmonllao/moodle
[moodle.git] / lib / weblib.php
blob6b178cc9af6022d54362a69495883d4a9fb77071
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 * Related function {@link p()} simply prints the output of this function.
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 return preg_replace('/&amp;#(\d+|x[0-9a-f]+);/i', '&#$1;',
100 htmlspecialchars($var, ENT_QUOTES | ENT_HTML401 | ENT_SUBSTITUTE));
104 * Add quotes to HTML characters.
106 * Prints $var with HTML characters (like "<", ">", etc.) properly quoted.
107 * This function simply calls & displays {@link s()}.
108 * @see s()
110 * @param string $var the string potentially containing HTML characters
111 * @return string
113 function p($var) {
114 echo s($var);
118 * Does proper javascript quoting.
120 * Do not use addslashes anymore, because it does not work when magic_quotes_sybase is enabled.
122 * @param mixed $var String, Array, or Object to add slashes to
123 * @return mixed quoted result
125 function addslashes_js($var) {
126 if (is_string($var)) {
127 $var = str_replace('\\', '\\\\', $var);
128 $var = str_replace(array('\'', '"', "\n", "\r", "\0"), array('\\\'', '\\"', '\\n', '\\r', '\\0'), $var);
129 $var = str_replace('</', '<\/', $var); // XHTML compliance.
130 } else if (is_array($var)) {
131 $var = array_map('addslashes_js', $var);
132 } else if (is_object($var)) {
133 $a = get_object_vars($var);
134 foreach ($a as $key => $value) {
135 $a[$key] = addslashes_js($value);
137 $var = (object)$a;
139 return $var;
143 * Remove query string from url.
145 * Takes in a URL and returns it without the querystring portion.
147 * @param string $url the url which may have a query string attached.
148 * @return string The remaining URL.
150 function strip_querystring($url) {
152 if ($commapos = strpos($url, '?')) {
153 return substr($url, 0, $commapos);
154 } else {
155 return $url;
160 * Returns the name of the current script, WITH the querystring portion.
162 * This function is necessary because PHP_SELF and REQUEST_URI and SCRIPT_NAME
163 * return different things depending on a lot of things like your OS, Web
164 * server, and the way PHP is compiled (ie. as a CGI, module, ISAPI, etc.)
165 * <b>NOTE:</b> This function returns false if the global variables needed are not set.
167 * @return mixed String or false if the global variables needed are not set.
169 function me() {
170 global $ME;
171 return $ME;
175 * Guesses the full URL of the current script.
177 * This function is using $PAGE->url, but may fall back to $FULLME which
178 * is constructed from PHP_SELF and REQUEST_URI or SCRIPT_NAME
180 * @return mixed full page URL string or false if unknown
182 function qualified_me() {
183 global $FULLME, $PAGE, $CFG;
185 if (isset($PAGE) and $PAGE->has_set_url()) {
186 // This is the only recommended way to find out current page.
187 return $PAGE->url->out(false);
189 } else {
190 if ($FULLME === null) {
191 // CLI script most probably.
192 return false;
194 if (!empty($CFG->sslproxy)) {
195 // Return only https links when using SSL proxy.
196 return preg_replace('/^http:/', 'https:', $FULLME, 1);
197 } else {
198 return $FULLME;
204 * Determines whether or not the Moodle site is being served over HTTPS.
206 * This is done simply by checking the value of $CFG->httpswwwroot, which seems
207 * to be the only reliable method.
209 * @return boolean True if site is served over HTTPS, false otherwise.
211 function is_https() {
212 global $CFG;
214 return (strpos($CFG->httpswwwroot, 'https://') === 0);
218 * Returns the cleaned local URL of the HTTP_REFERER less the URL query string parameters if required.
220 * @param bool $stripquery if true, also removes the query part of the url.
221 * @return string The resulting referer or empty string.
223 function get_local_referer($stripquery = true) {
224 if (isset($_SERVER['HTTP_REFERER'])) {
225 $referer = clean_param($_SERVER['HTTP_REFERER'], PARAM_LOCALURL);
226 if ($stripquery) {
227 return strip_querystring($referer);
228 } else {
229 return $referer;
231 } else {
232 return '';
237 * Class for creating and manipulating urls.
239 * It can be used in moodle pages where config.php has been included without any further includes.
241 * It is useful for manipulating urls with long lists of params.
242 * One situation where it will be useful is a page which links to itself to perform various actions
243 * and / or to process form data. A moodle_url object :
244 * can be created for a page to refer to itself with all the proper get params being passed from page call to
245 * page call and methods can be used to output a url including all the params, optionally adding and overriding
246 * params and can also be used to
247 * - output the url without any get params
248 * - and output the params as hidden fields to be output within a form
250 * @copyright 2007 jamiesensei
251 * @link http://docs.moodle.org/dev/lib/weblib.php_moodle_url See short write up here
252 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
253 * @package core
255 class moodle_url {
258 * Scheme, ex.: http, https
259 * @var string
261 protected $scheme = '';
264 * Hostname.
265 * @var string
267 protected $host = '';
270 * Port number, empty means default 80 or 443 in case of http.
271 * @var int
273 protected $port = '';
276 * Username for http auth.
277 * @var string
279 protected $user = '';
282 * Password for http auth.
283 * @var string
285 protected $pass = '';
288 * Script path.
289 * @var string
291 protected $path = '';
294 * Optional slash argument value.
295 * @var string
297 protected $slashargument = '';
300 * Anchor, may be also empty, null means none.
301 * @var string
303 protected $anchor = null;
306 * Url parameters as associative array.
307 * @var array
309 protected $params = array();
312 * Create new instance of moodle_url.
314 * @param moodle_url|string $url - moodle_url means make a copy of another
315 * moodle_url and change parameters, string means full url or shortened
316 * form (ex.: '/course/view.php'). It is strongly encouraged to not include
317 * query string because it may result in double encoded values. Use the
318 * $params instead. For admin URLs, just use /admin/script.php, this
319 * class takes care of the $CFG->admin issue.
320 * @param array $params these params override current params or add new
321 * @param string $anchor The anchor to use as part of the URL if there is one.
322 * @throws moodle_exception
324 public function __construct($url, array $params = null, $anchor = null) {
325 global $CFG;
327 if ($url instanceof moodle_url) {
328 $this->scheme = $url->scheme;
329 $this->host = $url->host;
330 $this->port = $url->port;
331 $this->user = $url->user;
332 $this->pass = $url->pass;
333 $this->path = $url->path;
334 $this->slashargument = $url->slashargument;
335 $this->params = $url->params;
336 $this->anchor = $url->anchor;
338 } else {
339 // Detect if anchor used.
340 $apos = strpos($url, '#');
341 if ($apos !== false) {
342 $anchor = substr($url, $apos);
343 $anchor = ltrim($anchor, '#');
344 $this->set_anchor($anchor);
345 $url = substr($url, 0, $apos);
348 // Normalise shortened form of our url ex.: '/course/view.php'.
349 if (strpos($url, '/') === 0) {
350 // We must not use httpswwwroot here, because it might be url of other page,
351 // devs have to use httpswwwroot explicitly when creating new moodle_url.
352 $url = $CFG->wwwroot.$url;
355 // Now fix the admin links if needed, no need to mess with httpswwwroot.
356 if ($CFG->admin !== 'admin') {
357 if (strpos($url, "$CFG->wwwroot/admin/") === 0) {
358 $url = str_replace("$CFG->wwwroot/admin/", "$CFG->wwwroot/$CFG->admin/", $url);
362 // Parse the $url.
363 $parts = parse_url($url);
364 if ($parts === false) {
365 throw new moodle_exception('invalidurl');
367 if (isset($parts['query'])) {
368 // Note: the values may not be correctly decoded, url parameters should be always passed as array.
369 parse_str(str_replace('&amp;', '&', $parts['query']), $this->params);
371 unset($parts['query']);
372 foreach ($parts as $key => $value) {
373 $this->$key = $value;
376 // Detect slashargument value from path - we do not support directory names ending with .php.
377 $pos = strpos($this->path, '.php/');
378 if ($pos !== false) {
379 $this->slashargument = substr($this->path, $pos + 4);
380 $this->path = substr($this->path, 0, $pos + 4);
384 $this->params($params);
385 if ($anchor !== null) {
386 $this->anchor = (string)$anchor;
391 * Add an array of params to the params for this url.
393 * The added params override existing ones if they have the same name.
395 * @param array $params Defaults to null. If null then returns all params.
396 * @return array Array of Params for url.
397 * @throws coding_exception
399 public function params(array $params = null) {
400 $params = (array)$params;
402 foreach ($params as $key => $value) {
403 if (is_int($key)) {
404 throw new coding_exception('Url parameters can not have numeric keys!');
406 if (!is_string($value)) {
407 if (is_array($value)) {
408 throw new coding_exception('Url parameters values can not be arrays!');
410 if (is_object($value) and !method_exists($value, '__toString')) {
411 throw new coding_exception('Url parameters values can not be objects, unless __toString() is defined!');
414 $this->params[$key] = (string)$value;
416 return $this->params;
420 * Remove all params if no arguments passed.
421 * Remove selected params if arguments are passed.
423 * Can be called as either remove_params('param1', 'param2')
424 * or remove_params(array('param1', 'param2')).
426 * @param string[]|string $params,... either an array of param names, or 1..n string params to remove as args.
427 * @return array url parameters
429 public function remove_params($params = null) {
430 if (!is_array($params)) {
431 $params = func_get_args();
433 foreach ($params as $param) {
434 unset($this->params[$param]);
436 return $this->params;
440 * Remove all url parameters.
442 * @todo remove the unused param.
443 * @param array $params Unused param
444 * @return void
446 public function remove_all_params($params = null) {
447 $this->params = array();
448 $this->slashargument = '';
452 * Add a param to the params for this url.
454 * The added param overrides existing one if they have the same name.
456 * @param string $paramname name
457 * @param string $newvalue Param value. If new value specified current value is overriden or parameter is added
458 * @return mixed string parameter value, null if parameter does not exist
460 public function param($paramname, $newvalue = '') {
461 if (func_num_args() > 1) {
462 // Set new value.
463 $this->params(array($paramname => $newvalue));
465 if (isset($this->params[$paramname])) {
466 return $this->params[$paramname];
467 } else {
468 return null;
473 * Merges parameters and validates them
475 * @param array $overrideparams
476 * @return array merged parameters
477 * @throws coding_exception
479 protected function merge_overrideparams(array $overrideparams = null) {
480 $overrideparams = (array)$overrideparams;
481 $params = $this->params;
482 foreach ($overrideparams as $key => $value) {
483 if (is_int($key)) {
484 throw new coding_exception('Overridden parameters can not have numeric keys!');
486 if (is_array($value)) {
487 throw new coding_exception('Overridden parameters values can not be arrays!');
489 if (is_object($value) and !method_exists($value, '__toString')) {
490 throw new coding_exception('Overridden parameters values can not be objects, unless __toString() is defined!');
492 $params[$key] = (string)$value;
494 return $params;
498 * Get the params as as a query string.
500 * This method should not be used outside of this method.
502 * @param bool $escaped Use &amp; as params separator instead of plain &
503 * @param array $overrideparams params to add to the output params, these
504 * override existing ones with the same name.
505 * @return string query string that can be added to a url.
507 public function get_query_string($escaped = true, array $overrideparams = null) {
508 $arr = array();
509 if ($overrideparams !== null) {
510 $params = $this->merge_overrideparams($overrideparams);
511 } else {
512 $params = $this->params;
514 foreach ($params as $key => $val) {
515 if (is_array($val)) {
516 foreach ($val as $index => $value) {
517 $arr[] = rawurlencode($key.'['.$index.']')."=".rawurlencode($value);
519 } else {
520 if (isset($val) && $val !== '') {
521 $arr[] = rawurlencode($key)."=".rawurlencode($val);
522 } else {
523 $arr[] = rawurlencode($key);
527 if ($escaped) {
528 return implode('&amp;', $arr);
529 } else {
530 return implode('&', $arr);
535 * Shortcut for printing of encoded URL.
537 * @return string
539 public function __toString() {
540 return $this->out(true);
544 * Output url.
546 * If you use the returned URL in HTML code, you want the escaped ampersands. If you use
547 * the returned URL in HTTP headers, you want $escaped=false.
549 * @param bool $escaped Use &amp; as params separator instead of plain &
550 * @param array $overrideparams params to add to the output url, these override existing ones with the same name.
551 * @return string Resulting URL
553 public function out($escaped = true, array $overrideparams = null) {
555 global $CFG;
557 if (!is_bool($escaped)) {
558 debugging('Escape parameter must be of type boolean, '.gettype($escaped).' given instead.');
561 $url = $this;
563 // Allow url's to be rewritten by a plugin.
564 if (isset($CFG->urlrewriteclass) && !isset($CFG->upgraderunning)) {
565 $class = $CFG->urlrewriteclass;
566 $pluginurl = $class::url_rewrite($url);
567 if ($pluginurl instanceof moodle_url) {
568 $url = $pluginurl;
572 return $url->raw_out($escaped, $overrideparams);
577 * Output url without any rewrites
579 * This is identical in signature and use to out() but doesn't call the rewrite handler.
581 * @param bool $escaped Use &amp; as params separator instead of plain &
582 * @param array $overrideparams params to add to the output url, these override existing ones with the same name.
583 * @return string Resulting URL
585 public function raw_out($escaped = true, array $overrideparams = null) {
586 if (!is_bool($escaped)) {
587 debugging('Escape parameter must be of type boolean, '.gettype($escaped).' given instead.');
590 $uri = $this->out_omit_querystring().$this->slashargument;
592 $querystring = $this->get_query_string($escaped, $overrideparams);
593 if ($querystring !== '') {
594 $uri .= '?' . $querystring;
596 if (!is_null($this->anchor)) {
597 $uri .= '#'.$this->anchor;
600 return $uri;
604 * Returns url without parameters, everything before '?'.
606 * @param bool $includeanchor if {@link self::anchor} is defined, should it be returned?
607 * @return string
609 public function out_omit_querystring($includeanchor = false) {
611 $uri = $this->scheme ? $this->scheme.':'.((strtolower($this->scheme) == 'mailto') ? '':'//'): '';
612 $uri .= $this->user ? $this->user.($this->pass? ':'.$this->pass:'').'@':'';
613 $uri .= $this->host ? $this->host : '';
614 $uri .= $this->port ? ':'.$this->port : '';
615 $uri .= $this->path ? $this->path : '';
616 if ($includeanchor and !is_null($this->anchor)) {
617 $uri .= '#' . $this->anchor;
620 return $uri;
624 * Compares this moodle_url with another.
626 * See documentation of constants for an explanation of the comparison flags.
628 * @param moodle_url $url The moodle_url object to compare
629 * @param int $matchtype The type of comparison (URL_MATCH_BASE, URL_MATCH_PARAMS, URL_MATCH_EXACT)
630 * @return bool
632 public function compare(moodle_url $url, $matchtype = URL_MATCH_EXACT) {
634 $baseself = $this->out_omit_querystring();
635 $baseother = $url->out_omit_querystring();
637 // Append index.php if there is no specific file.
638 if (substr($baseself, -1) == '/') {
639 $baseself .= 'index.php';
641 if (substr($baseother, -1) == '/') {
642 $baseother .= 'index.php';
645 // Compare the two base URLs.
646 if ($baseself != $baseother) {
647 return false;
650 if ($matchtype == URL_MATCH_BASE) {
651 return true;
654 $urlparams = $url->params();
655 foreach ($this->params() as $param => $value) {
656 if ($param == 'sesskey') {
657 continue;
659 if (!array_key_exists($param, $urlparams) || $urlparams[$param] != $value) {
660 return false;
664 if ($matchtype == URL_MATCH_PARAMS) {
665 return true;
668 foreach ($urlparams as $param => $value) {
669 if ($param == 'sesskey') {
670 continue;
672 if (!array_key_exists($param, $this->params()) || $this->param($param) != $value) {
673 return false;
677 if ($url->anchor !== $this->anchor) {
678 return false;
681 return true;
685 * Sets the anchor for the URI (the bit after the hash)
687 * @param string $anchor null means remove previous
689 public function set_anchor($anchor) {
690 if (is_null($anchor)) {
691 // Remove.
692 $this->anchor = null;
693 } else if ($anchor === '') {
694 // Special case, used as empty link.
695 $this->anchor = '';
696 } else if (preg_match('|[a-zA-Z\_\:][a-zA-Z0-9\_\-\.\:]*|', $anchor)) {
697 // Match the anchor against the NMTOKEN spec.
698 $this->anchor = $anchor;
699 } else {
700 // Bad luck, no valid anchor found.
701 $this->anchor = null;
706 * Sets the scheme for the URI (the bit before ://)
708 * @param string $scheme
710 public function set_scheme($scheme) {
711 // See http://www.ietf.org/rfc/rfc3986.txt part 3.1.
712 if (preg_match('/^[a-zA-Z][a-zA-Z0-9+.-]*$/', $scheme)) {
713 $this->scheme = $scheme;
714 } else {
715 throw new coding_exception('Bad URL scheme.');
720 * Sets the url slashargument value.
722 * @param string $path usually file path
723 * @param string $parameter name of page parameter if slasharguments not supported
724 * @param bool $supported usually null, then it depends on $CFG->slasharguments, use true or false for other servers
725 * @return void
727 public function set_slashargument($path, $parameter = 'file', $supported = null) {
728 global $CFG;
729 if (is_null($supported)) {
730 $supported = !empty($CFG->slasharguments);
733 if ($supported) {
734 $parts = explode('/', $path);
735 $parts = array_map('rawurlencode', $parts);
736 $path = implode('/', $parts);
737 $this->slashargument = $path;
738 unset($this->params[$parameter]);
740 } else {
741 $this->slashargument = '';
742 $this->params[$parameter] = $path;
746 // Static factory methods.
749 * General moodle file url.
751 * @param string $urlbase the script serving the file
752 * @param string $path
753 * @param bool $forcedownload
754 * @return moodle_url
756 public static function make_file_url($urlbase, $path, $forcedownload = false) {
757 $params = array();
758 if ($forcedownload) {
759 $params['forcedownload'] = 1;
761 $url = new moodle_url($urlbase, $params);
762 $url->set_slashargument($path);
763 return $url;
767 * Factory method for creation of url pointing to plugin file.
769 * Please note this method can be used only from the plugins to
770 * create urls of own files, it must not be used outside of plugins!
772 * @param int $contextid
773 * @param string $component
774 * @param string $area
775 * @param int $itemid
776 * @param string $pathname
777 * @param string $filename
778 * @param bool $forcedownload
779 * @return moodle_url
781 public static function make_pluginfile_url($contextid, $component, $area, $itemid, $pathname, $filename,
782 $forcedownload = false) {
783 global $CFG;
784 $urlbase = "$CFG->httpswwwroot/pluginfile.php";
785 if ($itemid === null) {
786 return self::make_file_url($urlbase, "/$contextid/$component/$area".$pathname.$filename, $forcedownload);
787 } else {
788 return self::make_file_url($urlbase, "/$contextid/$component/$area/$itemid".$pathname.$filename, $forcedownload);
793 * Factory method for creation of url pointing to plugin file.
794 * This method is the same that make_pluginfile_url but pointing to the webservice pluginfile.php script.
795 * It should be used only in external functions.
797 * @since 2.8
798 * @param int $contextid
799 * @param string $component
800 * @param string $area
801 * @param int $itemid
802 * @param string $pathname
803 * @param string $filename
804 * @param bool $forcedownload
805 * @return moodle_url
807 public static function make_webservice_pluginfile_url($contextid, $component, $area, $itemid, $pathname, $filename,
808 $forcedownload = false) {
809 global $CFG;
810 $urlbase = "$CFG->httpswwwroot/webservice/pluginfile.php";
811 if ($itemid === null) {
812 return self::make_file_url($urlbase, "/$contextid/$component/$area".$pathname.$filename, $forcedownload);
813 } else {
814 return self::make_file_url($urlbase, "/$contextid/$component/$area/$itemid".$pathname.$filename, $forcedownload);
819 * Factory method for creation of url pointing to draft file of current user.
821 * @param int $draftid draft item id
822 * @param string $pathname
823 * @param string $filename
824 * @param bool $forcedownload
825 * @return moodle_url
827 public static function make_draftfile_url($draftid, $pathname, $filename, $forcedownload = false) {
828 global $CFG, $USER;
829 $urlbase = "$CFG->httpswwwroot/draftfile.php";
830 $context = context_user::instance($USER->id);
832 return self::make_file_url($urlbase, "/$context->id/user/draft/$draftid".$pathname.$filename, $forcedownload);
836 * Factory method for creating of links to legacy course files.
838 * @param int $courseid
839 * @param string $filepath
840 * @param bool $forcedownload
841 * @return moodle_url
843 public static function make_legacyfile_url($courseid, $filepath, $forcedownload = false) {
844 global $CFG;
846 $urlbase = "$CFG->wwwroot/file.php";
847 return self::make_file_url($urlbase, '/'.$courseid.'/'.$filepath, $forcedownload);
851 * Returns URL a relative path from $CFG->wwwroot
853 * Can be used for passing around urls with the wwwroot stripped
855 * @param boolean $escaped Use &amp; as params separator instead of plain &
856 * @param array $overrideparams params to add to the output url, these override existing ones with the same name.
857 * @return string Resulting URL
858 * @throws coding_exception if called on a non-local url
860 public function out_as_local_url($escaped = true, array $overrideparams = null) {
861 global $CFG;
863 $url = $this->out($escaped, $overrideparams);
864 $httpswwwroot = str_replace("http://", "https://", $CFG->wwwroot);
866 // Url should be equal to wwwroot or httpswwwroot. If not then throw exception.
867 if (($url === $CFG->wwwroot) || (strpos($url, $CFG->wwwroot.'/') === 0)) {
868 $localurl = substr($url, strlen($CFG->wwwroot));
869 return !empty($localurl) ? $localurl : '';
870 } else if (($url === $httpswwwroot) || (strpos($url, $httpswwwroot.'/') === 0)) {
871 $localurl = substr($url, strlen($httpswwwroot));
872 return !empty($localurl) ? $localurl : '';
873 } else {
874 throw new coding_exception('out_as_local_url called on a non-local URL');
879 * Returns the 'path' portion of a URL. For example, if the URL is
880 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
881 * return '/my/file/is/here.txt'.
883 * By default the path includes slash-arguments (for example,
884 * '/myfile.php/extra/arguments') so it is what you would expect from a
885 * URL path. If you don't want this behaviour, you can opt to exclude the
886 * slash arguments. (Be careful: if the $CFG variable slasharguments is
887 * disabled, these URLs will have a different format and you may need to
888 * look at the 'file' parameter too.)
890 * @param bool $includeslashargument If true, includes slash arguments
891 * @return string Path of URL
893 public function get_path($includeslashargument = true) {
894 return $this->path . ($includeslashargument ? $this->slashargument : '');
898 * Returns a given parameter value from the URL.
900 * @param string $name Name of parameter
901 * @return string Value of parameter or null if not set
903 public function get_param($name) {
904 if (array_key_exists($name, $this->params)) {
905 return $this->params[$name];
906 } else {
907 return null;
912 * Returns the 'scheme' portion of a URL. For example, if the URL is
913 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
914 * return 'http' (without the colon).
916 * @return string Scheme of the URL.
918 public function get_scheme() {
919 return $this->scheme;
923 * Returns the 'host' portion of a URL. For example, if the URL is
924 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
925 * return 'www.example.org'.
927 * @return string Host of the URL.
929 public function get_host() {
930 return $this->host;
934 * Returns the 'port' portion of a URL. For example, if the URL is
935 * http://www.example.org:447/my/file/is/here.txt?really=1 then this will
936 * return '447'.
938 * @return string Port of the URL.
940 public function get_port() {
941 return $this->port;
946 * Determine if there is data waiting to be processed from a form
948 * Used on most forms in Moodle to check for data
949 * Returns the data as an object, if it's found.
950 * This object can be used in foreach loops without
951 * casting because it's cast to (array) automatically
953 * Checks that submitted POST data exists and returns it as object.
955 * @return mixed false or object
957 function data_submitted() {
959 if (empty($_POST)) {
960 return false;
961 } else {
962 return (object)fix_utf8($_POST);
967 * Given some normal text this function will break up any
968 * long words to a given size by inserting the given character
970 * It's multibyte savvy and doesn't change anything inside html tags.
972 * @param string $string the string to be modified
973 * @param int $maxsize maximum length of the string to be returned
974 * @param string $cutchar the string used to represent word breaks
975 * @return string
977 function break_up_long_words($string, $maxsize=20, $cutchar=' ') {
979 // First of all, save all the tags inside the text to skip them.
980 $tags = array();
981 filter_save_tags($string, $tags);
983 // Process the string adding the cut when necessary.
984 $output = '';
985 $length = core_text::strlen($string);
986 $wordlength = 0;
988 for ($i=0; $i<$length; $i++) {
989 $char = core_text::substr($string, $i, 1);
990 if ($char == ' ' or $char == "\t" or $char == "\n" or $char == "\r" or $char == "<" or $char == ">") {
991 $wordlength = 0;
992 } else {
993 $wordlength++;
994 if ($wordlength > $maxsize) {
995 $output .= $cutchar;
996 $wordlength = 0;
999 $output .= $char;
1002 // Finally load the tags back again.
1003 if (!empty($tags)) {
1004 $output = str_replace(array_keys($tags), $tags, $output);
1007 return $output;
1011 * Try and close the current window using JavaScript, either immediately, or after a delay.
1013 * Echo's out the resulting XHTML & javascript
1015 * @param integer $delay a delay in seconds before closing the window. Default 0.
1016 * @param boolean $reloadopener if true, we will see if this window was a pop-up, and try
1017 * to reload the parent window before this one closes.
1019 function close_window($delay = 0, $reloadopener = false) {
1020 global $PAGE, $OUTPUT;
1022 if (!$PAGE->headerprinted) {
1023 $PAGE->set_title(get_string('closewindow'));
1024 echo $OUTPUT->header();
1025 } else {
1026 $OUTPUT->container_end_all(false);
1029 if ($reloadopener) {
1030 // Trigger the reload immediately, even if the reload is after a delay.
1031 $PAGE->requires->js_function_call('window.opener.location.reload', array(true));
1033 $OUTPUT->notification(get_string('windowclosing'), 'notifysuccess');
1035 $PAGE->requires->js_function_call('close_window', array(new stdClass()), false, $delay);
1037 echo $OUTPUT->footer();
1038 exit;
1042 * Returns a string containing a link to the user documentation for the current page.
1044 * Also contains an icon by default. Shown to teachers and admin only.
1046 * @param string $text The text to be displayed for the link
1047 * @return string The link to user documentation for this current page
1049 function page_doc_link($text='') {
1050 global $OUTPUT, $PAGE;
1051 $path = page_get_doc_link_path($PAGE);
1052 if (!$path) {
1053 return '';
1055 return $OUTPUT->doc_link($path, $text);
1059 * Returns the path to use when constructing a link to the docs.
1061 * @since Moodle 2.5.1 2.6
1062 * @param moodle_page $page
1063 * @return string
1065 function page_get_doc_link_path(moodle_page $page) {
1066 global $CFG;
1068 if (empty($CFG->docroot) || during_initial_install()) {
1069 return '';
1071 if (!has_capability('moodle/site:doclinks', $page->context)) {
1072 return '';
1075 $path = $page->docspath;
1076 if (!$path) {
1077 return '';
1079 return $path;
1084 * Validates an email to make sure it makes sense.
1086 * @param string $address The email address to validate.
1087 * @return boolean
1089 function validate_email($address) {
1091 return (preg_match('#^[-!\#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+'.
1092 '(\.[-!\#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+)*'.
1093 '@'.
1094 '[-!\#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'.
1095 '[-!\#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$#',
1096 $address));
1100 * Extracts file argument either from file parameter or PATH_INFO
1102 * Note: $scriptname parameter is not needed anymore
1104 * @return string file path (only safe characters)
1106 function get_file_argument() {
1107 global $SCRIPT;
1109 $relativepath = optional_param('file', false, PARAM_PATH);
1111 if ($relativepath !== false and $relativepath !== '') {
1112 return $relativepath;
1114 $relativepath = false;
1116 // Then try extract file from the slasharguments.
1117 if (stripos($_SERVER['SERVER_SOFTWARE'], 'iis') !== false) {
1118 // NOTE: IIS tends to convert all file paths to single byte DOS encoding,
1119 // we can not use other methods because they break unicode chars,
1120 // the only ways are to use URL rewriting
1121 // OR
1122 // to properly set the 'FastCGIUtf8ServerVariables' registry key.
1123 if (isset($_SERVER['PATH_INFO']) and $_SERVER['PATH_INFO'] !== '') {
1124 // Check that PATH_INFO works == must not contain the script name.
1125 if (strpos($_SERVER['PATH_INFO'], $SCRIPT) === false) {
1126 $relativepath = clean_param(urldecode($_SERVER['PATH_INFO']), PARAM_PATH);
1129 } else {
1130 // All other apache-like servers depend on PATH_INFO.
1131 if (isset($_SERVER['PATH_INFO'])) {
1132 if (isset($_SERVER['SCRIPT_NAME']) and strpos($_SERVER['PATH_INFO'], $_SERVER['SCRIPT_NAME']) === 0) {
1133 $relativepath = substr($_SERVER['PATH_INFO'], strlen($_SERVER['SCRIPT_NAME']));
1134 } else {
1135 $relativepath = $_SERVER['PATH_INFO'];
1137 $relativepath = clean_param($relativepath, PARAM_PATH);
1141 return $relativepath;
1145 * Just returns an array of text formats suitable for a popup menu
1147 * @return array
1149 function format_text_menu() {
1150 return array (FORMAT_MOODLE => get_string('formattext'),
1151 FORMAT_HTML => get_string('formathtml'),
1152 FORMAT_PLAIN => get_string('formatplain'),
1153 FORMAT_MARKDOWN => get_string('formatmarkdown'));
1157 * Given text in a variety of format codings, this function returns the text as safe HTML.
1159 * This function should mainly be used for long strings like posts,
1160 * answers, glossary items etc. For short strings {@link format_string()}.
1162 * <pre>
1163 * Options:
1164 * trusted : If true the string won't be cleaned. Default false required noclean=true.
1165 * noclean : If true the string won't be cleaned. Default false required trusted=true.
1166 * nocache : If true the strign will not be cached and will be formatted every call. Default false.
1167 * filter : If true the string will be run through applicable filters as well. Default true.
1168 * para : If true then the returned string will be wrapped in div tags. Default true.
1169 * newlines : If true then lines newline breaks will be converted to HTML newline breaks. Default true.
1170 * context : The context that will be used for filtering.
1171 * overflowdiv : If set to true the formatted text will be encased in a div
1172 * with the class no-overflow before being returned. Default false.
1173 * allowid : If true then id attributes will not be removed, even when
1174 * using htmlpurifier. Default false.
1175 * blanktarget : If true all <a> tags will have target="_blank" added unless target is explicitly specified.
1176 * </pre>
1178 * @staticvar array $croncache
1179 * @param string $text The text to be formatted. This is raw text originally from user input.
1180 * @param int $format Identifier of the text format to be used
1181 * [FORMAT_MOODLE, FORMAT_HTML, FORMAT_PLAIN, FORMAT_MARKDOWN]
1182 * @param object/array $options text formatting options
1183 * @param int $courseiddonotuse deprecated course id, use context option instead
1184 * @return string
1186 function format_text($text, $format = FORMAT_MOODLE, $options = null, $courseiddonotuse = null) {
1187 global $CFG, $DB, $PAGE;
1189 if ($text === '' || is_null($text)) {
1190 // No need to do any filters and cleaning.
1191 return '';
1194 // Detach object, we can not modify it.
1195 $options = (array)$options;
1197 if (!isset($options['trusted'])) {
1198 $options['trusted'] = false;
1200 if (!isset($options['noclean'])) {
1201 if ($options['trusted'] and trusttext_active()) {
1202 // No cleaning if text trusted and noclean not specified.
1203 $options['noclean'] = true;
1204 } else {
1205 $options['noclean'] = false;
1208 if (!isset($options['nocache'])) {
1209 $options['nocache'] = false;
1211 if (!isset($options['filter'])) {
1212 $options['filter'] = true;
1214 if (!isset($options['para'])) {
1215 $options['para'] = true;
1217 if (!isset($options['newlines'])) {
1218 $options['newlines'] = true;
1220 if (!isset($options['overflowdiv'])) {
1221 $options['overflowdiv'] = false;
1223 $options['blanktarget'] = !empty($options['blanktarget']);
1225 // Calculate best context.
1226 if (empty($CFG->version) or $CFG->version < 2013051400 or during_initial_install()) {
1227 // Do not filter anything during installation or before upgrade completes.
1228 $context = null;
1230 } else if (isset($options['context'])) { // First by explicit passed context option.
1231 if (is_object($options['context'])) {
1232 $context = $options['context'];
1233 } else {
1234 $context = context::instance_by_id($options['context']);
1236 } else if ($courseiddonotuse) {
1237 // Legacy courseid.
1238 $context = context_course::instance($courseiddonotuse);
1239 } else {
1240 // Fallback to $PAGE->context this may be problematic in CLI and other non-standard pages :-(.
1241 $context = $PAGE->context;
1244 if (!$context) {
1245 // Either install/upgrade or something has gone really wrong because context does not exist (yet?).
1246 $options['nocache'] = true;
1247 $options['filter'] = false;
1250 if ($options['filter']) {
1251 $filtermanager = filter_manager::instance();
1252 $filtermanager->setup_page_for_filters($PAGE, $context); // Setup global stuff filters may have.
1253 $filteroptions = array(
1254 'originalformat' => $format,
1255 'noclean' => $options['noclean'],
1257 } else {
1258 $filtermanager = new null_filter_manager();
1259 $filteroptions = array();
1262 switch ($format) {
1263 case FORMAT_HTML:
1264 if (!$options['noclean']) {
1265 $text = clean_text($text, FORMAT_HTML, $options);
1267 $text = $filtermanager->filter_text($text, $context, $filteroptions);
1268 break;
1270 case FORMAT_PLAIN:
1271 $text = s($text); // Cleans dangerous JS.
1272 $text = rebuildnolinktag($text);
1273 $text = str_replace(' ', '&nbsp; ', $text);
1274 $text = nl2br($text);
1275 break;
1277 case FORMAT_WIKI:
1278 // This format is deprecated.
1279 $text = '<p>NOTICE: Wiki-like formatting has been removed from Moodle. You should not be seeing
1280 this message as all texts should have been converted to Markdown format instead.
1281 Please post a bug report to http://moodle.org/bugs with information about where you
1282 saw this message.</p>'.s($text);
1283 break;
1285 case FORMAT_MARKDOWN:
1286 $text = markdown_to_html($text);
1287 if (!$options['noclean']) {
1288 $text = clean_text($text, FORMAT_HTML, $options);
1290 $text = $filtermanager->filter_text($text, $context, $filteroptions);
1291 break;
1293 default: // FORMAT_MOODLE or anything else.
1294 $text = text_to_html($text, null, $options['para'], $options['newlines']);
1295 if (!$options['noclean']) {
1296 $text = clean_text($text, FORMAT_HTML, $options);
1298 $text = $filtermanager->filter_text($text, $context, $filteroptions);
1299 break;
1301 if ($options['filter']) {
1302 // At this point there should not be any draftfile links any more,
1303 // this happens when developers forget to post process the text.
1304 // The only potential problem is that somebody might try to format
1305 // the text before storing into database which would be itself big bug..
1306 $text = str_replace("\"$CFG->httpswwwroot/draftfile.php", "\"$CFG->httpswwwroot/brokenfile.php#", $text);
1308 if ($CFG->debugdeveloper) {
1309 if (strpos($text, '@@PLUGINFILE@@/') !== false) {
1310 debugging('Before calling format_text(), the content must be processed with file_rewrite_pluginfile_urls()',
1311 DEBUG_DEVELOPER);
1316 if (!empty($options['overflowdiv'])) {
1317 $text = html_writer::tag('div', $text, array('class' => 'no-overflow'));
1320 if ($options['blanktarget']) {
1321 $domdoc = new DOMDocument();
1322 $domdoc->loadHTML('<?xml version="1.0" encoding="UTF-8" ?>' . $text);
1323 foreach ($domdoc->getElementsByTagName('a') as $link) {
1324 if ($link->hasAttribute('target') && strpos($link->getAttribute('target'), '_blank') === false) {
1325 continue;
1327 $link->setAttribute('target', '_blank');
1328 if (strpos($link->getAttribute('rel'), 'noreferrer') === false) {
1329 $link->setAttribute('rel', trim($link->getAttribute('rel') . ' noreferrer'));
1333 // This regex is nasty and I don't like it. The correct way to solve this is by loading the HTML like so:
1334 // $domdoc->loadHTML($text, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); however it seems like the libxml
1335 // version that travis uses doesn't work properly and ends up leaving <html><body>, so I'm forced to use
1336 // this regex to remove those tags.
1337 $text = trim(preg_replace('~<(?:!DOCTYPE|/?(?:html|body))[^>]*>\s*~i', '', $domdoc->saveHTML($domdoc->documentElement)));
1340 return $text;
1344 * Resets some data related to filters, called during upgrade or when general filter settings change.
1346 * @param bool $phpunitreset true means called from our PHPUnit integration test reset
1347 * @return void
1349 function reset_text_filters_cache($phpunitreset = false) {
1350 global $CFG, $DB;
1352 if ($phpunitreset) {
1353 // HTMLPurifier does not change, DB is already reset to defaults,
1354 // nothing to do here, the dataroot was cleared too.
1355 return;
1358 // The purge_all_caches() deals with cachedir and localcachedir purging,
1359 // the individual filter caches are invalidated as necessary elsewhere.
1361 // Update $CFG->filterall cache flag.
1362 if (empty($CFG->stringfilters)) {
1363 set_config('filterall', 0);
1364 return;
1366 $installedfilters = core_component::get_plugin_list('filter');
1367 $filters = explode(',', $CFG->stringfilters);
1368 foreach ($filters as $filter) {
1369 if (isset($installedfilters[$filter])) {
1370 set_config('filterall', 1);
1371 return;
1374 set_config('filterall', 0);
1378 * Given a simple string, this function returns the string
1379 * processed by enabled string filters if $CFG->filterall is enabled
1381 * This function should be used to print short strings (non html) that
1382 * need filter processing e.g. activity titles, post subjects,
1383 * glossary concepts.
1385 * @staticvar bool $strcache
1386 * @param string $string The string to be filtered. Should be plain text, expect
1387 * possibly for multilang tags.
1388 * @param boolean $striplinks To strip any link in the result text. Moodle 1.8 default changed from false to true! MDL-8713
1389 * @param array $options options array/object or courseid
1390 * @return string
1392 function format_string($string, $striplinks = true, $options = null) {
1393 global $CFG, $PAGE;
1395 // We'll use a in-memory cache here to speed up repeated strings.
1396 static $strcache = false;
1398 if (empty($CFG->version) or $CFG->version < 2013051400 or during_initial_install()) {
1399 // Do not filter anything during installation or before upgrade completes.
1400 return $string = strip_tags($string);
1403 if ($strcache === false or count($strcache) > 2000) {
1404 // This number might need some tuning to limit memory usage in cron.
1405 $strcache = array();
1408 if (is_numeric($options)) {
1409 // Legacy courseid usage.
1410 $options = array('context' => context_course::instance($options));
1411 } else {
1412 // Detach object, we can not modify it.
1413 $options = (array)$options;
1416 if (empty($options['context'])) {
1417 // Fallback to $PAGE->context this may be problematic in CLI and other non-standard pages :-(.
1418 $options['context'] = $PAGE->context;
1419 } else if (is_numeric($options['context'])) {
1420 $options['context'] = context::instance_by_id($options['context']);
1422 if (!isset($options['filter'])) {
1423 $options['filter'] = true;
1426 $options['escape'] = !isset($options['escape']) || $options['escape'];
1428 if (!$options['context']) {
1429 // We did not find any context? weird.
1430 return $string = strip_tags($string);
1433 // Calculate md5.
1434 $md5 = md5($string.'<+>'.$striplinks.'<+>'.$options['context']->id.'<+>'.$options['escape'].'<+>'.current_language());
1436 // Fetch from cache if possible.
1437 if (isset($strcache[$md5])) {
1438 return $strcache[$md5];
1441 // First replace all ampersands not followed by html entity code
1442 // Regular expression moved to its own method for easier unit testing.
1443 $string = $options['escape'] ? replace_ampersands_not_followed_by_entity($string) : $string;
1445 if (!empty($CFG->filterall) && $options['filter']) {
1446 $filtermanager = filter_manager::instance();
1447 $filtermanager->setup_page_for_filters($PAGE, $options['context']); // Setup global stuff filters may have.
1448 $string = $filtermanager->filter_string($string, $options['context']);
1451 // If the site requires it, strip ALL tags from this string.
1452 if (!empty($CFG->formatstringstriptags)) {
1453 if ($options['escape']) {
1454 $string = str_replace(array('<', '>'), array('&lt;', '&gt;'), strip_tags($string));
1455 } else {
1456 $string = strip_tags($string);
1458 } else {
1459 // Otherwise strip just links if that is required (default).
1460 if ($striplinks) {
1461 // Strip links in string.
1462 $string = strip_links($string);
1464 $string = clean_text($string);
1467 // Store to cache.
1468 $strcache[$md5] = $string;
1470 return $string;
1474 * Given a string, performs a negative lookahead looking for any ampersand character
1475 * that is not followed by a proper HTML entity. If any is found, it is replaced
1476 * by &amp;. The string is then returned.
1478 * @param string $string
1479 * @return string
1481 function replace_ampersands_not_followed_by_entity($string) {
1482 return preg_replace("/\&(?![a-zA-Z0-9#]{1,8};)/", "&amp;", $string);
1486 * Given a string, replaces all <a>.*</a> by .* and returns the string.
1488 * @param string $string
1489 * @return string
1491 function strip_links($string) {
1492 return preg_replace('/(<a\s[^>]+?>)(.+?)(<\/a>)/is', '$2', $string);
1496 * This expression turns links into something nice in a text format. (Russell Jungwirth)
1498 * @param string $string
1499 * @return string
1501 function wikify_links($string) {
1502 return preg_replace('~(<a [^<]*href=["|\']?([^ "\']*)["|\']?[^>]*>([^<]*)</a>)~i', '$3 [ $2 ]', $string);
1506 * Given text in a variety of format codings, this function returns the text as plain text suitable for plain email.
1508 * @param string $text The text to be formatted. This is raw text originally from user input.
1509 * @param int $format Identifier of the text format to be used
1510 * [FORMAT_MOODLE, FORMAT_HTML, FORMAT_PLAIN, FORMAT_WIKI, FORMAT_MARKDOWN]
1511 * @return string
1513 function format_text_email($text, $format) {
1515 switch ($format) {
1517 case FORMAT_PLAIN:
1518 return $text;
1519 break;
1521 case FORMAT_WIKI:
1522 // There should not be any of these any more!
1523 $text = wikify_links($text);
1524 return core_text::entities_to_utf8(strip_tags($text), true);
1525 break;
1527 case FORMAT_HTML:
1528 return html_to_text($text);
1529 break;
1531 case FORMAT_MOODLE:
1532 case FORMAT_MARKDOWN:
1533 default:
1534 $text = wikify_links($text);
1535 return core_text::entities_to_utf8(strip_tags($text), true);
1536 break;
1541 * Formats activity intro text
1543 * @param string $module name of module
1544 * @param object $activity instance of activity
1545 * @param int $cmid course module id
1546 * @param bool $filter filter resulting html text
1547 * @return string
1549 function format_module_intro($module, $activity, $cmid, $filter=true) {
1550 global $CFG;
1551 require_once("$CFG->libdir/filelib.php");
1552 $context = context_module::instance($cmid);
1553 $options = array('noclean' => true, 'para' => false, 'filter' => $filter, 'context' => $context, 'overflowdiv' => true);
1554 $intro = file_rewrite_pluginfile_urls($activity->intro, 'pluginfile.php', $context->id, 'mod_'.$module, 'intro', null);
1555 return trim(format_text($intro, $activity->introformat, $options, null));
1559 * Removes the usage of Moodle files from a text.
1561 * In some rare cases we need to re-use a text that already has embedded links
1562 * to some files hosted within Moodle. But the new area in which we will push
1563 * this content does not support files... therefore we need to remove those files.
1565 * @param string $source The text
1566 * @return string The stripped text
1568 function strip_pluginfile_content($source) {
1569 $baseurl = '@@PLUGINFILE@@';
1570 // Looking for something like < .* "@@pluginfile@@.*" .* >
1571 $pattern = '$<[^<>]+["\']' . $baseurl . '[^"\']*["\'][^<>]*>$';
1572 $stripped = preg_replace($pattern, '', $source);
1573 // Use purify html to rebalence potentially mismatched tags and generally cleanup.
1574 return purify_html($stripped);
1578 * Legacy function, used for cleaning of old forum and glossary text only.
1580 * @param string $text text that may contain legacy TRUSTTEXT marker
1581 * @return string text without legacy TRUSTTEXT marker
1583 function trusttext_strip($text) {
1584 if (!is_string($text)) {
1585 // This avoids the potential for an endless loop below.
1586 throw new coding_exception('trusttext_strip parameter must be a string');
1588 while (true) { // Removing nested TRUSTTEXT.
1589 $orig = $text;
1590 $text = str_replace('#####TRUSTTEXT#####', '', $text);
1591 if (strcmp($orig, $text) === 0) {
1592 return $text;
1598 * Must be called before editing of all texts with trust flag. Removes all XSS nasties from texts stored in database if needed.
1600 * @param stdClass $object data object with xxx, xxxformat and xxxtrust fields
1601 * @param string $field name of text field
1602 * @param context $context active context
1603 * @return stdClass updated $object
1605 function trusttext_pre_edit($object, $field, $context) {
1606 $trustfield = $field.'trust';
1607 $formatfield = $field.'format';
1609 if (!$object->$trustfield or !trusttext_trusted($context)) {
1610 $object->$field = clean_text($object->$field, $object->$formatfield);
1613 return $object;
1617 * Is current user trusted to enter no dangerous XSS in this context?
1619 * Please note the user must be in fact trusted everywhere on this server!!
1621 * @param context $context
1622 * @return bool true if user trusted
1624 function trusttext_trusted($context) {
1625 return (trusttext_active() and has_capability('moodle/site:trustcontent', $context));
1629 * Is trusttext feature active?
1631 * @return bool
1633 function trusttext_active() {
1634 global $CFG;
1636 return !empty($CFG->enabletrusttext);
1640 * Cleans raw text removing nasties.
1642 * Given raw text (eg typed in by a user) this function cleans it up and removes any nasty tags that could mess up
1643 * Moodle pages through XSS attacks.
1645 * The result must be used as a HTML text fragment, this function can not cleanup random
1646 * parts of html tags such as url or src attributes.
1648 * NOTE: the format parameter was deprecated because we can safely clean only HTML.
1650 * @param string $text The text to be cleaned
1651 * @param int|string $format deprecated parameter, should always contain FORMAT_HTML or FORMAT_MOODLE
1652 * @param array $options Array of options; currently only option supported is 'allowid' (if true,
1653 * does not remove id attributes when cleaning)
1654 * @return string The cleaned up text
1656 function clean_text($text, $format = FORMAT_HTML, $options = array()) {
1657 $text = (string)$text;
1659 if ($format != FORMAT_HTML and $format != FORMAT_HTML) {
1660 // TODO: we need to standardise cleanup of text when loading it into editor first.
1661 // debugging('clean_text() is designed to work only with html');.
1664 if ($format == FORMAT_PLAIN) {
1665 return $text;
1668 if (is_purify_html_necessary($text)) {
1669 $text = purify_html($text, $options);
1672 // Originally we tried to neutralise some script events here, it was a wrong approach because
1673 // it was trivial to work around that (for example using style based XSS exploits).
1674 // We must not give false sense of security here - all developers MUST understand how to use
1675 // rawurlencode(), htmlentities(), htmlspecialchars(), p(), s(), moodle_url, html_writer and friends!!!
1677 return $text;
1681 * Is it necessary to use HTMLPurifier?
1683 * @private
1684 * @param string $text
1685 * @return bool false means html is safe and valid, true means use HTMLPurifier
1687 function is_purify_html_necessary($text) {
1688 if ($text === '') {
1689 return false;
1692 if ($text === (string)((int)$text)) {
1693 return false;
1696 if (strpos($text, '&') !== false or preg_match('|<[^pesb/]|', $text)) {
1697 // We need to normalise entities or other tags except p, em, strong and br present.
1698 return true;
1701 $altered = htmlspecialchars($text, ENT_NOQUOTES, 'UTF-8', true);
1702 if ($altered === $text) {
1703 // No < > or other special chars means this must be safe.
1704 return false;
1707 // Let's try to convert back some safe html tags.
1708 $altered = preg_replace('|&lt;p&gt;(.*?)&lt;/p&gt;|m', '<p>$1</p>', $altered);
1709 if ($altered === $text) {
1710 return false;
1712 $altered = preg_replace('|&lt;em&gt;([^<>]+?)&lt;/em&gt;|m', '<em>$1</em>', $altered);
1713 if ($altered === $text) {
1714 return false;
1716 $altered = preg_replace('|&lt;strong&gt;([^<>]+?)&lt;/strong&gt;|m', '<strong>$1</strong>', $altered);
1717 if ($altered === $text) {
1718 return false;
1720 $altered = str_replace('&lt;br /&gt;', '<br />', $altered);
1721 if ($altered === $text) {
1722 return false;
1725 return true;
1729 * KSES replacement cleaning function - uses HTML Purifier.
1731 * @param string $text The (X)HTML string to purify
1732 * @param array $options Array of options; currently only option supported is 'allowid' (if set,
1733 * does not remove id attributes when cleaning)
1734 * @return string
1736 function purify_html($text, $options = array()) {
1737 global $CFG;
1739 $text = (string)$text;
1741 static $purifiers = array();
1742 static $caches = array();
1744 // Purifier code can change only during major version upgrade.
1745 $version = empty($CFG->version) ? 0 : $CFG->version;
1746 $cachedir = "$CFG->localcachedir/htmlpurifier/$version";
1747 if (!file_exists($cachedir)) {
1748 // Purging of caches may remove the cache dir at any time,
1749 // luckily file_exists() results should be cached for all existing directories.
1750 $purifiers = array();
1751 $caches = array();
1752 gc_collect_cycles();
1754 make_localcache_directory('htmlpurifier', false);
1755 check_dir_exists($cachedir);
1758 $allowid = empty($options['allowid']) ? 0 : 1;
1759 $allowobjectembed = empty($CFG->allowobjectembed) ? 0 : 1;
1761 $type = 'type_'.$allowid.'_'.$allowobjectembed;
1763 if (!array_key_exists($type, $caches)) {
1764 $caches[$type] = cache::make('core', 'htmlpurifier', array('type' => $type));
1766 $cache = $caches[$type];
1768 // Add revision number and all options to the text key so that it is compatible with local cluster node caches.
1769 $key = "|$version|$allowobjectembed|$allowid|$text";
1770 $filteredtext = $cache->get($key);
1772 if ($filteredtext === true) {
1773 // The filtering did not change the text last time, no need to filter anything again.
1774 return $text;
1775 } else if ($filteredtext !== false) {
1776 return $filteredtext;
1779 if (empty($purifiers[$type])) {
1780 require_once $CFG->libdir.'/htmlpurifier/HTMLPurifier.safe-includes.php';
1781 require_once $CFG->libdir.'/htmlpurifier/locallib.php';
1782 $config = HTMLPurifier_Config::createDefault();
1784 $config->set('HTML.DefinitionID', 'moodlehtml');
1785 $config->set('HTML.DefinitionRev', 5);
1786 $config->set('Cache.SerializerPath', $cachedir);
1787 $config->set('Cache.SerializerPermissions', $CFG->directorypermissions);
1788 $config->set('Core.NormalizeNewlines', false);
1789 $config->set('Core.ConvertDocumentToFragment', true);
1790 $config->set('Core.Encoding', 'UTF-8');
1791 $config->set('HTML.Doctype', 'XHTML 1.0 Transitional');
1792 $config->set('URI.AllowedSchemes', array(
1793 'http' => true,
1794 'https' => true,
1795 'ftp' => true,
1796 'irc' => true,
1797 'nntp' => true,
1798 'news' => true,
1799 'rtsp' => true,
1800 'rtmp' => true,
1801 'teamspeak' => true,
1802 'gopher' => true,
1803 'mms' => true,
1804 'mailto' => true
1806 $config->set('Attr.AllowedFrameTargets', array('_blank'));
1808 if ($allowobjectembed) {
1809 $config->set('HTML.SafeObject', true);
1810 $config->set('Output.FlashCompat', true);
1811 $config->set('HTML.SafeEmbed', true);
1814 if ($allowid) {
1815 $config->set('Attr.EnableID', true);
1818 if ($def = $config->maybeGetRawHTMLDefinition()) {
1819 $def->addElement('nolink', 'Block', 'Flow', array()); // Skip our filters inside.
1820 $def->addElement('tex', 'Inline', 'Inline', array()); // Tex syntax, equivalent to $$xx$$.
1821 $def->addElement('algebra', 'Inline', 'Inline', array()); // Algebra syntax, equivalent to @@xx@@.
1822 $def->addElement('lang', 'Block', 'Flow', array(), array('lang'=>'CDATA')); // Original multilang style - only our hacked lang attribute.
1823 $def->addAttribute('span', 'xxxlang', 'CDATA'); // Current very problematic multilang.
1825 // Media elements.
1826 // https://html.spec.whatwg.org/#the-video-element
1827 $def->addElement('video', 'Block', 'Optional: #PCDATA | Flow | source | track', 'Common', [
1828 'src' => 'URI',
1829 'crossorigin' => 'Enum#anonymous,use-credentials',
1830 'poster' => 'URI',
1831 'preload' => 'Enum#auto,metadata,none',
1832 'autoplay' => 'Bool',
1833 'playsinline' => 'Bool',
1834 'loop' => 'Bool',
1835 'muted' => 'Bool',
1836 'controls' => 'Bool',
1837 'width' => 'Length',
1838 'height' => 'Length',
1840 // https://html.spec.whatwg.org/#the-audio-element
1841 $def->addElement('audio', 'Block', 'Optional: #PCDATA | Flow | source | track', 'Common', [
1842 'src' => 'URI',
1843 'crossorigin' => 'Enum#anonymous,use-credentials',
1844 'preload' => 'Enum#auto,metadata,none',
1845 'autoplay' => 'Bool',
1846 'loop' => 'Bool',
1847 'muted' => 'Bool',
1848 'controls' => 'Bool'
1850 // https://html.spec.whatwg.org/#the-source-element
1851 $def->addElement('source', false, 'Empty', null, [
1852 'src' => 'URI',
1853 'type' => 'Text'
1855 // https://html.spec.whatwg.org/#the-track-element
1856 $def->addElement('track', false, 'Empty', null, [
1857 'src' => 'URI',
1858 'kind' => 'Enum#subtitles,captions,descriptions,chapters,metadata',
1859 'srclang' => 'Text',
1860 'label' => 'Text',
1861 'default' => 'Bool',
1864 // Use the built-in Ruby module to add annotation support.
1865 $def->manager->addModule(new HTMLPurifier_HTMLModule_Ruby());
1867 // Use the custom Noreferrer module.
1868 $def->manager->addModule(new HTMLPurifier_HTMLModule_Noreferrer());
1871 $purifier = new HTMLPurifier($config);
1872 $purifiers[$type] = $purifier;
1873 } else {
1874 $purifier = $purifiers[$type];
1877 $multilang = (strpos($text, 'class="multilang"') !== false);
1879 $filteredtext = $text;
1880 if ($multilang) {
1881 $filteredtextregex = '/<span(\s+lang="([a-zA-Z0-9_-]+)"|\s+class="multilang"){2}\s*>/';
1882 $filteredtext = preg_replace($filteredtextregex, '<span xxxlang="${2}">', $filteredtext);
1884 $filteredtext = (string)$purifier->purify($filteredtext);
1885 if ($multilang) {
1886 $filteredtext = preg_replace('/<span xxxlang="([a-zA-Z0-9_-]+)">/', '<span lang="${1}" class="multilang">', $filteredtext);
1889 if ($text === $filteredtext) {
1890 // No need to store the filtered text, next time we will just return unfiltered text
1891 // because it was not changed by purifying.
1892 $cache->set($key, true);
1893 } else {
1894 $cache->set($key, $filteredtext);
1897 return $filteredtext;
1901 * Given plain text, makes it into HTML as nicely as possible.
1903 * May contain HTML tags already.
1905 * Do not abuse this function. It is intended as lower level formatting feature used
1906 * by {@link format_text()} to convert FORMAT_MOODLE to HTML. You are supposed
1907 * to call format_text() in most of cases.
1909 * @param string $text The string to convert.
1910 * @param boolean $smileyignored Was used to determine if smiley characters should convert to smiley images, ignored now
1911 * @param boolean $para If true then the returned string will be wrapped in div tags
1912 * @param boolean $newlines If true then lines newline breaks will be converted to HTML newline breaks.
1913 * @return string
1915 function text_to_html($text, $smileyignored = null, $para = true, $newlines = true) {
1916 // Remove any whitespace that may be between HTML tags.
1917 $text = preg_replace("~>([[:space:]]+)<~i", "><", $text);
1919 // Remove any returns that precede or follow HTML tags.
1920 $text = preg_replace("~([\n\r])<~i", " <", $text);
1921 $text = preg_replace("~>([\n\r])~i", "> ", $text);
1923 // Make returns into HTML newlines.
1924 if ($newlines) {
1925 $text = nl2br($text);
1928 // Wrap the whole thing in a div if required.
1929 if ($para) {
1930 // In 1.9 this was changed from a p => div.
1931 return '<div class="text_to_html">'.$text.'</div>';
1932 } else {
1933 return $text;
1938 * Given Markdown formatted text, make it into XHTML using external function
1940 * @param string $text The markdown formatted text to be converted.
1941 * @return string Converted text
1943 function markdown_to_html($text) {
1944 global $CFG;
1946 if ($text === '' or $text === null) {
1947 return $text;
1950 require_once($CFG->libdir .'/markdown/MarkdownInterface.php');
1951 require_once($CFG->libdir .'/markdown/Markdown.php');
1952 require_once($CFG->libdir .'/markdown/MarkdownExtra.php');
1954 return \Michelf\MarkdownExtra::defaultTransform($text);
1958 * Given HTML text, make it into plain text using external function
1960 * @param string $html The text to be converted.
1961 * @param integer $width Width to wrap the text at. (optional, default 75 which
1962 * is a good value for email. 0 means do not limit line length.)
1963 * @param boolean $dolinks By default, any links in the HTML are collected, and
1964 * printed as a list at the end of the HTML. If you don't want that, set this
1965 * argument to false.
1966 * @return string plain text equivalent of the HTML.
1968 function html_to_text($html, $width = 75, $dolinks = true) {
1969 global $CFG;
1971 require_once($CFG->libdir .'/html2text/lib.php');
1973 $options = array(
1974 'width' => $width,
1975 'do_links' => 'table',
1978 if (empty($dolinks)) {
1979 $options['do_links'] = 'none';
1981 $h2t = new core_html2text($html, $options);
1982 $result = $h2t->getText();
1984 return $result;
1988 * Converts texts or strings to plain text.
1990 * - When used to convert user input introduced in an editor the text format needs to be passed in $contentformat like we usually
1991 * do in format_text.
1992 * - When this function is used for strings that are usually passed through format_string before displaying them
1993 * we need to set $contentformat to false. This will execute html_to_text as these strings can contain multilang tags if
1994 * multilang filter is applied to headings.
1996 * @param string $content The text as entered by the user
1997 * @param int|false $contentformat False for strings or the text format: FORMAT_MOODLE/FORMAT_HTML/FORMAT_PLAIN/FORMAT_MARKDOWN
1998 * @return string Plain text.
2000 function content_to_text($content, $contentformat) {
2002 switch ($contentformat) {
2003 case FORMAT_PLAIN:
2004 // Nothing here.
2005 break;
2006 case FORMAT_MARKDOWN:
2007 $content = markdown_to_html($content);
2008 $content = html_to_text($content, 75, false);
2009 break;
2010 default:
2011 // FORMAT_HTML, FORMAT_MOODLE and $contentformat = false, the later one are strings usually formatted through
2012 // format_string, we need to convert them from html because they can contain HTML (multilang filter).
2013 $content = html_to_text($content, 75, false);
2016 return trim($content, "\r\n ");
2020 * This function will highlight search words in a given string
2022 * It cares about HTML and will not ruin links. It's best to use
2023 * this function after performing any conversions to HTML.
2025 * @param string $needle The search string. Syntax like "word1 +word2 -word3" is dealt with correctly.
2026 * @param string $haystack The string (HTML) within which to highlight the search terms.
2027 * @param boolean $matchcase whether to do case-sensitive. Default case-insensitive.
2028 * @param string $prefix the string to put before each search term found.
2029 * @param string $suffix the string to put after each search term found.
2030 * @return string The highlighted HTML.
2032 function highlight($needle, $haystack, $matchcase = false,
2033 $prefix = '<span class="highlight">', $suffix = '</span>') {
2035 // Quick bail-out in trivial cases.
2036 if (empty($needle) or empty($haystack)) {
2037 return $haystack;
2040 // Break up the search term into words, discard any -words and build a regexp.
2041 $words = preg_split('/ +/', trim($needle));
2042 foreach ($words as $index => $word) {
2043 if (strpos($word, '-') === 0) {
2044 unset($words[$index]);
2045 } else if (strpos($word, '+') === 0) {
2046 $words[$index] = '\b' . preg_quote(ltrim($word, '+'), '/') . '\b'; // Match only as a complete word.
2047 } else {
2048 $words[$index] = preg_quote($word, '/');
2051 $regexp = '/(' . implode('|', $words) . ')/u'; // Char u is to do UTF-8 matching.
2052 if (!$matchcase) {
2053 $regexp .= 'i';
2056 // Another chance to bail-out if $search was only -words.
2057 if (empty($words)) {
2058 return $haystack;
2061 // Split the string into HTML tags and real content.
2062 $chunks = preg_split('/((?:<[^>]*>)+)/', $haystack, -1, PREG_SPLIT_DELIM_CAPTURE);
2064 // We have an array of alternating blocks of text, then HTML tags, then text, ...
2065 // Loop through replacing search terms in the text, and leaving the HTML unchanged.
2066 $ishtmlchunk = false;
2067 $result = '';
2068 foreach ($chunks as $chunk) {
2069 if ($ishtmlchunk) {
2070 $result .= $chunk;
2071 } else {
2072 $result .= preg_replace($regexp, $prefix . '$1' . $suffix, $chunk);
2074 $ishtmlchunk = !$ishtmlchunk;
2077 return $result;
2081 * This function will highlight instances of $needle in $haystack
2083 * It's faster that the above function {@link highlight()} and doesn't care about
2084 * HTML or anything.
2086 * @param string $needle The string to search for
2087 * @param string $haystack The string to search for $needle in
2088 * @return string The highlighted HTML
2090 function highlightfast($needle, $haystack) {
2092 if (empty($needle) or empty($haystack)) {
2093 return $haystack;
2096 $parts = explode(core_text::strtolower($needle), core_text::strtolower($haystack));
2098 if (count($parts) === 1) {
2099 return $haystack;
2102 $pos = 0;
2104 foreach ($parts as $key => $part) {
2105 $parts[$key] = substr($haystack, $pos, strlen($part));
2106 $pos += strlen($part);
2108 $parts[$key] .= '<span class="highlight">'.substr($haystack, $pos, strlen($needle)).'</span>';
2109 $pos += strlen($needle);
2112 return str_replace('<span class="highlight"></span>', '', join('', $parts));
2116 * Return a string containing 'lang', xml:lang and optionally 'dir' HTML attributes.
2118 * Internationalisation, for print_header and backup/restorelib.
2120 * @param bool $dir Default false
2121 * @return string Attributes
2123 function get_html_lang($dir = false) {
2124 $direction = '';
2125 if ($dir) {
2126 if (right_to_left()) {
2127 $direction = ' dir="rtl"';
2128 } else {
2129 $direction = ' dir="ltr"';
2132 // Accessibility: added the 'lang' attribute to $direction, used in theme <html> tag.
2133 $language = str_replace('_', '-', current_language());
2134 @header('Content-Language: '.$language);
2135 return ($direction.' lang="'.$language.'" xml:lang="'.$language.'"');
2139 // STANDARD WEB PAGE PARTS.
2142 * Send the HTTP headers that Moodle requires.
2144 * There is a backwards compatibility hack for legacy code
2145 * that needs to add custom IE compatibility directive.
2147 * Example:
2148 * <code>
2149 * if (!isset($CFG->additionalhtmlhead)) {
2150 * $CFG->additionalhtmlhead = '';
2152 * $CFG->additionalhtmlhead .= '<meta http-equiv="X-UA-Compatible" content="IE=8" />';
2153 * header('X-UA-Compatible: IE=8');
2154 * echo $OUTPUT->header();
2155 * </code>
2157 * Please note the $CFG->additionalhtmlhead alone might not work,
2158 * you should send the IE compatibility header() too.
2160 * @param string $contenttype
2161 * @param bool $cacheable Can this page be cached on back?
2162 * @return void, sends HTTP headers
2164 function send_headers($contenttype, $cacheable = true) {
2165 global $CFG;
2167 @header('Content-Type: ' . $contenttype);
2168 @header('Content-Script-Type: text/javascript');
2169 @header('Content-Style-Type: text/css');
2171 if (empty($CFG->additionalhtmlhead) or stripos($CFG->additionalhtmlhead, 'X-UA-Compatible') === false) {
2172 @header('X-UA-Compatible: IE=edge');
2175 if ($cacheable) {
2176 // Allow caching on "back" (but not on normal clicks).
2177 @header('Cache-Control: private, pre-check=0, post-check=0, max-age=0, no-transform');
2178 @header('Pragma: no-cache');
2179 @header('Expires: ');
2180 } else {
2181 // Do everything we can to always prevent clients and proxies caching.
2182 @header('Cache-Control: no-store, no-cache, must-revalidate');
2183 @header('Cache-Control: post-check=0, pre-check=0, no-transform', false);
2184 @header('Pragma: no-cache');
2185 @header('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
2186 @header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
2188 @header('Accept-Ranges: none');
2190 if (empty($CFG->allowframembedding)) {
2191 @header('X-Frame-Options: sameorigin');
2196 * Return the right arrow with text ('next'), and optionally embedded in a link.
2198 * @param string $text HTML/plain text label (set to blank only for breadcrumb separator cases).
2199 * @param string $url An optional link to use in a surrounding HTML anchor.
2200 * @param bool $accesshide True if text should be hidden (for screen readers only).
2201 * @param string $addclass Additional class names for the link, or the arrow character.
2202 * @return string HTML string.
2204 function link_arrow_right($text, $url='', $accesshide=false, $addclass='') {
2205 global $OUTPUT; // TODO: move to output renderer.
2206 $arrowclass = 'arrow ';
2207 if (!$url) {
2208 $arrowclass .= $addclass;
2210 $arrow = '<span class="'.$arrowclass.'">'.$OUTPUT->rarrow().'</span>';
2211 $htmltext = '';
2212 if ($text) {
2213 $htmltext = '<span class="arrow_text">'.$text.'</span>&nbsp;';
2214 if ($accesshide) {
2215 $htmltext = get_accesshide($htmltext);
2218 if ($url) {
2219 $class = 'arrow_link';
2220 if ($addclass) {
2221 $class .= ' '.$addclass;
2223 return '<a class="'.$class.'" href="'.$url.'" title="'.preg_replace('/<.*?>/', '', $text).'">'.$htmltext.$arrow.'</a>';
2225 return $htmltext.$arrow;
2229 * Return the left arrow with text ('previous'), and optionally embedded in a link.
2231 * @param string $text HTML/plain text label (set to blank only for breadcrumb separator cases).
2232 * @param string $url An optional link to use in a surrounding HTML anchor.
2233 * @param bool $accesshide True if text should be hidden (for screen readers only).
2234 * @param string $addclass Additional class names for the link, or the arrow character.
2235 * @return string HTML string.
2237 function link_arrow_left($text, $url='', $accesshide=false, $addclass='') {
2238 global $OUTPUT; // TODO: move to utput renderer.
2239 $arrowclass = 'arrow ';
2240 if (! $url) {
2241 $arrowclass .= $addclass;
2243 $arrow = '<span class="'.$arrowclass.'">'.$OUTPUT->larrow().'</span>';
2244 $htmltext = '';
2245 if ($text) {
2246 $htmltext = '&nbsp;<span class="arrow_text">'.$text.'</span>';
2247 if ($accesshide) {
2248 $htmltext = get_accesshide($htmltext);
2251 if ($url) {
2252 $class = 'arrow_link';
2253 if ($addclass) {
2254 $class .= ' '.$addclass;
2256 return '<a class="'.$class.'" href="'.$url.'" title="'.preg_replace('/<.*?>/', '', $text).'">'.$arrow.$htmltext.'</a>';
2258 return $arrow.$htmltext;
2262 * Return a HTML element with the class "accesshide", for accessibility.
2264 * Please use cautiously - where possible, text should be visible!
2266 * @param string $text Plain text.
2267 * @param string $elem Lowercase element name, default "span".
2268 * @param string $class Additional classes for the element.
2269 * @param string $attrs Additional attributes string in the form, "name='value' name2='value2'"
2270 * @return string HTML string.
2272 function get_accesshide($text, $elem='span', $class='', $attrs='') {
2273 return "<$elem class=\"accesshide $class\" $attrs>$text</$elem>";
2277 * Return the breadcrumb trail navigation separator.
2279 * @return string HTML string.
2281 function get_separator() {
2282 // Accessibility: the 'hidden' slash is preferred for screen readers.
2283 return ' '.link_arrow_right($text='/', $url='', $accesshide=true, 'sep').' ';
2287 * Print (or return) a collapsible region, that has a caption that can be clicked to expand or collapse the region.
2289 * If JavaScript is off, then the region will always be expanded.
2291 * @param string $contents the contents of the box.
2292 * @param string $classes class names added to the div that is output.
2293 * @param string $id id added to the div that is output. Must not be blank.
2294 * @param string $caption text displayed at the top. Clicking on this will cause the region to expand or contract.
2295 * @param string $userpref the name of the user preference that stores the user's preferred default state.
2296 * (May be blank if you do not wish the state to be persisted.
2297 * @param boolean $default Initial collapsed state to use if the user_preference it not set.
2298 * @param boolean $return if true, return the HTML as a string, rather than printing it.
2299 * @return string|void If $return is false, returns nothing, otherwise returns a string of HTML.
2301 function print_collapsible_region($contents, $classes, $id, $caption, $userpref = '', $default = false, $return = false) {
2302 $output = print_collapsible_region_start($classes, $id, $caption, $userpref, $default, true);
2303 $output .= $contents;
2304 $output .= print_collapsible_region_end(true);
2306 if ($return) {
2307 return $output;
2308 } else {
2309 echo $output;
2314 * Print (or return) the start of a collapsible region
2316 * The collapsibleregion has a caption that can be clicked to expand or collapse the region. If JavaScript is off, then the region
2317 * will always be expanded.
2319 * @param string $classes class names added to the div that is output.
2320 * @param string $id id added to the div that is output. Must not be blank.
2321 * @param string $caption text displayed at the top. Clicking on this will cause the region to expand or contract.
2322 * @param string $userpref the name of the user preference that stores the user's preferred default state.
2323 * (May be blank if you do not wish the state to be persisted.
2324 * @param boolean $default Initial collapsed state to use if the user_preference it not set.
2325 * @param boolean $return if true, return the HTML as a string, rather than printing it.
2326 * @return string|void if $return is false, returns nothing, otherwise returns a string of HTML.
2328 function print_collapsible_region_start($classes, $id, $caption, $userpref = '', $default = false, $return = false) {
2329 global $PAGE;
2331 // Work out the initial state.
2332 if (!empty($userpref) and is_string($userpref)) {
2333 user_preference_allow_ajax_update($userpref, PARAM_BOOL);
2334 $collapsed = get_user_preferences($userpref, $default);
2335 } else {
2336 $collapsed = $default;
2337 $userpref = false;
2340 if ($collapsed) {
2341 $classes .= ' collapsed';
2344 $output = '';
2345 $output .= '<div id="' . $id . '" class="collapsibleregion ' . $classes . '">';
2346 $output .= '<div id="' . $id . '_sizer">';
2347 $output .= '<div id="' . $id . '_caption" class="collapsibleregioncaption">';
2348 $output .= $caption . ' ';
2349 $output .= '</div><div id="' . $id . '_inner" class="collapsibleregioninner">';
2350 $PAGE->requires->js_init_call('M.util.init_collapsible_region', array($id, $userpref, get_string('clicktohideshow')));
2352 if ($return) {
2353 return $output;
2354 } else {
2355 echo $output;
2360 * Close a region started with print_collapsible_region_start.
2362 * @param boolean $return if true, return the HTML as a string, rather than printing it.
2363 * @return string|void if $return is false, returns nothing, otherwise returns a string of HTML.
2365 function print_collapsible_region_end($return = false) {
2366 $output = '</div></div></div>';
2368 if ($return) {
2369 return $output;
2370 } else {
2371 echo $output;
2376 * Print a specified group's avatar.
2378 * @param array|stdClass $group A single {@link group} object OR array of groups.
2379 * @param int $courseid The course ID.
2380 * @param boolean $large Default small picture, or large.
2381 * @param boolean $return If false print picture, otherwise return the output as string
2382 * @param boolean $link Enclose image in a link to view specified course?
2383 * @return string|void Depending on the setting of $return
2385 function print_group_picture($group, $courseid, $large=false, $return=false, $link=true) {
2386 global $CFG;
2388 if (is_array($group)) {
2389 $output = '';
2390 foreach ($group as $g) {
2391 $output .= print_group_picture($g, $courseid, $large, true, $link);
2393 if ($return) {
2394 return $output;
2395 } else {
2396 echo $output;
2397 return;
2401 $context = context_course::instance($courseid);
2403 // If there is no picture, do nothing.
2404 if (!$group->picture) {
2405 return '';
2408 // If picture is hidden, only show to those with course:managegroups.
2409 if ($group->hidepicture and !has_capability('moodle/course:managegroups', $context)) {
2410 return '';
2413 if ($link or has_capability('moodle/site:accessallgroups', $context)) {
2414 $output = '<a href="'. $CFG->wwwroot .'/user/index.php?id='. $courseid .'&amp;group='. $group->id .'">';
2415 } else {
2416 $output = '';
2418 if ($large) {
2419 $file = 'f1';
2420 } else {
2421 $file = 'f2';
2424 $grouppictureurl = moodle_url::make_pluginfile_url($context->id, 'group', 'icon', $group->id, '/', $file);
2425 $grouppictureurl->param('rev', $group->picture);
2426 $output .= '<img class="grouppicture" src="'.$grouppictureurl.'"'.
2427 ' alt="'.s(get_string('group').' '.$group->name).'" title="'.s($group->name).'"/>';
2429 if ($link or has_capability('moodle/site:accessallgroups', $context)) {
2430 $output .= '</a>';
2433 if ($return) {
2434 return $output;
2435 } else {
2436 echo $output;
2442 * Display a recent activity note
2444 * @staticvar string $strftimerecent
2445 * @param int $time A timestamp int.
2446 * @param stdClass $user A user object from the database.
2447 * @param string $text Text for display for the note
2448 * @param string $link The link to wrap around the text
2449 * @param bool $return If set to true the HTML is returned rather than echo'd
2450 * @param string $viewfullnames
2451 * @return string If $retrun was true returns HTML for a recent activity notice.
2453 function print_recent_activity_note($time, $user, $text, $link, $return=false, $viewfullnames=null) {
2454 static $strftimerecent = null;
2455 $output = '';
2457 if (is_null($viewfullnames)) {
2458 $context = context_system::instance();
2459 $viewfullnames = has_capability('moodle/site:viewfullnames', $context);
2462 if (is_null($strftimerecent)) {
2463 $strftimerecent = get_string('strftimerecent');
2466 $output .= '<div class="head">';
2467 $output .= '<div class="date">'.userdate($time, $strftimerecent).'</div>';
2468 $output .= '<div class="name">'.fullname($user, $viewfullnames).'</div>';
2469 $output .= '</div>';
2470 $output .= '<div class="info"><a href="'.$link.'">'.format_string($text, true).'</a></div>';
2472 if ($return) {
2473 return $output;
2474 } else {
2475 echo $output;
2480 * Returns a popup menu with course activity modules
2482 * Given a course this function returns a small popup menu with all the course activity modules in it, as a navigation menu
2483 * outputs a simple list structure in XHTML.
2484 * The data is taken from the serialised array stored in the course record.
2486 * @param course $course A {@link $COURSE} object.
2487 * @param array $sections
2488 * @param course_modinfo $modinfo
2489 * @param string $strsection
2490 * @param string $strjumpto
2491 * @param int $width
2492 * @param string $cmid
2493 * @return string The HTML block
2495 function navmenulist($course, $sections, $modinfo, $strsection, $strjumpto, $width=50, $cmid=0) {
2497 global $CFG, $OUTPUT;
2499 $section = -1;
2500 $menu = array();
2501 $doneheading = false;
2503 $courseformatoptions = course_get_format($course)->get_format_options();
2504 $coursecontext = context_course::instance($course->id);
2506 $menu[] = '<ul class="navmenulist"><li class="jumpto section"><span>'.$strjumpto.'</span><ul>';
2507 foreach ($modinfo->cms as $mod) {
2508 if (!$mod->has_view()) {
2509 // Don't show modules which you can't link to!
2510 continue;
2513 // For course formats using 'numsections' do not show extra sections.
2514 if (isset($courseformatoptions['numsections']) && $mod->sectionnum > $courseformatoptions['numsections']) {
2515 break;
2518 if (!$mod->uservisible) { // Do not icnlude empty sections at all.
2519 continue;
2522 if ($mod->sectionnum >= 0 and $section != $mod->sectionnum) {
2523 $thissection = $sections[$mod->sectionnum];
2525 if ($thissection->visible or
2526 (isset($courseformatoptions['hiddensections']) and !$courseformatoptions['hiddensections']) or
2527 has_capability('moodle/course:viewhiddensections', $coursecontext)) {
2528 $thissection->summary = strip_tags(format_string($thissection->summary, true));
2529 if (!$doneheading) {
2530 $menu[] = '</ul></li>';
2532 if ($course->format == 'weeks' or empty($thissection->summary)) {
2533 $item = $strsection ." ". $mod->sectionnum;
2534 } else {
2535 if (core_text::strlen($thissection->summary) < ($width-3)) {
2536 $item = $thissection->summary;
2537 } else {
2538 $item = core_text::substr($thissection->summary, 0, $width).'...';
2541 $menu[] = '<li class="section"><span>'.$item.'</span>';
2542 $menu[] = '<ul>';
2543 $doneheading = true;
2545 $section = $mod->sectionnum;
2546 } else {
2547 // No activities from this hidden section shown.
2548 continue;
2552 $url = $mod->modname .'/view.php?id='. $mod->id;
2553 $mod->name = strip_tags(format_string($mod->name ,true));
2554 if (core_text::strlen($mod->name) > ($width+5)) {
2555 $mod->name = core_text::substr($mod->name, 0, $width).'...';
2557 if (!$mod->visible) {
2558 $mod->name = '('.$mod->name.')';
2560 $class = 'activity '.$mod->modname;
2561 $class .= ($cmid == $mod->id) ? ' selected' : '';
2562 $menu[] = '<li class="'.$class.'">'.
2563 '<img src="'.$OUTPUT->pix_url('icon', $mod->modname) . '" alt="" />'.
2564 '<a href="'.$CFG->wwwroot.'/mod/'.$url.'">'.$mod->name.'</a></li>';
2567 if ($doneheading) {
2568 $menu[] = '</ul></li>';
2570 $menu[] = '</ul></li></ul>';
2572 return implode("\n", $menu);
2576 * Prints a grade menu (as part of an existing form) with help showing all possible numerical grades and scales.
2578 * @todo Finish documenting this function
2579 * @todo Deprecate: this is only used in a few contrib modules
2581 * @param int $courseid The course ID
2582 * @param string $name
2583 * @param string $current
2584 * @param boolean $includenograde Include those with no grades
2585 * @param boolean $return If set to true returns rather than echo's
2586 * @return string|bool Depending on value of $return
2588 function print_grade_menu($courseid, $name, $current, $includenograde=true, $return=false) {
2589 global $OUTPUT;
2591 $output = '';
2592 $strscale = get_string('scale');
2593 $strscales = get_string('scales');
2595 $scales = get_scales_menu($courseid);
2596 foreach ($scales as $i => $scalename) {
2597 $grades[-$i] = $strscale .': '. $scalename;
2599 if ($includenograde) {
2600 $grades[0] = get_string('nograde');
2602 for ($i=100; $i>=1; $i--) {
2603 $grades[$i] = $i;
2605 $output .= html_writer::select($grades, $name, $current, false);
2607 $helppix = $OUTPUT->pix_url('help');
2608 $linkobject = '<span class="helplink"><img class="iconhelp" alt="'.$strscales.'" src="'.$helppix.'" /></span>';
2609 $link = new moodle_url('/course/scales.php', array('id' => $courseid, 'list' => 1));
2610 $action = new popup_action('click', $link, 'ratingscales', array('height' => 400, 'width' => 500));
2611 $output .= $OUTPUT->action_link($link, $linkobject, $action, array('title' => $strscales));
2613 if ($return) {
2614 return $output;
2615 } else {
2616 echo $output;
2621 * Print an error to STDOUT and exit with a non-zero code. For commandline scripts.
2623 * Default errorcode is 1.
2625 * Very useful for perl-like error-handling:
2626 * do_somethting() or mdie("Something went wrong");
2628 * @param string $msg Error message
2629 * @param integer $errorcode Error code to emit
2631 function mdie($msg='', $errorcode=1) {
2632 trigger_error($msg);
2633 exit($errorcode);
2637 * Print a message and exit.
2639 * @param string $message The message to print in the notice
2640 * @param string $link The link to use for the continue button
2641 * @param object $course A course object. Unused.
2642 * @return void This function simply exits
2644 function notice ($message, $link='', $course=null) {
2645 global $PAGE, $OUTPUT;
2647 $message = clean_text($message); // In case nasties are in here.
2649 if (CLI_SCRIPT) {
2650 echo("!!$message!!\n");
2651 exit(1); // No success.
2654 if (!$PAGE->headerprinted) {
2655 // Header not yet printed.
2656 $PAGE->set_title(get_string('notice'));
2657 echo $OUTPUT->header();
2658 } else {
2659 echo $OUTPUT->container_end_all(false);
2662 echo $OUTPUT->box($message, 'generalbox', 'notice');
2663 echo $OUTPUT->continue_button($link);
2665 echo $OUTPUT->footer();
2666 exit(1); // General error code.
2670 * Redirects the user to another page, after printing a notice.
2672 * This function calls the OUTPUT redirect method, echo's the output and then dies to ensure nothing else happens.
2674 * <strong>Good practice:</strong> You should call this method before starting page
2675 * output by using any of the OUTPUT methods.
2677 * @param moodle_url|string $url A moodle_url to redirect to. Strings are not to be trusted!
2678 * @param string $message The message to display to the user
2679 * @param int $delay The delay before redirecting
2680 * @param string $messagetype The type of notification to show the message in. See constants on \core\output\notification.
2681 * @throws moodle_exception
2683 function redirect($url, $message='', $delay=null, $messagetype = \core\output\notification::NOTIFY_INFO) {
2684 global $OUTPUT, $PAGE, $CFG;
2686 if (CLI_SCRIPT or AJAX_SCRIPT) {
2687 // This is wrong - developers should not use redirect in these scripts but it should not be very likely.
2688 throw new moodle_exception('redirecterrordetected', 'error');
2691 if ($delay === null) {
2692 $delay = -1;
2695 // Prevent debug errors - make sure context is properly initialised.
2696 if ($PAGE) {
2697 $PAGE->set_context(null);
2698 $PAGE->set_pagelayout('redirect'); // No header and footer needed.
2699 $PAGE->set_title(get_string('pageshouldredirect', 'moodle'));
2702 if ($url instanceof moodle_url) {
2703 $url = $url->out(false);
2706 $debugdisableredirect = false;
2707 do {
2708 if (defined('DEBUGGING_PRINTED')) {
2709 // Some debugging already printed, no need to look more.
2710 $debugdisableredirect = true;
2711 break;
2714 if (core_useragent::is_msword()) {
2715 // Clicking a URL from MS Word sends a request to the server without cookies. If that
2716 // causes a redirect Word will open a browser pointing the new URL. If not, the URL that
2717 // was clicked is opened. Because the request from Word is without cookies, it almost
2718 // always results in a redirect to the login page, even if the user is logged in in their
2719 // browser. This is not what we want, so prevent the redirect for requests from Word.
2720 $debugdisableredirect = true;
2721 break;
2724 if (empty($CFG->debugdisplay) or empty($CFG->debug)) {
2725 // No errors should be displayed.
2726 break;
2729 if (!function_exists('error_get_last') or !$lasterror = error_get_last()) {
2730 break;
2733 if (!($lasterror['type'] & $CFG->debug)) {
2734 // Last error not interesting.
2735 break;
2738 // Watch out here, @hidden() errors are returned from error_get_last() too.
2739 if (headers_sent()) {
2740 // We already started printing something - that means errors likely printed.
2741 $debugdisableredirect = true;
2742 break;
2745 if (ob_get_level() and ob_get_contents()) {
2746 // There is something waiting to be printed, hopefully it is the errors,
2747 // but it might be some error hidden by @ too - such as the timezone mess from setup.php.
2748 $debugdisableredirect = true;
2749 break;
2751 } while (false);
2753 // Technically, HTTP/1.1 requires Location: header to contain the absolute path.
2754 // (In practice browsers accept relative paths - but still, might as well do it properly.)
2755 // This code turns relative into absolute.
2756 if (!preg_match('|^[a-z]+:|i', $url)) {
2757 // Get host name http://www.wherever.com.
2758 $hostpart = preg_replace('|^(.*?[^:/])/.*$|', '$1', $CFG->wwwroot);
2759 if (preg_match('|^/|', $url)) {
2760 // URLs beginning with / are relative to web server root so we just add them in.
2761 $url = $hostpart.$url;
2762 } else {
2763 // URLs not beginning with / are relative to path of current script, so add that on.
2764 $url = $hostpart.preg_replace('|\?.*$|', '', me()).'/../'.$url;
2766 // Replace all ..s.
2767 while (true) {
2768 $newurl = preg_replace('|/(?!\.\.)[^/]*/\.\./|', '/', $url);
2769 if ($newurl == $url) {
2770 break;
2772 $url = $newurl;
2776 // Sanitise url - we can not rely on moodle_url or our URL cleaning
2777 // because they do not support all valid external URLs.
2778 $url = preg_replace('/[\x00-\x1F\x7F]/', '', $url);
2779 $url = str_replace('"', '%22', $url);
2780 $encodedurl = preg_replace("/\&(?![a-zA-Z0-9#]{1,8};)/", "&amp;", $url);
2781 $encodedurl = preg_replace('/^.*href="([^"]*)".*$/', "\\1", clean_text('<a href="'.$encodedurl.'" />', FORMAT_HTML));
2782 $url = str_replace('&amp;', '&', $encodedurl);
2784 if (!empty($message)) {
2785 if (!$debugdisableredirect && !headers_sent()) {
2786 // A message has been provided, and the headers have not yet been sent.
2787 // Display the message as a notification on the subsequent page.
2788 \core\notification::add($message, $messagetype);
2789 $message = null;
2790 $delay = 0;
2791 } else {
2792 if ($delay === -1 || !is_numeric($delay)) {
2793 $delay = 3;
2795 $message = clean_text($message);
2797 } else {
2798 $message = get_string('pageshouldredirect');
2799 $delay = 0;
2802 // Make sure the session is closed properly, this prevents problems in IIS
2803 // and also some potential PHP shutdown issues.
2804 \core\session\manager::write_close();
2806 if ($delay == 0 && !$debugdisableredirect && !headers_sent()) {
2807 // 302 might not work for POST requests, 303 is ignored by obsolete clients.
2808 @header($_SERVER['SERVER_PROTOCOL'] . ' 303 See Other');
2809 @header('Location: '.$url);
2810 echo bootstrap_renderer::plain_redirect_message($encodedurl);
2811 exit;
2814 // Include a redirect message, even with a HTTP redirect, because that is recommended practice.
2815 if ($PAGE) {
2816 $CFG->docroot = false; // To prevent the link to moodle docs from being displayed on redirect page.
2817 echo $OUTPUT->redirect_message($encodedurl, $message, $delay, $debugdisableredirect, $messagetype);
2818 exit;
2819 } else {
2820 echo bootstrap_renderer::early_redirect_message($encodedurl, $message, $delay);
2821 exit;
2826 * Given an email address, this function will return an obfuscated version of it.
2828 * @param string $email The email address to obfuscate
2829 * @return string The obfuscated email address
2831 function obfuscate_email($email) {
2832 $i = 0;
2833 $length = strlen($email);
2834 $obfuscated = '';
2835 while ($i < $length) {
2836 if (rand(0, 2) && $email{$i}!='@') { // MDL-20619 some browsers have problems unobfuscating @.
2837 $obfuscated.='%'.dechex(ord($email{$i}));
2838 } else {
2839 $obfuscated.=$email{$i};
2841 $i++;
2843 return $obfuscated;
2847 * This function takes some text and replaces about half of the characters
2848 * with HTML entity equivalents. Return string is obviously longer.
2850 * @param string $plaintext The text to be obfuscated
2851 * @return string The obfuscated text
2853 function obfuscate_text($plaintext) {
2854 $i=0;
2855 $length = core_text::strlen($plaintext);
2856 $obfuscated='';
2857 $prevobfuscated = false;
2858 while ($i < $length) {
2859 $char = core_text::substr($plaintext, $i, 1);
2860 $ord = core_text::utf8ord($char);
2861 $numerical = ($ord >= ord('0')) && ($ord <= ord('9'));
2862 if ($prevobfuscated and $numerical ) {
2863 $obfuscated.='&#'.$ord.';';
2864 } else if (rand(0, 2)) {
2865 $obfuscated.='&#'.$ord.';';
2866 $prevobfuscated = true;
2867 } else {
2868 $obfuscated.=$char;
2869 $prevobfuscated = false;
2871 $i++;
2873 return $obfuscated;
2877 * This function uses the {@link obfuscate_email()} and {@link obfuscate_text()}
2878 * to generate a fully obfuscated email link, ready to use.
2880 * @param string $email The email address to display
2881 * @param string $label The text to displayed as hyperlink to $email
2882 * @param boolean $dimmed If true then use css class 'dimmed' for hyperlink
2883 * @param string $subject The subject of the email in the mailto link
2884 * @param string $body The content of the email in the mailto link
2885 * @return string The obfuscated mailto link
2887 function obfuscate_mailto($email, $label='', $dimmed=false, $subject = '', $body = '') {
2889 if (empty($label)) {
2890 $label = $email;
2893 $label = obfuscate_text($label);
2894 $email = obfuscate_email($email);
2895 $mailto = obfuscate_text('mailto');
2896 $url = new moodle_url("mailto:$email");
2897 $attrs = array();
2899 if (!empty($subject)) {
2900 $url->param('subject', format_string($subject));
2902 if (!empty($body)) {
2903 $url->param('body', format_string($body));
2906 // Use the obfuscated mailto.
2907 $url = preg_replace('/^mailto/', $mailto, $url->out());
2909 if ($dimmed) {
2910 $attrs['title'] = get_string('emaildisable');
2911 $attrs['class'] = 'dimmed';
2914 return html_writer::link($url, $label, $attrs);
2918 * This function is used to rebuild the <nolink> tag because some formats (PLAIN and WIKI)
2919 * will transform it to html entities
2921 * @param string $text Text to search for nolink tag in
2922 * @return string
2924 function rebuildnolinktag($text) {
2926 $text = preg_replace('/&lt;(\/*nolink)&gt;/i', '<$1>', $text);
2928 return $text;
2932 * Prints a maintenance message from $CFG->maintenance_message or default if empty.
2934 function print_maintenance_message() {
2935 global $CFG, $SITE, $PAGE, $OUTPUT;
2937 header($_SERVER['SERVER_PROTOCOL'] . ' 503 Moodle under maintenance');
2938 header('Status: 503 Moodle under maintenance');
2939 header('Retry-After: 300');
2941 $PAGE->set_pagetype('maintenance-message');
2942 $PAGE->set_pagelayout('maintenance');
2943 $PAGE->set_title(strip_tags($SITE->fullname));
2944 $PAGE->set_heading($SITE->fullname);
2945 echo $OUTPUT->header();
2946 echo $OUTPUT->heading(get_string('sitemaintenance', 'admin'));
2947 if (isset($CFG->maintenance_message) and !html_is_blank($CFG->maintenance_message)) {
2948 echo $OUTPUT->box_start('maintenance_message generalbox boxwidthwide boxaligncenter');
2949 echo $CFG->maintenance_message;
2950 echo $OUTPUT->box_end();
2952 echo $OUTPUT->footer();
2953 die;
2957 * Returns a string containing a nested list, suitable for formatting into tabs with CSS.
2959 * It is not recommended to use this function in Moodle 2.5 but it is left for backward
2960 * compartibility.
2962 * Example how to print a single line tabs:
2963 * $rows = array(
2964 * new tabobject(...),
2965 * new tabobject(...)
2966 * );
2967 * echo $OUTPUT->tabtree($rows, $selectedid);
2969 * Multiple row tabs may not look good on some devices but if you want to use them
2970 * you can specify ->subtree for the active tabobject.
2972 * @param array $tabrows An array of rows where each row is an array of tab objects
2973 * @param string $selected The id of the selected tab (whatever row it's on)
2974 * @param array $inactive An array of ids of inactive tabs that are not selectable.
2975 * @param array $activated An array of ids of other tabs that are currently activated
2976 * @param bool $return If true output is returned rather then echo'd
2977 * @return string HTML output if $return was set to true.
2979 function print_tabs($tabrows, $selected = null, $inactive = null, $activated = null, $return = false) {
2980 global $OUTPUT;
2982 $tabrows = array_reverse($tabrows);
2983 $subtree = array();
2984 foreach ($tabrows as $row) {
2985 $tree = array();
2987 foreach ($row as $tab) {
2988 $tab->inactive = is_array($inactive) && in_array((string)$tab->id, $inactive);
2989 $tab->activated = is_array($activated) && in_array((string)$tab->id, $activated);
2990 $tab->selected = (string)$tab->id == $selected;
2992 if ($tab->activated || $tab->selected) {
2993 $tab->subtree = $subtree;
2995 $tree[] = $tab;
2997 $subtree = $tree;
2999 $output = $OUTPUT->tabtree($subtree);
3000 if ($return) {
3001 return $output;
3002 } else {
3003 print $output;
3004 return !empty($output);
3009 * Alter debugging level for the current request,
3010 * the change is not saved in database.
3012 * @param int $level one of the DEBUG_* constants
3013 * @param bool $debugdisplay
3015 function set_debugging($level, $debugdisplay = null) {
3016 global $CFG;
3018 $CFG->debug = (int)$level;
3019 $CFG->debugdeveloper = (($CFG->debug & DEBUG_DEVELOPER) === DEBUG_DEVELOPER);
3021 if ($debugdisplay !== null) {
3022 $CFG->debugdisplay = (bool)$debugdisplay;
3027 * Standard Debugging Function
3029 * Returns true if the current site debugging settings are equal or above specified level.
3030 * If passed a parameter it will emit a debugging notice similar to trigger_error(). The
3031 * routing of notices is controlled by $CFG->debugdisplay
3032 * eg use like this:
3034 * 1) debugging('a normal debug notice');
3035 * 2) debugging('something really picky', DEBUG_ALL);
3036 * 3) debugging('annoying debug message only for developers', DEBUG_DEVELOPER);
3037 * 4) if (debugging()) { perform extra debugging operations (do not use print or echo) }
3039 * In code blocks controlled by debugging() (such as example 4)
3040 * any output should be routed via debugging() itself, or the lower-level
3041 * trigger_error() or error_log(). Using echo or print will break XHTML
3042 * JS and HTTP headers.
3044 * It is also possible to define NO_DEBUG_DISPLAY which redirects the message to error_log.
3046 * @param string $message a message to print
3047 * @param int $level the level at which this debugging statement should show
3048 * @param array $backtrace use different backtrace
3049 * @return bool
3051 function debugging($message = '', $level = DEBUG_NORMAL, $backtrace = null) {
3052 global $CFG, $USER;
3054 $forcedebug = false;
3055 if (!empty($CFG->debugusers) && $USER) {
3056 $debugusers = explode(',', $CFG->debugusers);
3057 $forcedebug = in_array($USER->id, $debugusers);
3060 if (!$forcedebug and (empty($CFG->debug) || ($CFG->debug != -1 and $CFG->debug < $level))) {
3061 return false;
3064 if (!isset($CFG->debugdisplay)) {
3065 $CFG->debugdisplay = ini_get_bool('display_errors');
3068 if ($message) {
3069 if (!$backtrace) {
3070 $backtrace = debug_backtrace();
3072 $from = format_backtrace($backtrace, CLI_SCRIPT || NO_DEBUG_DISPLAY);
3073 if (PHPUNIT_TEST) {
3074 if (phpunit_util::debugging_triggered($message, $level, $from)) {
3075 // We are inside test, the debug message was logged.
3076 return true;
3080 if (NO_DEBUG_DISPLAY) {
3081 // Script does not want any errors or debugging in output,
3082 // we send the info to error log instead.
3083 error_log('Debugging: ' . $message . ' in '. PHP_EOL . $from);
3085 } else if ($forcedebug or $CFG->debugdisplay) {
3086 if (!defined('DEBUGGING_PRINTED')) {
3087 define('DEBUGGING_PRINTED', 1); // Indicates we have printed something.
3089 if (CLI_SCRIPT) {
3090 echo "++ $message ++\n$from";
3091 } else {
3092 echo '<div class="notifytiny debuggingmessage" data-rel="debugging">' , $message , $from , '</div>';
3095 } else {
3096 trigger_error($message . $from, E_USER_NOTICE);
3099 return true;
3103 * Outputs a HTML comment to the browser.
3105 * This is used for those hard-to-debug pages that use bits from many different files in very confusing ways (e.g. blocks).
3107 * <code>print_location_comment(__FILE__, __LINE__);</code>
3109 * @param string $file
3110 * @param integer $line
3111 * @param boolean $return Whether to return or print the comment
3112 * @return string|void Void unless true given as third parameter
3114 function print_location_comment($file, $line, $return = false) {
3115 if ($return) {
3116 return "<!-- $file at line $line -->\n";
3117 } else {
3118 echo "<!-- $file at line $line -->\n";
3124 * Returns true if the user is using a right-to-left language.
3126 * @return boolean true if the current language is right-to-left (Hebrew, Arabic etc)
3128 function right_to_left() {
3129 return (get_string('thisdirection', 'langconfig') === 'rtl');
3134 * Returns swapped left<=> right if in RTL environment.
3136 * Part of RTL Moodles support.
3138 * @param string $align align to check
3139 * @return string
3141 function fix_align_rtl($align) {
3142 if (!right_to_left()) {
3143 return $align;
3145 if ($align == 'left') {
3146 return 'right';
3148 if ($align == 'right') {
3149 return 'left';
3151 return $align;
3156 * Returns true if the page is displayed in a popup window.
3158 * Gets the information from the URL parameter inpopup.
3160 * @todo Use a central function to create the popup calls all over Moodle and
3161 * In the moment only works with resources and probably questions.
3163 * @return boolean
3165 function is_in_popup() {
3166 $inpopup = optional_param('inpopup', '', PARAM_BOOL);
3168 return ($inpopup);
3172 * Progress trace class.
3174 * Use this class from long operations where you want to output occasional information about
3175 * what is going on, but don't know if, or in what format, the output should be.
3177 * @copyright 2009 Tim Hunt
3178 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3179 * @package core
3181 abstract class progress_trace {
3183 * Output an progress message in whatever format.
3185 * @param string $message the message to output.
3186 * @param integer $depth indent depth for this message.
3188 abstract public function output($message, $depth = 0);
3191 * Called when the processing is finished.
3193 public function finished() {
3198 * This subclass of progress_trace does not ouput anything.
3200 * @copyright 2009 Tim Hunt
3201 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3202 * @package core
3204 class null_progress_trace extends progress_trace {
3206 * Does Nothing
3208 * @param string $message
3209 * @param int $depth
3210 * @return void Does Nothing
3212 public function output($message, $depth = 0) {
3217 * This subclass of progress_trace outputs to plain text.
3219 * @copyright 2009 Tim Hunt
3220 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3221 * @package core
3223 class text_progress_trace extends progress_trace {
3225 * Output the trace message.
3227 * @param string $message
3228 * @param int $depth
3229 * @return void Output is echo'd
3231 public function output($message, $depth = 0) {
3232 echo str_repeat(' ', $depth), $message, "\n";
3233 flush();
3238 * This subclass of progress_trace outputs as HTML.
3240 * @copyright 2009 Tim Hunt
3241 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3242 * @package core
3244 class html_progress_trace extends progress_trace {
3246 * Output the trace message.
3248 * @param string $message
3249 * @param int $depth
3250 * @return void Output is echo'd
3252 public function output($message, $depth = 0) {
3253 echo '<p>', str_repeat('&#160;&#160;', $depth), htmlspecialchars($message), "</p>\n";
3254 flush();
3259 * HTML List Progress Tree
3261 * @copyright 2009 Tim Hunt
3262 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3263 * @package core
3265 class html_list_progress_trace extends progress_trace {
3266 /** @var int */
3267 protected $currentdepth = -1;
3270 * Echo out the list
3272 * @param string $message The message to display
3273 * @param int $depth
3274 * @return void Output is echoed
3276 public function output($message, $depth = 0) {
3277 $samedepth = true;
3278 while ($this->currentdepth > $depth) {
3279 echo "</li>\n</ul>\n";
3280 $this->currentdepth -= 1;
3281 if ($this->currentdepth == $depth) {
3282 echo '<li>';
3284 $samedepth = false;
3286 while ($this->currentdepth < $depth) {
3287 echo "<ul>\n<li>";
3288 $this->currentdepth += 1;
3289 $samedepth = false;
3291 if ($samedepth) {
3292 echo "</li>\n<li>";
3294 echo htmlspecialchars($message);
3295 flush();
3299 * Called when the processing is finished.
3301 public function finished() {
3302 while ($this->currentdepth >= 0) {
3303 echo "</li>\n</ul>\n";
3304 $this->currentdepth -= 1;
3310 * This subclass of progress_trace outputs to error log.
3312 * @copyright Petr Skoda {@link http://skodak.org}
3313 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3314 * @package core
3316 class error_log_progress_trace extends progress_trace {
3317 /** @var string log prefix */
3318 protected $prefix;
3321 * Constructor.
3322 * @param string $prefix optional log prefix
3324 public function __construct($prefix = '') {
3325 $this->prefix = $prefix;
3329 * Output the trace message.
3331 * @param string $message
3332 * @param int $depth
3333 * @return void Output is sent to error log.
3335 public function output($message, $depth = 0) {
3336 error_log($this->prefix . str_repeat(' ', $depth) . $message);
3341 * Special type of trace that can be used for catching of output of other traces.
3343 * @copyright Petr Skoda {@link http://skodak.org}
3344 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3345 * @package core
3347 class progress_trace_buffer extends progress_trace {
3348 /** @var progres_trace */
3349 protected $trace;
3350 /** @var bool do we pass output out */
3351 protected $passthrough;
3352 /** @var string output buffer */
3353 protected $buffer;
3356 * Constructor.
3358 * @param progress_trace $trace
3359 * @param bool $passthrough true means output and buffer, false means just buffer and no output
3361 public function __construct(progress_trace $trace, $passthrough = true) {
3362 $this->trace = $trace;
3363 $this->passthrough = $passthrough;
3364 $this->buffer = '';
3368 * Output the trace message.
3370 * @param string $message the message to output.
3371 * @param int $depth indent depth for this message.
3372 * @return void output stored in buffer
3374 public function output($message, $depth = 0) {
3375 ob_start();
3376 $this->trace->output($message, $depth);
3377 $this->buffer .= ob_get_contents();
3378 if ($this->passthrough) {
3379 ob_end_flush();
3380 } else {
3381 ob_end_clean();
3386 * Called when the processing is finished.
3388 public function finished() {
3389 ob_start();
3390 $this->trace->finished();
3391 $this->buffer .= ob_get_contents();
3392 if ($this->passthrough) {
3393 ob_end_flush();
3394 } else {
3395 ob_end_clean();
3400 * Reset internal text buffer.
3402 public function reset_buffer() {
3403 $this->buffer = '';
3407 * Return internal text buffer.
3408 * @return string buffered plain text
3410 public function get_buffer() {
3411 return $this->buffer;
3416 * Special type of trace that can be used for redirecting to multiple other traces.
3418 * @copyright Petr Skoda {@link http://skodak.org}
3419 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3420 * @package core
3422 class combined_progress_trace extends progress_trace {
3425 * An array of traces.
3426 * @var array
3428 protected $traces;
3431 * Constructs a new instance.
3433 * @param array $traces multiple traces
3435 public function __construct(array $traces) {
3436 $this->traces = $traces;
3440 * Output an progress message in whatever format.
3442 * @param string $message the message to output.
3443 * @param integer $depth indent depth for this message.
3445 public function output($message, $depth = 0) {
3446 foreach ($this->traces as $trace) {
3447 $trace->output($message, $depth);
3452 * Called when the processing is finished.
3454 public function finished() {
3455 foreach ($this->traces as $trace) {
3456 $trace->finished();
3462 * Returns a localized sentence in the current language summarizing the current password policy
3464 * @todo this should be handled by a function/method in the language pack library once we have a support for it
3465 * @uses $CFG
3466 * @return string
3468 function print_password_policy() {
3469 global $CFG;
3471 $message = '';
3472 if (!empty($CFG->passwordpolicy)) {
3473 $messages = array();
3474 $messages[] = get_string('informminpasswordlength', 'auth', $CFG->minpasswordlength);
3475 if (!empty($CFG->minpassworddigits)) {
3476 $messages[] = get_string('informminpassworddigits', 'auth', $CFG->minpassworddigits);
3478 if (!empty($CFG->minpasswordlower)) {
3479 $messages[] = get_string('informminpasswordlower', 'auth', $CFG->minpasswordlower);
3481 if (!empty($CFG->minpasswordupper)) {
3482 $messages[] = get_string('informminpasswordupper', 'auth', $CFG->minpasswordupper);
3484 if (!empty($CFG->minpasswordnonalphanum)) {
3485 $messages[] = get_string('informminpasswordnonalphanum', 'auth', $CFG->minpasswordnonalphanum);
3488 $messages = join(', ', $messages); // This is ugly but we do not have anything better yet...
3489 $message = get_string('informpasswordpolicy', 'auth', $messages);
3491 return $message;
3495 * Get the value of a help string fully prepared for display in the current language.
3497 * @param string $identifier The identifier of the string to search for.
3498 * @param string $component The module the string is associated with.
3499 * @param boolean $ajax Whether this help is called from an AJAX script.
3500 * This is used to influence text formatting and determines
3501 * which format to output the doclink in.
3502 * @param string|object|array $a An object, string or number that can be used
3503 * within translation strings
3504 * @return Object An object containing:
3505 * - heading: Any heading that there may be for this help string.
3506 * - text: The wiki-formatted help string.
3507 * - doclink: An object containing a link, the linktext, and any additional
3508 * CSS classes to apply to that link. Only present if $ajax = false.
3509 * - completedoclink: A text representation of the doclink. Only present if $ajax = true.
3511 function get_formatted_help_string($identifier, $component, $ajax = false, $a = null) {
3512 global $CFG, $OUTPUT;
3513 $sm = get_string_manager();
3515 // Do not rebuild caches here!
3516 // Devs need to learn to purge all caches after any change or disable $CFG->langstringcache.
3518 $data = new stdClass();
3520 if ($sm->string_exists($identifier, $component)) {
3521 $data->heading = format_string(get_string($identifier, $component));
3522 } else {
3523 // Gracefully fall back to an empty string.
3524 $data->heading = '';
3527 if ($sm->string_exists($identifier . '_help', $component)) {
3528 $options = new stdClass();
3529 $options->trusted = false;
3530 $options->noclean = false;
3531 $options->smiley = false;
3532 $options->filter = false;
3533 $options->para = true;
3534 $options->newlines = false;
3535 $options->overflowdiv = !$ajax;
3537 // Should be simple wiki only MDL-21695.
3538 $data->text = format_text(get_string($identifier.'_help', $component, $a), FORMAT_MARKDOWN, $options);
3540 $helplink = $identifier . '_link';
3541 if ($sm->string_exists($helplink, $component)) { // Link to further info in Moodle docs.
3542 $link = get_string($helplink, $component);
3543 $linktext = get_string('morehelp');
3545 $data->doclink = new stdClass();
3546 $url = new moodle_url(get_docs_url($link));
3547 if ($ajax) {
3548 $data->doclink->link = $url->out();
3549 $data->doclink->linktext = $linktext;
3550 $data->doclink->class = ($CFG->doctonewwindow) ? 'helplinkpopup' : '';
3551 } else {
3552 $data->completedoclink = html_writer::tag('div', $OUTPUT->doc_link($link, $linktext),
3553 array('class' => 'helpdoclink'));
3556 } else {
3557 $data->text = html_writer::tag('p',
3558 html_writer::tag('strong', 'TODO') . ": missing help string [{$identifier}_help, {$component}]");
3560 return $data;
3564 * Renders a hidden password field so that browsers won't incorrectly autofill password fields with the user's password.
3566 * @since 3.0
3567 * @return string HTML to prevent password autofill
3569 function prevent_form_autofill_password() {
3570 global $OUTPUT;
3571 return $OUTPUT->render_from_template('core/prevent_form_autofill_password', []);