2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * This file contains the moodle_page class. There is normally a single instance
19 * of this class in the $PAGE global variable. This class is a central repository
20 * of information about the page we are building up to send back to the user.
24 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') ||
die();
31 * $PAGE is a central store of information about the current page we are
32 * generating in response to the user's request.
34 * It does not do very much itself
35 * except keep track of information, however, it serves as the access point to
36 * some more significant components like $PAGE->theme, $PAGE->requires,
39 * @copyright 2009 Tim Hunt
40 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
45 * The following properties are alphabetical. Please keep it that way so that its
48 * @property-read string $activityname The type of activity we are in, for example 'forum' or 'quiz'.
49 * Will be null if this page is not within a module.
50 * @property-read stdClass $activityrecord The row from the activities own database table (for example
51 * the forum or quiz table) that this page belongs to. Will be null
52 * if this page is not within a module.
53 * @property-read array $alternativeversions Mime type => object with ->url and ->title.
54 * @property-read block_manager $blocks The blocks manager object for this page.
55 * @property-read array $blockmanipulations
56 * @property-read string $bodyclasses A string to use within the class attribute on the body tag.
57 * @property-read string $bodyid A string to use as the id of the body tag.
58 * @property-read string $button The HTML to go where the Turn editing on button normally goes.
59 * @property-read bool $cacheable Defaults to true. Set to false to stop the page being cached at all.
60 * @property-read array $categories An array of all the categories the page course belongs to,
61 * starting with the immediately containing category, and working out to
62 * the top-level category. This may be the empty array if we are in the
64 * @property-read mixed $category The category that the page course belongs to.
65 * @property-read cm_info $cm The course_module that this page belongs to. Will be null
66 * if this page is not within a module. This is a full cm object, as loaded
67 * by get_coursemodule_from_id or get_coursemodule_from_instance,
68 * so the extra modname and name fields are present.
69 * @property-read context $context The main context to which this page belongs.
70 * @property-read stdClass $course The current course that we are inside - a row from the
71 * course table. (Also available as $COURSE global.) If we are not inside
72 * an actual course, this will be the site course.
73 * @property-read string $devicetypeinuse The name of the device type in use
74 * @property-read string $docspath The path to the Moodle docs for this page.
75 * @property-read string $focuscontrol The id of the HTML element to be focused when the page has loaded.
76 * @property-read bool $headerprinted True if the page header has already been printed.
77 * @property-read string $heading The main heading that should be displayed at the top of the <body>.
78 * @property-read string $headingmenu The menu (or actions) to display in the heading
79 * @property-read array $layout_options An arrays with options for the layout file.
80 * @property-read array $legacythemeinuse True if the legacy browser theme is in use.
81 * @property-read navbar $navbar The navbar object used to display the navbar
82 * @property-read global_navigation $navigation The navigation structure for this page.
83 * @property-read xhtml_container_stack $opencontainers Tracks XHTML tags on this page that have been opened but not closed.
84 * mainly for internal use by the rendering code.
85 * @property-read string $pagelayout The general type of page this is. For example 'normal', 'popup', 'home'.
86 * Allows the theme to display things differently, if it wishes to.
87 * @property-read string $pagetype The page type string, should be used as the id for the body tag in the theme.
88 * @property-read int $periodicrefreshdelay The periodic refresh delay to use with meta refresh
89 * @property-read page_requirements_manager $requires Tracks the JavaScript, CSS files, etc. required by this page.
90 * @property-read string $requestip The IP address of the current request, null if unknown.
91 * @property-read string $requestorigin The type of request 'web', 'ws', 'cli', 'restore', etc.
92 * @property-read settings_navigation $settingsnav The settings navigation
93 * @property-read int $state One of the STATE_... constants
94 * @property-read string $subpage The subpage identifier, if any.
95 * @property-read theme_config $theme The theme for this page.
96 * @property-read string $title The title that should go in the <head> section of the HTML of this page.
97 * @property-read moodle_url $url The moodle url object for this page.
101 /** The state of the page before it has printed the header **/
102 const STATE_BEFORE_HEADER
= 0;
104 /** The state the page is in temporarily while the header is being printed **/
105 const STATE_PRINTING_HEADER
= 1;
107 /** The state the page is in while content is presumably being printed **/
108 const STATE_IN_BODY
= 2;
111 * The state the page is when the footer has been printed and its function is
114 const STATE_DONE
= 3;
117 * @var int The current state of the page. The state a page is within
118 * determines what actions are possible for it.
120 protected $_state = self
::STATE_BEFORE_HEADER
;
123 * @var stdClass The course currently associated with this page.
124 * If not has been provided the front page course is used.
126 protected $_course = null;
129 * @var cm_info If this page belongs to a module, this is the cm_info module
130 * description object.
132 protected $_cm = null;
135 * @var stdClass If $_cm is not null, then this will hold the corresponding
136 * row from the modname table. For example, if $_cm->modname is 'quiz', this
137 * will be a row from the quiz table.
139 protected $_module = null;
142 * @var context The context that this page belongs to.
144 protected $_context = null;
147 * @var array This holds any categories that $_course belongs to, starting with the
148 * particular category it belongs to, and working out through any parent
149 * categories to the top level. These are loaded progressively, if needed.
150 * There are three states. $_categories = null initially when nothing is
151 * loaded; $_categories = array($id => $cat, $parentid => null) when we have
152 * loaded $_course->category, but not any parents; and a complete array once
153 * everything is loaded.
155 protected $_categories = null;
158 * @var array An array of CSS classes that should be added to the body tag in HTML.
160 protected $_bodyclasses = array();
163 * @var string The title for the page. Used within the title tag in the HTML head.
165 protected $_title = '';
168 * @var string The string to use as the heading of the page. Shown near the top of the
169 * page within most themes.
171 protected $_heading = '';
174 * @var string The pagetype is used to describe the page and defaults to a representation
175 * of the physical path to the page e.g. my-index, mod-quiz-attempt
177 protected $_pagetype = null;
180 * @var string The pagelayout to use when displaying this page. The
181 * pagelayout needs to have been defined by the theme in use, or one of its
182 * parents. By default base is used however standard is the more common layout.
183 * Note that this gets automatically set by core during operations like
186 protected $_pagelayout = 'base';
189 * @var array List of theme layout options, these are ignored by core.
190 * To be used in individual theme layout files only.
192 protected $_layout_options = null;
195 * @var string An optional arbitrary parameter that can be set on pages where the context
196 * and pagetype is not enough to identify the page.
198 protected $_subpage = '';
201 * @var string Set a different path to use for the 'Moodle docs for this page' link.
202 * By default, it uses the path of the file for instance mod/quiz/attempt.
204 protected $_docspath = null;
207 * @var string A legacy class that will be added to the body tag
209 protected $_legacyclass = null;
212 * @var moodle_url The URL for this page. This is mandatory and must be set
213 * before output is started.
215 protected $_url = null;
218 * @var array An array of links to alternative versions of this page.
219 * Primarily used for RSS versions of the current page.
221 protected $_alternateversions = array();
224 * @var block_manager The blocks manager for this page. It is responsible for
225 * the blocks and there content on this page.
227 protected $_blocks = null;
230 * @var page_requirements_manager Page requirements manager. It is responsible
231 * for all JavaScript and CSS resources required by this page.
233 protected $_requires = null;
236 * @var string The capability required by the user in order to edit blocks
237 * and block settings on this page.
239 protected $_blockseditingcap = 'moodle/site:manageblocks';
242 * @var bool An internal flag to record when block actions have been processed.
243 * Remember block actions occur on the current URL and it is important that
244 * even they are never executed more than once.
246 protected $_block_actions_done = false;
249 * @var array An array of any other capabilities the current user must have
250 * in order to editing the page and/or its content (not just blocks).
252 protected $_othereditingcaps = array();
255 * @var bool Sets whether this page should be cached by the browser or not.
256 * If it is set to true (default) the page is served with caching headers.
258 protected $_cacheable = true;
261 * @var string Can be set to the ID of an element on the page, if done that
262 * element receives focus when the page loads.
264 protected $_focuscontrol = '';
267 * @var string HTML to go where the turn on editing button is located. This
268 * is nearly a legacy item and not used very often any more.
270 protected $_button = '';
273 * @var theme_config The theme to use with this page. This has to be properly
274 * initialised via {@link moodle_page::initialise_theme_and_output()} which
275 * happens magically before any operation that requires it.
277 protected $_theme = null;
280 * @var global_navigation Contains the global navigation structure.
282 protected $_navigation = null;
285 * @var settings_navigation Contains the settings navigation structure.
287 protected $_settingsnav = null;
290 * @var navbar Contains the navbar structure.
292 protected $_navbar = null;
295 * @var string The menu (or actions) to display in the heading.
297 protected $_headingmenu = null;
300 * @var array stack trace. Then the theme is initialised, we save the stack
301 * trace, for use in error messages.
303 protected $_wherethemewasinitialised = null;
306 * @var xhtml_container_stack Tracks XHTML tags on this page that have been
307 * opened but not closed.
309 protected $_opencontainers;
312 * @var int Sets the page to refresh after a given delay (in seconds) using
313 * meta refresh in {@link standard_head_html()} in outputlib.php
314 * If set to null(default) the page is not refreshed
316 protected $_periodicrefreshdelay = null;
319 * @var array Associative array of browser shortnames (as used by check_browser_version)
320 * and their minimum required versions
322 protected $_legacybrowsers = array('MSIE' => 6.0);
325 * @var string Is set to the name of the device type in use.
326 * This will we worked out when it is first used.
328 protected $_devicetypeinuse = null;
331 * @var bool Used to determine if HTTPS should be required for login.
333 protected $_https_login_required = false;
336 * @var bool Determines if popup notifications allowed on this page.
337 * Code such as the quiz module disables popup notifications in situations
338 * such as upgrading or completing a quiz.
340 protected $_popup_notification_allowed = true;
342 // Magic getter methods =============================================================
343 // Due to the __get magic below, you normally do not call these as $PAGE->magic_get_x
344 // methods, but instead use the $PAGE->x syntax.
347 * Please do not call this method directly, use the ->state syntax. {@link moodle_page::__get()}.
348 * @return integer one of the STATE_XXX constants. You should not normally need
349 * to use this in your code. It is intended for internal use by this class
350 * and its friends like print_header, to check that everything is working as
351 * expected. Also accessible as $PAGE->state.
353 protected function magic_get_state() {
354 return $this->_state
;
358 * Please do not call this method directly, use the ->headerprinted syntax. {@link moodle_page::__get()}.
359 * @return bool has the header already been printed?
361 protected function magic_get_headerprinted() {
362 return $this->_state
>= self
::STATE_IN_BODY
;
366 * Please do not call this method directly, use the ->course syntax. {@link moodle_page::__get()}.
367 * @return stdClass the current course that we are inside - a row from the
368 * course table. (Also available as $COURSE global.) If we are not inside
369 * an actual course, this will be the site course.
371 protected function magic_get_course() {
373 if (is_null($this->_course
)) {
376 return $this->_course
;
380 * Please do not call this method directly, use the ->cm syntax. {@link moodle_page::__get()}.
381 * @return cm_info the course_module that this page belongs to. Will be null
382 * if this page is not within a module. This is a full cm object, as loaded
383 * by get_coursemodule_from_id or get_coursemodule_from_instance,
384 * so the extra modname and name fields are present.
386 protected function magic_get_cm() {
391 * Please do not call this method directly, use the ->activityrecord syntax. {@link moodle_page::__get()}.
392 * @return stdClass the row from the activities own database table (for example
393 * the forum or quiz table) that this page belongs to. Will be null
394 * if this page is not within a module.
396 protected function magic_get_activityrecord() {
397 if (is_null($this->_module
) && !is_null($this->_cm
)) {
398 $this->load_activity_record();
400 return $this->_module
;
404 * Please do not call this method directly, use the ->activityname syntax. {@link moodle_page::__get()}.
405 * @return string the The type of activity we are in, for example 'forum' or 'quiz'.
406 * Will be null if this page is not within a module.
408 protected function magic_get_activityname() {
409 if (is_null($this->_cm
)) {
412 return $this->_cm
->modname
;
416 * Please do not call this method directly, use the ->category syntax. {@link moodle_page::__get()}.
417 * @return stdClass the category that the page course belongs to. If there isn't one
418 * (that is, if this is the front page course) returns null.
420 protected function magic_get_category() {
421 $this->ensure_category_loaded();
422 if (!empty($this->_categories
)) {
423 return reset($this->_categories
);
430 * Please do not call this method directly, use the ->categories syntax. {@link moodle_page::__get()}.
431 * @return array an array of all the categories the page course belongs to,
432 * starting with the immediately containing category, and working out to
433 * the top-level category. This may be the empty array if we are in the
436 protected function magic_get_categories() {
437 $this->ensure_categories_loaded();
438 return $this->_categories
;
442 * Please do not call this method directly, use the ->context syntax. {@link moodle_page::__get()}.
443 * @return context the main context to which this page belongs.
445 protected function magic_get_context() {
447 if (is_null($this->_context
)) {
448 if (CLI_SCRIPT
or NO_MOODLE_COOKIES
) {
449 // Cli scripts work in system context, do not annoy devs with debug info.
450 // Very few scripts do not use cookies, we can safely use system as default context there.
451 } else if (AJAX_SCRIPT
&& $CFG->debugdeveloper
) {
452 // Throw exception inside AJAX script in developer mode, otherwise the debugging message may be missed.
453 throw new coding_exception('$PAGE->context was not set. You may have forgotten '
454 .'to call require_login() or $PAGE->set_context()');
456 debugging('Coding problem: $PAGE->context was not set. You may have forgotten '
457 .'to call require_login() or $PAGE->set_context(). The page may not display '
458 .'correctly as a result');
460 $this->_context
= context_system
::instance();
462 return $this->_context
;
466 * Please do not call this method directly, use the ->pagetype syntax. {@link moodle_page::__get()}.
467 * @return string e.g. 'my-index' or 'mod-quiz-attempt'.
469 protected function magic_get_pagetype() {
471 if (is_null($this->_pagetype
) ||
isset($CFG->pagepath
)) {
472 $this->initialise_default_pagetype();
474 return $this->_pagetype
;
478 * Please do not call this method directly, use the ->pagetype syntax. {@link moodle_page::__get()}.
479 * @return string The id to use on the body tag, uses {@link magic_get_pagetype()}.
481 protected function magic_get_bodyid() {
482 return 'page-'.$this->pagetype
;
486 * Please do not call this method directly, use the ->pagelayout syntax. {@link moodle_page::__get()}.
487 * @return string the general type of page this is. For example 'standard', 'popup', 'home'.
488 * Allows the theme to display things differently, if it wishes to.
490 protected function magic_get_pagelayout() {
491 return $this->_pagelayout
;
495 * Please do not call this method directly, use the ->layout_options syntax. {@link moodle_page::__get()}.
496 * @return array returns arrays with options for layout file
498 protected function magic_get_layout_options() {
499 if (!is_array($this->_layout_options
)) {
500 $this->_layout_options
= $this->_theme
->pagelayout_options($this->pagelayout
);
502 return $this->_layout_options
;
506 * Please do not call this method directly, use the ->subpage syntax. {@link moodle_page::__get()}.
507 * @return string The subpage identifier, if any.
509 protected function magic_get_subpage() {
510 return $this->_subpage
;
514 * Please do not call this method directly, use the ->bodyclasses syntax. {@link moodle_page::__get()}.
515 * @return string the class names to put on the body element in the HTML.
517 protected function magic_get_bodyclasses() {
518 return implode(' ', array_keys($this->_bodyclasses
));
522 * Please do not call this method directly, use the ->title syntax. {@link moodle_page::__get()}.
523 * @return string the title that should go in the <head> section of the HTML of this page.
525 protected function magic_get_title() {
526 return $this->_title
;
530 * Please do not call this method directly, use the ->heading syntax. {@link moodle_page::__get()}.
531 * @return string the main heading that should be displayed at the top of the <body>.
533 protected function magic_get_heading() {
534 return $this->_heading
;
538 * Please do not call this method directly, use the ->heading syntax. {@link moodle_page::__get()}.
539 * @return string The menu (or actions) to display in the heading
541 protected function magic_get_headingmenu() {
542 return $this->_headingmenu
;
546 * Please do not call this method directly, use the ->docspath syntax. {@link moodle_page::__get()}.
547 * @return string the path to the Moodle docs for this page.
549 protected function magic_get_docspath() {
550 if (is_string($this->_docspath
)) {
551 return $this->_docspath
;
553 return str_replace('-', '/', $this->pagetype
);
558 * Please do not call this method directly, use the ->url syntax. {@link moodle_page::__get()}.
559 * @return moodle_url the clean URL required to load the current page. (You
560 * should normally use this in preference to $ME or $FULLME.)
562 protected function magic_get_url() {
564 if (is_null($this->_url
)) {
565 debugging('This page did not call $PAGE->set_url(...). Using '.s($FULLME), DEBUG_DEVELOPER
);
566 $this->_url
= new moodle_url($FULLME);
567 // Make sure the guessed URL cannot lead to dangerous redirects.
568 $this->_url
->remove_params('sesskey');
570 return new moodle_url($this->_url
); // Return a clone for safety.
574 * The list of alternate versions of this page.
575 * @return array mime type => object with ->url and ->title.
577 protected function magic_get_alternateversions() {
578 return $this->_alternateversions
;
582 * Please do not call this method directly, use the ->blocks syntax. {@link moodle_page::__get()}.
583 * @return block_manager the blocks manager object for this page.
585 protected function magic_get_blocks() {
587 if (is_null($this->_blocks
)) {
588 if (!empty($CFG->blockmanagerclass
)) {
589 if (!empty($CFG->blockmanagerclassfile
)) {
590 require_once($CFG->blockmanagerclassfile
);
592 $classname = $CFG->blockmanagerclass
;
594 $classname = 'block_manager';
596 $this->_blocks
= new $classname($this);
598 return $this->_blocks
;
602 * Please do not call this method directly, use the ->requires syntax. {@link moodle_page::__get()}.
603 * @return page_requirements_manager tracks the JavaScript, CSS files, etc. required by this page.
605 protected function magic_get_requires() {
606 if (is_null($this->_requires
)) {
607 $this->_requires
= new page_requirements_manager();
609 return $this->_requires
;
613 * Please do not call this method directly, use the ->cacheable syntax. {@link moodle_page::__get()}.
614 * @return bool can this page be cached by the user's browser.
616 protected function magic_get_cacheable() {
617 return $this->_cacheable
;
621 * Please do not call this method directly, use the ->focuscontrol syntax. {@link moodle_page::__get()}.
622 * @return string the id of the HTML element to be focused when the page has loaded.
624 protected function magic_get_focuscontrol() {
625 return $this->_focuscontrol
;
629 * Please do not call this method directly, use the ->button syntax. {@link moodle_page::__get()}.
630 * @return string the HTML to go where the Turn editing on button normally goes.
632 protected function magic_get_button() {
633 return $this->_button
;
637 * Please do not call this method directly, use the ->theme syntax. {@link moodle_page::__get()}.
638 * @return theme_config the initialised theme for this page.
640 protected function magic_get_theme() {
641 if (is_null($this->_theme
)) {
642 $this->initialise_theme_and_output();
644 return $this->_theme
;
648 * Returns an array of minipulations or false if there are none to make.
650 * @since Moodle 2.5.1 2.6
653 protected function magic_get_blockmanipulations() {
654 if (!right_to_left()) {
657 if (is_null($this->_theme
)) {
658 $this->initialise_theme_and_output();
660 return $this->_theme
->blockrtlmanipulations
;
664 * Please do not call this method directly, use the ->devicetypeinuse syntax. {@link moodle_page::__get()}.
665 * @return string The device type being used.
667 protected function magic_get_devicetypeinuse() {
668 if (empty($this->_devicetypeinuse
)) {
669 $this->_devicetypeinuse
= core_useragent
::get_user_device_type();
671 return $this->_devicetypeinuse
;
675 * Please do not call this method directly use the ->periodicrefreshdelay syntax
676 * {@link moodle_page::__get()}
677 * @return int The periodic refresh delay to use with meta refresh
679 protected function magic_get_periodicrefreshdelay() {
680 return $this->_periodicrefreshdelay
;
684 * Please do not call this method directly use the ->opencontainers syntax. {@link moodle_page::__get()}
685 * @return xhtml_container_stack tracks XHTML tags on this page that have been opened but not closed.
686 * mainly for internal use by the rendering code.
688 protected function magic_get_opencontainers() {
689 if (is_null($this->_opencontainers
)) {
690 $this->_opencontainers
= new xhtml_container_stack();
692 return $this->_opencontainers
;
696 * Return the navigation object
697 * @return global_navigation
699 protected function magic_get_navigation() {
700 if ($this->_navigation
=== null) {
701 $this->_navigation
= new global_navigation($this);
703 return $this->_navigation
;
707 * Return a navbar object
710 protected function magic_get_navbar() {
711 if ($this->_navbar
=== null) {
712 $this->_navbar
= new navbar($this);
714 return $this->_navbar
;
718 * Returns the settings navigation object
719 * @return settings_navigation
721 protected function magic_get_settingsnav() {
722 if ($this->_settingsnav
=== null) {
723 $this->_settingsnav
= new settings_navigation($this);
724 $this->_settingsnav
->initialise();
726 return $this->_settingsnav
;
730 * Returns request IP address.
732 * @return string IP address or null if unknown
734 protected function magic_get_requestip() {
735 return getremoteaddr(null);
739 * Returns the origin of current request.
741 * Note: constants are not required because we need to use these values in logging and reports.
743 * @return string 'web', 'ws', 'cli', 'restore', etc.
745 protected function magic_get_requestorigin() {
746 if (class_exists('restore_controller', false) && restore_controller
::is_executing()) {
762 * PHP overloading magic to make the $PAGE->course syntax work by redirecting
763 * it to the corresponding $PAGE->magic_get_course() method if there is one, and
764 * throwing an exception if not.
766 * @param string $name property name
768 * @throws coding_exception
770 public function __get($name) {
771 $getmethod = 'magic_get_' . $name;
772 if (method_exists($this, $getmethod)) {
773 return $this->$getmethod();
775 throw new coding_exception('Unknown property ' . $name . ' of $PAGE.');
780 * PHP overloading magic to catch obvious coding errors.
782 * This method has been created to catch obvious coding errors where the
783 * developer has tried to set a page property using $PAGE->key = $value.
784 * In the moodle_page class all properties must be set using the appropriate
785 * $PAGE->set_something($value) method.
787 * @param string $name property name
788 * @param mixed $value Value
789 * @return void Throws exception if field not defined in page class
790 * @throws coding_exception
792 public function __set($name, $value) {
793 if (method_exists($this, 'set_' . $name)) {
794 throw new coding_exception('Invalid attempt to modify page object', "Use \$PAGE->set_$name() instead.");
796 throw new coding_exception('Invalid attempt to modify page object', "Unknown property $name");
800 // Other information getting methods ==========================================.
803 * Returns instance of page renderer
805 * @param string $component name such as 'core', 'mod_forum' or 'qtype_multichoice'.
806 * @param string $subtype optional subtype such as 'news' resulting to 'mod_forum_news'
807 * @param string $target one of rendering target constants
808 * @return renderer_base
810 public function get_renderer($component, $subtype = null, $target = null) {
811 if ($this->pagelayout
=== 'maintenance') {
812 // If the page is using the maintenance layout then we're going to force target to maintenance.
813 // This leads to a special core renderer that is designed to block access to API's that are likely unavailable for this
815 $target = RENDERER_TARGET_MAINTENANCE
;
817 return $this->magic_get_theme()->get_renderer($this, $component, $subtype, $target);
821 * Checks to see if there are any items on the navbar object
823 * @return bool true if there are, false if not
825 public function has_navbar() {
826 if ($this->_navbar
=== null) {
827 $this->_navbar
= new navbar($this);
829 return $this->_navbar
->has_items();
833 * Switches from the regular requirements manager to the fragment requirements manager to
834 * capture all necessary JavaScript to display a chunk of HTML such as an mform. This is for use
835 * by the get_fragment() web service and not for use elsewhere.
837 public function start_collecting_javascript_requirements() {
839 require_once($CFG->libdir
.'/outputfragmentrequirementslib.php');
841 // Check that the requirements manager has not already been switched.
842 if (get_class($this->_requires
) == 'fragment_requirements_manager') {
843 throw new coding_exception('JavaScript collection has already been started.');
845 // The header needs to have been called to flush out the generic JavaScript for the page. This allows only
846 // JavaScript for the fragment to be collected. _wherethemewasinitialised is set when header() is called.
847 if (!empty($this->_wherethemewasinitialised
)) {
848 // Change the current requirements manager over to the fragment manager to capture JS.
849 $this->_requires
= new fragment_requirements_manager();
851 throw new coding_exception('$OUTPUT->header() needs to be called before collecting JavaScript requirements.');
856 * Should the current user see this page in editing mode.
857 * That is, are they allowed to edit this page, and are they currently in
861 public function user_is_editing() {
863 return !empty($USER->editing
) && $this->user_allowed_editing();
867 * Does the user have permission to edit blocks on this page.
870 public function user_can_edit_blocks() {
871 return has_capability($this->_blockseditingcap
, $this->_context
);
875 * Does the user have permission to see this page in editing mode.
878 public function user_allowed_editing() {
879 return has_any_capability($this->all_editing_caps(), $this->_context
);
883 * Get a description of this page. Normally displayed in the footer in developer debug mode.
886 public function debug_summary() {
888 $summary .= 'General type: ' . $this->pagelayout
. '. ';
889 if (!during_initial_install()) {
890 $summary .= 'Context ' . $this->context
->get_context_name() . ' (context id ' . $this->_context
->id
. '). ';
892 $summary .= 'Page type ' . $this->pagetype
. '. ';
893 if ($this->subpage
) {
894 $summary .= 'Sub-page ' . $this->subpage
. '. ';
899 // Setter methods =============================================================.
904 * The state must be one of that STATE_... constants, and the state is only allowed to advance one step at a time.
906 * @param int $state The new state.
907 * @throws coding_exception
909 public function set_state($state) {
910 if ($state != $this->_state +
1 ||
$state > self
::STATE_DONE
) {
911 throw new coding_exception('Invalid state passed to moodle_page::set_state. We are in state ' .
912 $this->_state
. ' and state ' . $state . ' was requested.');
915 if ($state == self
::STATE_PRINTING_HEADER
) {
916 $this->starting_output();
919 $this->_state
= $state;
923 * Set the current course. This sets both $PAGE->course and $COURSE. It also
924 * sets the right theme and locale.
926 * Normally you don't need to call this function yourself, require_login will
927 * call it for you if you pass a $course to it. You can use this function
928 * on pages that do need to call require_login().
930 * Sets $PAGE->context to the course context, if it is not already set.
932 * @param stdClass $course the course to set as the global course.
933 * @throws coding_exception
935 public function set_course($course) {
936 global $COURSE, $PAGE, $CFG, $SITE;
938 if (empty($course->id
)) {
939 throw new coding_exception('$course passed to moodle_page::set_course does not look like a proper course object.');
942 $this->ensure_theme_not_set();
944 if (!empty($this->_course
->id
) && $this->_course
->id
!= $course->id
) {
945 $this->_categories
= null;
948 $this->_course
= clone($course);
950 if ($this === $PAGE) {
951 $COURSE = $this->_course
;
955 if (!$this->_context
) {
956 $this->set_context(context_course
::instance($this->_course
->id
));
959 // Notify course format that this page is set for the course.
960 if ($this->_course
->id
!= $SITE->id
) {
961 require_once($CFG->dirroot
.'/course/lib.php');
962 $courseformat = course_get_format($this->_course
);
963 $this->add_body_class('format-'. $courseformat->get_format());
964 $courseformat->page_set_course($this);
966 $this->add_body_class('format-site');
971 * Set the main context to which this page belongs.
973 * @param context $context a context object. You normally get this with context_xxxx::instance().
975 public function set_context($context) {
976 if ($context === null) {
977 // Extremely ugly hack which sets context to some value in order to prevent warnings,
978 // use only for core error handling!!!!
979 if (!$this->_context
) {
980 $this->_context
= context_system
::instance();
985 // Ideally we should set context only once.
986 if (isset($this->_context
) && $context->id
!== $this->_context
->id
) {
987 $current = $this->_context
->contextlevel
;
988 if ($current == CONTEXT_SYSTEM
or $current == CONTEXT_COURSE
) {
989 // Hmm - not ideal, but it might produce too many warnings due to the design of require_login.
990 } else if ($current == CONTEXT_MODULE
and ($parentcontext = $context->get_parent_context()) and
991 $this->_context
->id
== $parentcontext->id
) {
992 // Hmm - most probably somebody did require_login() and after that set the block context.
994 // We do not want devs to do weird switching of context levels on the fly because we might have used
995 // the context already such as in text filter in page title.
996 // This is explicitly allowed for webservices though which may
997 // call "external_api::validate_context on many contexts in a single request.
999 debugging("Coding problem: unsupported modification of PAGE->context from {$current} to {$context->contextlevel}");
1004 $this->_context
= $context;
1008 * The course module that this page belongs to (if it does belong to one).
1010 * @param stdClass|cm_info $cm a record from course_modules table or cm_info from get_fast_modinfo().
1011 * @param stdClass $course
1012 * @param stdClass $module
1014 * @throws coding_exception
1016 public function set_cm($cm, $course = null, $module = null) {
1017 global $DB, $CFG, $SITE;
1019 if (!isset($cm->id
) ||
!isset($cm->course
)) {
1020 throw new coding_exception('Invalid $cm. It has to be instance of cm_info or record from the course_modules table.');
1023 if (!$this->_course ||
$this->_course
->id
!= $cm->course
) {
1025 $course = $DB->get_record('course', array('id' => $cm->course
), '*', MUST_EXIST
);
1027 if ($course->id
!= $cm->course
) {
1028 throw new coding_exception('The course you passed to $PAGE->set_cm does not correspond to the $cm.');
1030 $this->set_course($course);
1033 // Make sure we have a $cm from get_fast_modinfo as this contains activity access details.
1034 if (!($cm instanceof cm_info
)) {
1035 $modinfo = get_fast_modinfo($this->_course
);
1036 $cm = $modinfo->get_cm($cm->id
);
1040 // Unfortunately the context setting is a mess.
1041 // Let's try to work around some common block problems and show some debug messages.
1042 if (empty($this->_context
) or $this->_context
->contextlevel
!= CONTEXT_BLOCK
) {
1043 $context = context_module
::instance($cm->id
);
1044 $this->set_context($context);
1048 $this->set_activity_record($module);
1051 // Notify course format that this page is set for the course module.
1052 if ($this->_course
->id
!= $SITE->id
) {
1053 require_once($CFG->dirroot
.'/course/lib.php');
1054 course_get_format($this->_course
)->page_set_cm($this);
1059 * Sets the activity record. This could be a row from the main table for a
1060 * module. For instance if the current module (cm) is a forum this should be a row
1061 * from the forum table.
1063 * @param stdClass $module A row from the main database table for the module that this page belongs to.
1064 * @throws coding_exception
1066 public function set_activity_record($module) {
1067 if (is_null($this->_cm
)) {
1068 throw new coding_exception('You cannot call $PAGE->set_activity_record until after $PAGE->cm has been set.');
1070 if ($module->id
!= $this->_cm
->instance ||
$module->course
!= $this->_course
->id
) {
1071 throw new coding_exception('The activity record does not seem to correspond to the cm that has been set.');
1073 $this->_module
= $module;
1077 * Sets the pagetype to use for this page.
1079 * Normally you do not need to set this manually, it is automatically created
1080 * from the script name. However, on some pages this is overridden.
1081 * For example the page type for course/view.php includes the course format,
1082 * for example 'course-view-weeks'. This gets used as the id attribute on
1083 * <body> and also for determining which blocks are displayed.
1085 * @param string $pagetype e.g. 'my-index' or 'mod-quiz-attempt'.
1087 public function set_pagetype($pagetype) {
1088 $this->_pagetype
= $pagetype;
1092 * Sets the layout to use for this page.
1094 * The page layout determines how the page will be displayed, things such as
1095 * block regions, content areas, etc are controlled by the layout.
1096 * The theme in use for the page will determine that the layout contains.
1098 * This properly defaults to 'base', so you only need to call this function if
1099 * you want something different. The exact range of supported layouts is specified
1100 * in the standard theme.
1102 * For an idea of the common page layouts see
1103 * {@link http://docs.moodle.org/dev/Themes_2.0#The_different_layouts_as_of_August_17th.2C_2010}
1104 * But please keep in mind that it may be (and normally is) out of date.
1105 * The only place to find an accurate up-to-date list of the page layouts
1106 * available for your version of Moodle is {@link theme/base/config.php}
1108 * @param string $pagelayout the page layout this is. For example 'popup', 'home'.
1110 public function set_pagelayout($pagelayout) {
1111 // Uncomment this to debug theme pagelayout issues like missing blocks.
1112 // if (!empty($this->_wherethemewasinitialised) && $pagelayout != $this->_pagelayout)
1113 // debugging('Page layout has already been set and cannot be changed.', DEBUG_DEVELOPER);
1114 $this->_pagelayout
= $pagelayout;
1118 * If context->id and pagetype are not enough to uniquely identify this page,
1119 * then you can set a subpage id as well. For example, the tags page sets
1121 * @param string $subpage an arbitrary identifier that, along with context->id
1122 * and pagetype, uniquely identifies this page.
1124 public function set_subpage($subpage) {
1125 if (empty($subpage)) {
1126 $this->_subpage
= '';
1128 $this->_subpage
= $subpage;
1133 * Adds a CSS class to the body tag of the page.
1135 * @param string $class add this class name ot the class attribute on the body tag.
1136 * @throws coding_exception
1138 public function add_body_class($class) {
1139 if ($this->_state
> self
::STATE_BEFORE_HEADER
) {
1140 throw new coding_exception('Cannot call moodle_page::add_body_class after output has been started.');
1142 $this->_bodyclasses
[$class] = 1;
1146 * Adds an array of body classes to the body tag of this page.
1148 * @param array $classes this utility method calls add_body_class for each array element.
1150 public function add_body_classes($classes) {
1151 foreach ($classes as $class) {
1152 $this->add_body_class($class);
1157 * Sets the title for the page.
1158 * This is normally used within the title tag in the head of the page.
1160 * @param string $title the title that should go in the <head> section of the HTML of this page.
1162 public function set_title($title) {
1163 $title = format_string($title);
1164 $title = strip_tags($title);
1165 $title = str_replace('"', '"', $title);
1166 $this->_title
= $title;
1170 * Sets the heading to use for the page.
1171 * This is normally used as the main heading at the top of the content.
1173 * @param string $heading the main heading that should be displayed at the top of the <body>.
1175 public function set_heading($heading) {
1176 $this->_heading
= format_string($heading);
1180 * Sets some HTML to use next to the heading {@link moodle_page::set_heading()}
1182 * @param string $menu The menu/content to show in the heading
1184 public function set_headingmenu($menu) {
1185 $this->_headingmenu
= $menu;
1189 * Set the course category this page belongs to manually.
1191 * This automatically sets $PAGE->course to be the site course. You cannot
1192 * use this method if you have already set $PAGE->course - in that case,
1193 * the category must be the one that the course belongs to. This also
1194 * automatically sets the page context to the category context.
1196 * @param int $categoryid The id of the category to set.
1197 * @throws coding_exception
1199 public function set_category_by_id($categoryid) {
1201 if (!is_null($this->_course
)) {
1202 throw new coding_exception('Course has already been set. You cannot change the category now.');
1204 if (is_array($this->_categories
)) {
1205 throw new coding_exception('Course category has already been set. You cannot to change it now.');
1207 $this->ensure_theme_not_set();
1208 $this->set_course($SITE);
1209 $this->load_category($categoryid);
1210 $this->set_context(context_coursecat
::instance($categoryid));
1214 * Set a different path to use for the 'Moodle docs for this page' link.
1216 * By default, it uses the pagetype, which is normally the same as the
1217 * script name. So, for example, for mod/quiz/attempt.php, pagetype is
1218 * mod-quiz-attempt, and so docspath is mod/quiz/attempt.
1220 * @param string $path the path to use at the end of the moodle docs URL.
1222 public function set_docs_path($path) {
1223 $this->_docspath
= $path;
1227 * You should call this method from every page to set the URL that should be used to return to this page.
1229 * Used, for example, by the blocks editing UI to know where to return the
1230 * user after an action.
1231 * For example, course/view.php does:
1232 * $id = optional_param('id', 0, PARAM_INT);
1233 * $PAGE->set_url('/course/view.php', array('id' => $id));
1235 * @param moodle_url|string $url URL relative to $CFG->wwwroot or {@link moodle_url} instance
1236 * @param array $params parameters to add to the URL
1237 * @throws coding_exception
1239 public function set_url($url, array $params = null) {
1242 if (is_string($url) && strpos($url, 'http') !== 0) {
1243 if (strpos($url, '/') === 0) {
1244 // We have to use httpswwwroot here, because of loginhttps pages.
1245 $url = $CFG->httpswwwroot
. $url;
1247 throw new coding_exception('Invalid parameter $url, has to be full url or in shortened form starting with /.');
1251 $this->_url
= new moodle_url($url, $params);
1253 $fullurl = $this->_url
->out_omit_querystring();
1254 if (strpos($fullurl, "$CFG->httpswwwroot/") !== 0) {
1255 debugging('Most probably incorrect set_page() url argument, it does not match the httpswwwroot!');
1257 $shorturl = str_replace("$CFG->httpswwwroot/", '', $fullurl);
1259 if (is_null($this->_pagetype
)) {
1260 $this->initialise_default_pagetype($shorturl);
1265 * Make sure page URL does not contain the given URL parameter.
1267 * This should not be necessary if the script has called set_url properly.
1268 * However, in some situations like the block editing actions; when the URL
1269 * has been guessed, it will contain dangerous block-related actions.
1270 * Therefore, the blocks code calls this function to clean up such parameters
1271 * before doing any redirect.
1273 * @param string $param the name of the parameter to make sure is not in the
1276 public function ensure_param_not_in_url($param) {
1277 $this->_url
->remove_params($param);
1281 * Sets an alternative version of this page.
1283 * There can be alternate versions of some pages (for example an RSS feed version).
1284 * Call this method for each alternative version available.
1285 * For each alternative version a link will be included in the <head> tag.
1287 * @param string $title The title to give the alternate version.
1288 * @param string|moodle_url $url The URL of the alternate version.
1289 * @param string $mimetype The mime-type of the alternate version.
1290 * @throws coding_exception
1292 public function add_alternate_version($title, $url, $mimetype) {
1293 if ($this->_state
> self
::STATE_BEFORE_HEADER
) {
1294 throw new coding_exception('Cannot call moodle_page::add_alternate_version after output has been started.');
1296 $alt = new stdClass
;
1297 $alt->title
= $title;
1299 $this->_alternateversions
[$mimetype] = $alt;
1303 * Specify a form control should be focused when the page has loaded.
1305 * @param string $controlid the id of the HTML element to be focused.
1307 public function set_focuscontrol($controlid) {
1308 $this->_focuscontrol
= $controlid;
1312 * Specify a fragment of HTML that goes where the 'Turn editing on' button normally goes.
1314 * @param string $html the HTML to display there.
1316 public function set_button($html) {
1317 $this->_button
= $html;
1321 * Set the capability that allows users to edit blocks on this page.
1323 * Normally the default of 'moodle/site:manageblocks' is used, but a few
1324 * pages like the My Moodle page need to use a different capability
1325 * like 'moodle/my:manageblocks'.
1327 * @param string $capability a capability.
1329 public function set_blocks_editing_capability($capability) {
1330 $this->_blockseditingcap
= $capability;
1334 * Some pages let you turn editing on for reasons other than editing blocks.
1335 * If that is the case, you can pass other capabilities that let the user
1336 * edit this page here.
1338 * @param string|array $capability either a capability, or an array of capabilities.
1340 public function set_other_editing_capability($capability) {
1341 if (is_array($capability)) {
1342 $this->_othereditingcaps
= array_unique($this->_othereditingcaps +
$capability);
1344 $this->_othereditingcaps
[] = $capability;
1349 * Sets whether the browser should cache this page or not.
1351 * @param bool $cacheable can this page be cached by the user's browser.
1353 public function set_cacheable($cacheable) {
1354 $this->_cacheable
= $cacheable;
1358 * Sets the page to periodically refresh
1360 * This function must be called before $OUTPUT->header has been called or
1361 * a coding exception will be thrown.
1363 * @param int $delay Sets the delay before refreshing the page, if set to null refresh is cancelled.
1364 * @throws coding_exception
1366 public function set_periodic_refresh_delay($delay = null) {
1367 if ($this->_state
> self
::STATE_BEFORE_HEADER
) {
1368 throw new coding_exception('You cannot set a periodic refresh delay after the header has been printed');
1370 if ($delay === null) {
1371 $this->_periodicrefreshdelay
= null;
1372 } else if (is_int($delay)) {
1373 $this->_periodicrefreshdelay
= $delay;
1378 * Force this page to use a particular theme.
1380 * Please use this cautiously.
1381 * It is only intended to be used by the themes selector admin page.
1383 * @param string $themename the name of the theme to use.
1385 public function force_theme($themename) {
1386 $this->ensure_theme_not_set();
1387 $this->_theme
= theme_config
::load($themename);
1391 * Reload theme settings.
1393 * This is used when we need to reset settings
1394 * because they are now double cached in theme.
1396 public function reload_theme() {
1397 if (!is_null($this->_theme
)) {
1398 $this->_theme
= theme_config
::load($this->_theme
->name
);
1403 * This function indicates that current page requires the https when $CFG->loginhttps enabled.
1405 * By using this function properly, we can ensure 100% https-ized pages
1406 * at our entire discretion (login, forgot_password, change_password)
1409 * @throws coding_exception
1411 public function https_required() {
1414 if (!is_null($this->_url
)) {
1415 throw new coding_exception('https_required() must be used before setting page url!');
1418 $this->ensure_theme_not_set();
1420 $this->_https_login_required
= true;
1422 if (!empty($CFG->loginhttps
)) {
1423 $CFG->httpswwwroot
= str_replace('http:', 'https:', $CFG->wwwroot
);
1425 $CFG->httpswwwroot
= $CFG->wwwroot
;
1430 * Makes sure that page previously marked with https_required() is really using https://, if not it redirects to https://
1432 * @return void (may redirect to https://self)
1433 * @throws coding_exception
1435 public function verify_https_required() {
1436 global $CFG, $FULLME;
1438 if (is_null($this->_url
)) {
1439 throw new coding_exception('verify_https_required() must be called after setting page url!');
1442 if (!$this->_https_login_required
) {
1443 throw new coding_exception('verify_https_required() must be called only after https_required()!');
1446 if (empty($CFG->loginhttps
)) {
1447 // Https not required, so stop checking.
1451 if (strpos($this->_url
, 'https://')) {
1452 // Detect if incorrect PAGE->set_url() used, it is recommended to use root-relative paths there.
1453 throw new coding_exception('Invalid page url. It must start with https:// for pages that set https_required()!');
1456 if (!empty($CFG->sslproxy
)) {
1457 // It does not make much sense to use sslproxy and loginhttps at the same time.
1461 // Now the real test and redirect!
1462 // NOTE: do NOT use this test for detection of https on current page because this code is not compatible with SSL proxies,
1463 // instead use is_https().
1464 if (strpos($FULLME, 'https:') !== 0) {
1465 // This may lead to infinite redirect on an incorrectly configured site.
1466 // In that case set $CFG->loginhttps=0; within /config.php.
1467 redirect($this->_url
);
1471 // Initialisation methods =====================================================
1472 // These set various things up in a default way.
1475 * This method is called when the page first moves out of the STATE_BEFORE_HEADER
1476 * state. This is our last change to initialise things.
1478 protected function starting_output() {
1481 if (!during_initial_install()) {
1482 $this->blocks
->load_blocks();
1483 if (empty($this->_block_actions_done
)) {
1484 $this->_block_actions_done
= true;
1485 if ($this->blocks
->process_url_actions($this)) {
1486 redirect($this->url
->out(false));
1489 $this->blocks
->create_all_block_instances();
1492 // If maintenance mode is on, change the page header.
1493 if (!empty($CFG->maintenance_enabled
)) {
1494 $this->set_button('<a href="' . $CFG->wwwroot
. '/' . $CFG->admin
.
1495 '/settings.php?section=maintenancemode">' . get_string('maintenancemode', 'admin') .
1496 '</a> ' . $this->button
);
1498 $title = $this->title
;
1502 $this->set_title($title . get_string('maintenancemode', 'admin'));
1504 // Show the messaging popup if there are messages.
1505 message_popup_window();
1508 $this->initialise_standard_body_classes();
1512 * Method for use by Moodle core to set up the theme. Do not
1513 * use this in your own code.
1515 * Make sure the right theme for this page is loaded. Tell our
1516 * blocks_manager about the theme block regions, and then, if
1517 * we are $PAGE, set up the global $OUTPUT.
1521 public function initialise_theme_and_output() {
1522 global $OUTPUT, $PAGE, $SITE, $CFG;
1524 if (!empty($this->_wherethemewasinitialised
)) {
1528 if (!during_initial_install()) {
1529 // Detect PAGE->context mess.
1530 $this->magic_get_context();
1533 if (!$this->_course
&& !during_initial_install()) {
1534 $this->set_course($SITE);
1537 if (is_null($this->_theme
)) {
1538 $themename = $this->resolve_theme();
1539 $this->_theme
= theme_config
::load($themename);
1542 $this->_theme
->setup_blocks($this->pagelayout
, $this->blocks
);
1543 if ($this->_theme
->enable_dock
&& !empty($CFG->allowblockstodock
)) {
1544 $this->requires
->strings_for_js(array('addtodock', 'undockitem', 'dockblock', 'undockblock', 'undockall', 'hidedockpanel', 'hidepanel'), 'block');
1545 $this->requires
->string_for_js('thisdirectionvertical', 'langconfig');
1546 $this->requires
->yui_module('moodle-core-dock-loader', 'M.core.dock.loader.initLoader');
1549 if ($this === $PAGE) {
1551 if ($this->pagelayout
=== 'maintenance') {
1552 // If the page is using the maintenance layout then we're going to force target to maintenance.
1553 // This leads to a special core renderer that is designed to block access to API's that are likely unavailable for this
1555 $target = RENDERER_TARGET_MAINTENANCE
;
1557 $OUTPUT = $this->get_renderer('core', null, $target);
1560 $this->_wherethemewasinitialised
= debug_backtrace();
1564 * Work out the theme this page should use.
1566 * This depends on numerous $CFG settings, and the properties of this page.
1568 * @return string the name of the theme that should be used on this page.
1570 protected function resolve_theme() {
1571 global $CFG, $USER, $SESSION;
1573 if (empty($CFG->themeorder
)) {
1574 $themeorder = array('course', 'category', 'session', 'user', 'site');
1576 $themeorder = $CFG->themeorder
;
1577 // Just in case, make sure we always use the site theme if nothing else matched.
1578 $themeorder[] = 'site';
1581 $mnetpeertheme = '';
1582 if (isloggedin() and isset($CFG->mnet_localhost_id
) and $USER->mnethostid
!= $CFG->mnet_localhost_id
) {
1583 require_once($CFG->dirroot
.'/mnet/peer.php');
1584 $mnetpeer = new mnet_peer();
1585 $mnetpeer->set_id($USER->mnethostid
);
1586 if ($mnetpeer->force_theme
== 1 && $mnetpeer->theme
!= '') {
1587 $mnetpeertheme = $mnetpeer->theme
;
1591 $devicetheme = core_useragent
::get_device_type_theme($this->devicetypeinuse
);
1593 // The user is using another device than default, and we have a theme for that, we should use it.
1594 $hascustomdevicetheme = core_useragent
::DEVICETYPE_DEFAULT
!= $this->devicetypeinuse
&& !empty($devicetheme);
1596 foreach ($themeorder as $themetype) {
1598 switch ($themetype) {
1600 if (!empty($CFG->allowcoursethemes
) && !empty($this->_course
->theme
) && !$hascustomdevicetheme) {
1601 return $this->_course
->theme
;
1606 if (!empty($CFG->allowcategorythemes
) && !$hascustomdevicetheme) {
1607 $categories = $this->categories
;
1608 foreach ($categories as $category) {
1609 if (!empty($category->theme
)) {
1610 return $category->theme
;
1617 if (!empty($SESSION->theme
)) {
1618 return $SESSION->theme
;
1623 if (!empty($CFG->allowuserthemes
) && !empty($USER->theme
) && !$hascustomdevicetheme) {
1624 if ($mnetpeertheme) {
1625 return $mnetpeertheme;
1627 return $USER->theme
;
1633 if ($mnetpeertheme) {
1634 return $mnetpeertheme;
1636 // First try for the device the user is using.
1637 if (!empty($devicetheme)) {
1638 return $devicetheme;
1640 // Next try for the default device (as a fallback).
1641 $devicetheme = core_useragent
::get_device_type_theme(core_useragent
::DEVICETYPE_DEFAULT
);
1642 if (!empty($devicetheme)) {
1643 return $devicetheme;
1645 // The default device theme isn't set up - use the overall default theme.
1646 return theme_config
::DEFAULT_THEME
;
1650 // We should most certainly have resolved a theme by now. Something has gone wrong.
1651 debugging('Error resolving the theme to use for this page.', DEBUG_DEVELOPER
);
1652 return theme_config
::DEFAULT_THEME
;
1657 * Sets ->pagetype from the script name. For example, if the script that was
1658 * run is mod/quiz/view.php, ->pagetype will be set to 'mod-quiz-view'.
1660 * @param string $script the path to the script that should be used to
1661 * initialise ->pagetype. If not passed the $SCRIPT global will be used.
1662 * If legacy code has set $CFG->pagepath that will be used instead, and a
1663 * developer warning issued.
1665 protected function initialise_default_pagetype($script = null) {
1666 global $CFG, $SCRIPT;
1668 if (isset($CFG->pagepath
)) {
1669 debugging('Some code appears to have set $CFG->pagepath. That was a horrible deprecated thing. ' .
1670 'Don\'t do it! Try calling $PAGE->set_pagetype() instead.');
1671 $script = $CFG->pagepath
;
1672 unset($CFG->pagepath
);
1675 if (is_null($script)) {
1676 $script = ltrim($SCRIPT, '/');
1677 $len = strlen($CFG->admin
);
1678 if (substr($script, 0, $len) == $CFG->admin
) {
1679 $script = 'admin' . substr($script, $len);
1683 $path = str_replace('.php', '', $script);
1684 if (substr($path, -1) == '/') {
1688 if (empty($path) ||
$path == 'index') {
1689 $this->_pagetype
= 'site-index';
1691 $this->_pagetype
= str_replace('/', '-', $path);
1696 * Initialises the CSS classes that will be added to body tag of the page.
1698 * The function is responsible for adding all of the critical CSS classes
1699 * that describe the current page, and its state.
1700 * This includes classes that describe the following for example:
1701 * - Current language
1702 * - Language direction
1703 * - YUI CSS initialisation
1705 * These are commonly used in CSS to target specific types of pages.
1707 protected function initialise_standard_body_classes() {
1710 $pagetype = $this->pagetype
;
1711 if ($pagetype == 'site-index') {
1712 $this->_legacyclass
= 'course';
1713 } else if (substr($pagetype, 0, 6) == 'admin-') {
1714 $this->_legacyclass
= 'admin';
1716 $this->add_body_class($this->_legacyclass
);
1718 $pathbits = explode('-', trim($pagetype));
1719 for ($i = 1; $i < count($pathbits); $i++
) {
1720 $this->add_body_class('path-' . join('-', array_slice($pathbits, 0, $i)));
1723 $this->add_body_classes(core_useragent
::get_browser_version_classes());
1724 $this->add_body_class('dir-' . get_string('thisdirection', 'langconfig'));
1725 $this->add_body_class('lang-' . current_language());
1726 $this->add_body_class('yui-skin-sam'); // Make YUI happy, if it is used.
1727 $this->add_body_class('yui3-skin-sam'); // Make YUI3 happy, if it is used.
1728 $this->add_body_class($this->url_to_class_name($CFG->wwwroot
));
1730 // Extra class describing current page layout.
1731 $this->add_body_class('pagelayout-' . $this->_pagelayout
);
1733 if (!during_initial_install()) {
1734 $this->add_body_class('course-' . $this->_course
->id
);
1735 $this->add_body_class('context-' . $this->_context
->id
);
1738 if (!empty($this->_cm
)) {
1739 $this->add_body_class('cmid-' . $this->_cm
->id
);
1742 if (!empty($CFG->allowcategorythemes
)) {
1743 $this->ensure_category_loaded();
1744 foreach ($this->_categories
as $catid => $notused) {
1745 $this->add_body_class('category-' . $catid);
1749 if (is_array($this->_categories
)) {
1750 $catids = array_keys($this->_categories
);
1751 $catid = reset($catids);
1752 } else if (!empty($this->_course
->category
)) {
1753 $catid = $this->_course
->category
;
1756 $this->add_body_class('category-' . $catid);
1760 if (!isloggedin()) {
1761 $this->add_body_class('notloggedin');
1764 if ($this->user_is_editing()) {
1765 $this->add_body_class('editing');
1766 if (optional_param('bui_moveid', false, PARAM_INT
)) {
1767 $this->add_body_class('blocks-moving');
1771 if (!empty($CFG->blocksdrag
)) {
1772 $this->add_body_class('drag');
1775 if ($this->_devicetypeinuse
!= 'default') {
1776 $this->add_body_class($this->_devicetypeinuse
. 'theme');
1779 // Add class for behat site to apply behat related fixes.
1780 if (defined('BEHAT_SITE_RUNNING')) {
1781 $this->add_body_class('behat-site');
1786 * Loads the activity record for the current CM object associated with this
1789 * This will load {@link moodle_page::$_module} with a row from the related
1790 * module table in the database.
1791 * For instance if {@link moodle_page::$_cm} is a forum then a row from the
1792 * forum table will be loaded.
1794 protected function load_activity_record() {
1796 if (is_null($this->_cm
)) {
1799 $this->_module
= $DB->get_record($this->_cm
->modname
, array('id' => $this->_cm
->instance
));
1803 * This function ensures that the category of the current course has been
1804 * loaded, and if not, the function loads it now.
1807 * @throws coding_exception
1809 protected function ensure_category_loaded() {
1810 if (is_array($this->_categories
)) {
1811 return; // Already done.
1813 if (is_null($this->_course
)) {
1814 throw new coding_exception('Attempt to get the course category for this page before the course was set.');
1816 if ($this->_course
->category
== 0) {
1817 $this->_categories
= array();
1819 $this->load_category($this->_course
->category
);
1824 * Loads the requested category into the pages categories array.
1826 * @param int $categoryid
1827 * @throws moodle_exception
1829 protected function load_category($categoryid) {
1831 $category = $DB->get_record('course_categories', array('id' => $categoryid));
1833 throw new moodle_exception('unknowncategory');
1835 $this->_categories
[$category->id
] = $category;
1836 $parentcategoryids = explode('/', trim($category->path
, '/'));
1837 array_pop($parentcategoryids);
1838 foreach (array_reverse($parentcategoryids) as $catid) {
1839 $this->_categories
[$catid] = null;
1844 * Ensures that the category the current course is within, as well as all of
1845 * its parent categories, have been loaded.
1849 protected function ensure_categories_loaded() {
1851 $this->ensure_category_loaded();
1852 if (!is_null(end($this->_categories
))) {
1853 return; // Already done.
1855 $idstoload = array_keys($this->_categories
);
1856 array_shift($idstoload);
1857 $categories = $DB->get_records_list('course_categories', 'id', $idstoload);
1858 foreach ($idstoload as $catid) {
1859 $this->_categories
[$catid] = $categories[$catid];
1864 * Ensure the theme has not been loaded yet. If it has an exception is thrown.
1866 * @throws coding_exception
1868 protected function ensure_theme_not_set() {
1869 // This is explicitly allowed for webservices though which may process many course contexts in a single request.
1874 if (!is_null($this->_theme
)) {
1875 throw new coding_exception('The theme has already been set up for this page ready for output. ' .
1876 'Therefore, you can no longer change the theme, or anything that might affect what ' .
1877 'the current theme is, for example, the course.',
1878 'Stack trace when the theme was set up: ' . format_backtrace($this->_wherethemewasinitialised
));
1883 * Converts the provided URL into a CSS class that be used within the page.
1884 * This is primarily used to add the wwwroot to the body tag as a CSS class.
1886 * @param string $url
1889 protected function url_to_class_name($url) {
1890 $bits = parse_url($url);
1891 $class = str_replace('.', '-', $bits['host']);
1892 if (!empty($bits['port'])) {
1893 $class .= '--' . $bits['port'];
1895 if (!empty($bits['path'])) {
1896 $path = trim($bits['path'], '/');
1898 $class .= '--' . str_replace('/', '-', $path);
1905 * Combines all of the required editing caps for the page and returns them
1910 protected function all_editing_caps() {
1911 $caps = $this->_othereditingcaps
;
1912 $caps[] = $this->_blockseditingcap
;
1917 * Returns true if the page URL has beem set.
1921 public function has_set_url() {
1922 return ($this->_url
!==null);
1926 * Gets set when the block actions for the page have been processed.
1928 * @param bool $setting
1930 public function set_block_actions_done($setting = true) {
1931 $this->_block_actions_done
= $setting;
1935 * Are popup notifications allowed on this page?
1936 * Popup notifications may be disallowed in situations such as while upgrading or completing a quiz
1938 * @return bool true if popup notifications may be displayed
1940 public function get_popup_notification_allowed() {
1941 return $this->_popup_notification_allowed
;
1945 * Allow or disallow popup notifications on this page. Popups are allowed by default.
1947 * @param bool $allowed true if notifications are allowed. False if not allowed. They are allowed by default.
1949 public function set_popup_notification_allowed($allowed) {
1950 $this->_popup_notification_allowed
= $allowed;
1954 * Returns the block region having made any required theme manipulations.
1956 * @since Moodle 2.5.1 2.6
1957 * @param string $region
1960 public function apply_theme_region_manipulations($region) {
1961 if ($this->blockmanipulations
&& isset($this->blockmanipulations
[$region])) {
1962 $regionwas = $region;
1963 $regionnow = $this->blockmanipulations
[$region];
1964 if ($this->blocks
->is_known_region($regionwas) && $this->blocks
->is_known_region($regionnow)) {
1965 // Both the before and after regions are known so we can swap them over.
1968 // We didn't know about both, we won't swap them over.
1975 * Add a report node and a specific report to the navigation.
1977 * @param int $userid The user ID that we are looking to add this report node to.
1978 * @param array $nodeinfo Name and url of the final node that we are creating.
1980 public function add_report_nodes($userid, $nodeinfo) {
1982 // Try to find the specific user node.
1983 $newusernode = $this->navigation
->find('user' . $userid, null);
1985 $navigationnodeerror =
1986 'Could not find the navigation node requested. Please check that the node you are looking for exists.';
1987 if ($userid != $USER->id
) {
1988 // Check that we have a valid node.
1989 if (empty($newusernode)) {
1990 // Throw an error if we ever reach here.
1991 throw new coding_exception($navigationnodeerror);
1993 // Add 'Reports' to the user node.
1994 $reportnode = $newusernode->add(get_string('reports'));
1996 // We are looking at our own profile.
1997 $myprofilenode = $this->settingsnav
->find('myprofile', null);
1998 // Check that we do end up with a valid node.
1999 if (empty($myprofilenode)) {
2000 // Throw an error if we ever reach here.
2001 throw new coding_exception($navigationnodeerror);
2003 // Add 'Reports' to our node.
2004 $reportnode = $myprofilenode->add(get_string('reports'));
2006 // Finally add the report to the navigation tree.
2007 $reportnode->add($nodeinfo['name'], $nodeinfo['url'], navigation_node
::TYPE_COURSE
);