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();
984 // Ideally we should set context only once.
985 if (isset($this->_context
) && $context->id
!== $this->_context
->id
) {
986 $current = $this->_context
->contextlevel
;
987 if ($current == CONTEXT_SYSTEM
or $current == CONTEXT_COURSE
) {
988 // Hmm - not ideal, but it might produce too many warnings due to the design of require_login.
989 } else if ($current == CONTEXT_MODULE
and ($parentcontext = $context->get_parent_context()) and
990 $this->_context
->id
== $parentcontext->id
) {
991 // Hmm - most probably somebody did require_login() and after that set the block context.
993 // We do not want devs to do weird switching of context levels on the fly because we might have used
994 // the context already such as in text filter in page title.
995 debugging("Coding problem: unsupported modification of PAGE->context from {$current} to {$context->contextlevel}");
999 $this->_context
= $context;
1003 * The course module that this page belongs to (if it does belong to one).
1005 * @param stdClass|cm_info $cm a record from course_modules table or cm_info from get_fast_modinfo().
1006 * @param stdClass $course
1007 * @param stdClass $module
1009 * @throws coding_exception
1011 public function set_cm($cm, $course = null, $module = null) {
1012 global $DB, $CFG, $SITE;
1014 if (!isset($cm->id
) ||
!isset($cm->course
)) {
1015 throw new coding_exception('Invalid $cm. It has to be instance of cm_info or record from the course_modules table.');
1018 if (!$this->_course ||
$this->_course
->id
!= $cm->course
) {
1020 $course = $DB->get_record('course', array('id' => $cm->course
), '*', MUST_EXIST
);
1022 if ($course->id
!= $cm->course
) {
1023 throw new coding_exception('The course you passed to $PAGE->set_cm does not correspond to the $cm.');
1025 $this->set_course($course);
1028 // Make sure we have a $cm from get_fast_modinfo as this contains activity access details.
1029 if (!($cm instanceof cm_info
)) {
1030 $modinfo = get_fast_modinfo($this->_course
);
1031 $cm = $modinfo->get_cm($cm->id
);
1035 // Unfortunately the context setting is a mess.
1036 // Let's try to work around some common block problems and show some debug messages.
1037 if (empty($this->_context
) or $this->_context
->contextlevel
!= CONTEXT_BLOCK
) {
1038 $context = context_module
::instance($cm->id
);
1039 $this->set_context($context);
1043 $this->set_activity_record($module);
1046 // Notify course format that this page is set for the course module.
1047 if ($this->_course
->id
!= $SITE->id
) {
1048 require_once($CFG->dirroot
.'/course/lib.php');
1049 course_get_format($this->_course
)->page_set_cm($this);
1054 * Sets the activity record. This could be a row from the main table for a
1055 * module. For instance if the current module (cm) is a forum this should be a row
1056 * from the forum table.
1058 * @param stdClass $module A row from the main database table for the module that this page belongs to.
1059 * @throws coding_exception
1061 public function set_activity_record($module) {
1062 if (is_null($this->_cm
)) {
1063 throw new coding_exception('You cannot call $PAGE->set_activity_record until after $PAGE->cm has been set.');
1065 if ($module->id
!= $this->_cm
->instance ||
$module->course
!= $this->_course
->id
) {
1066 throw new coding_exception('The activity record does not seem to correspond to the cm that has been set.');
1068 $this->_module
= $module;
1072 * Sets the pagetype to use for this page.
1074 * Normally you do not need to set this manually, it is automatically created
1075 * from the script name. However, on some pages this is overridden.
1076 * For example the page type for course/view.php includes the course format,
1077 * for example 'course-view-weeks'. This gets used as the id attribute on
1078 * <body> and also for determining which blocks are displayed.
1080 * @param string $pagetype e.g. 'my-index' or 'mod-quiz-attempt'.
1082 public function set_pagetype($pagetype) {
1083 $this->_pagetype
= $pagetype;
1087 * Sets the layout to use for this page.
1089 * The page layout determines how the page will be displayed, things such as
1090 * block regions, content areas, etc are controlled by the layout.
1091 * The theme in use for the page will determine that the layout contains.
1093 * This properly defaults to 'base', so you only need to call this function if
1094 * you want something different. The exact range of supported layouts is specified
1095 * in the standard theme.
1097 * For an idea of the common page layouts see
1098 * {@link http://docs.moodle.org/dev/Themes_2.0#The_different_layouts_as_of_August_17th.2C_2010}
1099 * But please keep in mind that it may be (and normally is) out of date.
1100 * The only place to find an accurate up-to-date list of the page layouts
1101 * available for your version of Moodle is {@link theme/base/config.php}
1103 * @param string $pagelayout the page layout this is. For example 'popup', 'home'.
1105 public function set_pagelayout($pagelayout) {
1108 if (!empty($SESSION->forcepagelayout
)) {
1109 $this->_pagelayout
= $SESSION->forcepagelayout
;
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;
1119 * If context->id and pagetype are not enough to uniquely identify this page,
1120 * then you can set a subpage id as well. For example, the tags page sets
1122 * @param string $subpage an arbitrary identifier that, along with context->id
1123 * and pagetype, uniquely identifies this page.
1125 public function set_subpage($subpage) {
1126 if (empty($subpage)) {
1127 $this->_subpage
= '';
1129 $this->_subpage
= $subpage;
1134 * Adds a CSS class to the body tag of the page.
1136 * @param string $class add this class name ot the class attribute on the body tag.
1137 * @throws coding_exception
1139 public function add_body_class($class) {
1140 if ($this->_state
> self
::STATE_BEFORE_HEADER
) {
1141 throw new coding_exception('Cannot call moodle_page::add_body_class after output has been started.');
1143 $this->_bodyclasses
[$class] = 1;
1147 * Adds an array of body classes to the body tag of this page.
1149 * @param array $classes this utility method calls add_body_class for each array element.
1151 public function add_body_classes($classes) {
1152 foreach ($classes as $class) {
1153 $this->add_body_class($class);
1158 * Sets the title for the page.
1159 * This is normally used within the title tag in the head of the page.
1161 * @param string $title the title that should go in the <head> section of the HTML of this page.
1163 public function set_title($title) {
1164 $title = format_string($title);
1165 $title = strip_tags($title);
1166 $title = str_replace('"', '"', $title);
1167 $this->_title
= $title;
1171 * Sets the heading to use for the page.
1172 * This is normally used as the main heading at the top of the content.
1174 * @param string $heading the main heading that should be displayed at the top of the <body>.
1176 public function set_heading($heading) {
1177 $this->_heading
= format_string($heading);
1181 * Sets some HTML to use next to the heading {@link moodle_page::set_heading()}
1183 * @param string $menu The menu/content to show in the heading
1185 public function set_headingmenu($menu) {
1186 $this->_headingmenu
= $menu;
1190 * Set the course category this page belongs to manually.
1192 * This automatically sets $PAGE->course to be the site course. You cannot
1193 * use this method if you have already set $PAGE->course - in that case,
1194 * the category must be the one that the course belongs to. This also
1195 * automatically sets the page context to the category context.
1197 * @param int $categoryid The id of the category to set.
1198 * @throws coding_exception
1200 public function set_category_by_id($categoryid) {
1202 if (!is_null($this->_course
)) {
1203 throw new coding_exception('Course has already been set. You cannot change the category now.');
1205 if (is_array($this->_categories
)) {
1206 throw new coding_exception('Course category has already been set. You cannot to change it now.');
1208 $this->ensure_theme_not_set();
1209 $this->set_course($SITE);
1210 $this->load_category($categoryid);
1211 $this->set_context(context_coursecat
::instance($categoryid));
1215 * Set a different path to use for the 'Moodle docs for this page' link.
1217 * By default, it uses the pagetype, which is normally the same as the
1218 * script name. So, for example, for mod/quiz/attempt.php, pagetype is
1219 * mod-quiz-attempt, and so docspath is mod/quiz/attempt.
1221 * @param string $path the path to use at the end of the moodle docs URL.
1223 public function set_docs_path($path) {
1224 $this->_docspath
= $path;
1228 * You should call this method from every page to set the URL that should be used to return to this page.
1230 * Used, for example, by the blocks editing UI to know where to return the
1231 * user after an action.
1232 * For example, course/view.php does:
1233 * $id = optional_param('id', 0, PARAM_INT);
1234 * $PAGE->set_url('/course/view.php', array('id' => $id));
1236 * @param moodle_url|string $url URL relative to $CFG->wwwroot or {@link moodle_url} instance
1237 * @param array $params parameters to add to the URL
1238 * @throws coding_exception
1240 public function set_url($url, array $params = null) {
1243 if (is_string($url) && strpos($url, 'http') !== 0) {
1244 if (strpos($url, '/') === 0) {
1245 // We have to use httpswwwroot here, because of loginhttps pages.
1246 $url = $CFG->httpswwwroot
. $url;
1248 throw new coding_exception('Invalid parameter $url, has to be full url or in shortened form starting with /.');
1252 $this->_url
= new moodle_url($url, $params);
1254 $fullurl = $this->_url
->out_omit_querystring();
1255 if (strpos($fullurl, "$CFG->httpswwwroot/") !== 0) {
1256 debugging('Most probably incorrect set_page() url argument, it does not match the httpswwwroot!');
1258 $shorturl = str_replace("$CFG->httpswwwroot/", '', $fullurl);
1260 if (is_null($this->_pagetype
)) {
1261 $this->initialise_default_pagetype($shorturl);
1266 * Make sure page URL does not contain the given URL parameter.
1268 * This should not be necessary if the script has called set_url properly.
1269 * However, in some situations like the block editing actions; when the URL
1270 * has been guessed, it will contain dangerous block-related actions.
1271 * Therefore, the blocks code calls this function to clean up such parameters
1272 * before doing any redirect.
1274 * @param string $param the name of the parameter to make sure is not in the
1277 public function ensure_param_not_in_url($param) {
1278 $this->_url
->remove_params($param);
1282 * Sets an alternative version of this page.
1284 * There can be alternate versions of some pages (for example an RSS feed version).
1285 * Call this method for each alternative version available.
1286 * For each alternative version a link will be included in the <head> tag.
1288 * @param string $title The title to give the alternate version.
1289 * @param string|moodle_url $url The URL of the alternate version.
1290 * @param string $mimetype The mime-type of the alternate version.
1291 * @throws coding_exception
1293 public function add_alternate_version($title, $url, $mimetype) {
1294 if ($this->_state
> self
::STATE_BEFORE_HEADER
) {
1295 throw new coding_exception('Cannot call moodle_page::add_alternate_version after output has been started.');
1297 $alt = new stdClass
;
1298 $alt->title
= $title;
1300 $this->_alternateversions
[$mimetype] = $alt;
1304 * Specify a form control should be focused when the page has loaded.
1306 * @param string $controlid the id of the HTML element to be focused.
1308 public function set_focuscontrol($controlid) {
1309 $this->_focuscontrol
= $controlid;
1313 * Specify a fragment of HTML that goes where the 'Turn editing on' button normally goes.
1315 * @param string $html the HTML to display there.
1317 public function set_button($html) {
1318 $this->_button
= $html;
1322 * Set the capability that allows users to edit blocks on this page.
1324 * Normally the default of 'moodle/site:manageblocks' is used, but a few
1325 * pages like the My Moodle page need to use a different capability
1326 * like 'moodle/my:manageblocks'.
1328 * @param string $capability a capability.
1330 public function set_blocks_editing_capability($capability) {
1331 $this->_blockseditingcap
= $capability;
1335 * Some pages let you turn editing on for reasons other than editing blocks.
1336 * If that is the case, you can pass other capabilities that let the user
1337 * edit this page here.
1339 * @param string|array $capability either a capability, or an array of capabilities.
1341 public function set_other_editing_capability($capability) {
1342 if (is_array($capability)) {
1343 $this->_othereditingcaps
= array_unique($this->_othereditingcaps +
$capability);
1345 $this->_othereditingcaps
[] = $capability;
1350 * Sets whether the browser should cache this page or not.
1352 * @param bool $cacheable can this page be cached by the user's browser.
1354 public function set_cacheable($cacheable) {
1355 $this->_cacheable
= $cacheable;
1359 * Sets the page to periodically refresh
1361 * This function must be called before $OUTPUT->header has been called or
1362 * a coding exception will be thrown.
1364 * @param int $delay Sets the delay before refreshing the page, if set to null refresh is cancelled.
1365 * @throws coding_exception
1367 public function set_periodic_refresh_delay($delay = null) {
1368 if ($this->_state
> self
::STATE_BEFORE_HEADER
) {
1369 throw new coding_exception('You cannot set a periodic refresh delay after the header has been printed');
1371 if ($delay === null) {
1372 $this->_periodicrefreshdelay
= null;
1373 } else if (is_int($delay)) {
1374 $this->_periodicrefreshdelay
= $delay;
1379 * Force this page to use a particular theme.
1381 * Please use this cautiously.
1382 * It is only intended to be used by the themes selector admin page.
1384 * @param string $themename the name of the theme to use.
1386 public function force_theme($themename) {
1387 $this->ensure_theme_not_set();
1388 $this->_theme
= theme_config
::load($themename);
1392 * Reload theme settings.
1394 * This is used when we need to reset settings
1395 * because they are now double cached in theme.
1397 public function reload_theme() {
1398 if (!is_null($this->_theme
)) {
1399 $this->_theme
= theme_config
::load($this->_theme
->name
);
1404 * This function indicates that current page requires the https when $CFG->loginhttps enabled.
1406 * By using this function properly, we can ensure 100% https-ized pages
1407 * at our entire discretion (login, forgot_password, change_password)
1410 * @throws coding_exception
1412 public function https_required() {
1415 if (!is_null($this->_url
)) {
1416 throw new coding_exception('https_required() must be used before setting page url!');
1419 $this->ensure_theme_not_set();
1421 $this->_https_login_required
= true;
1423 if (!empty($CFG->loginhttps
)) {
1424 $CFG->httpswwwroot
= str_replace('http:', 'https:', $CFG->wwwroot
);
1426 $CFG->httpswwwroot
= $CFG->wwwroot
;
1431 * Makes sure that page previously marked with https_required() is really using https://, if not it redirects to https://
1433 * @return void (may redirect to https://self)
1434 * @throws coding_exception
1436 public function verify_https_required() {
1437 global $CFG, $FULLME;
1439 if (is_null($this->_url
)) {
1440 throw new coding_exception('verify_https_required() must be called after setting page url!');
1443 if (!$this->_https_login_required
) {
1444 throw new coding_exception('verify_https_required() must be called only after https_required()!');
1447 if (empty($CFG->loginhttps
)) {
1448 // Https not required, so stop checking.
1452 if (strpos($this->_url
, 'https://')) {
1453 // Detect if incorrect PAGE->set_url() used, it is recommended to use root-relative paths there.
1454 throw new coding_exception('Invalid page url. It must start with https:// for pages that set https_required()!');
1457 if (!empty($CFG->sslproxy
)) {
1458 // It does not make much sense to use sslproxy and loginhttps at the same time.
1462 // Now the real test and redirect!
1463 // NOTE: do NOT use this test for detection of https on current page because this code is not compatible with SSL proxies,
1464 // instead use is_https().
1465 if (strpos($FULLME, 'https:') !== 0) {
1466 // This may lead to infinite redirect on an incorrectly configured site.
1467 // In that case set $CFG->loginhttps=0; within /config.php.
1468 redirect($this->_url
);
1472 // Initialisation methods =====================================================
1473 // These set various things up in a default way.
1476 * This method is called when the page first moves out of the STATE_BEFORE_HEADER
1477 * state. This is our last change to initialise things.
1479 protected function starting_output() {
1482 if (!during_initial_install()) {
1483 $this->blocks
->load_blocks();
1484 if (empty($this->_block_actions_done
)) {
1485 $this->_block_actions_done
= true;
1486 if ($this->blocks
->process_url_actions($this)) {
1487 redirect($this->url
->out(false));
1490 $this->blocks
->create_all_block_instances();
1493 // If maintenance mode is on, change the page header.
1494 if (!empty($CFG->maintenance_enabled
)) {
1495 $this->set_button('<a href="' . $CFG->wwwroot
. '/' . $CFG->admin
.
1496 '/settings.php?section=maintenancemode">' . get_string('maintenancemode', 'admin') .
1497 '</a> ' . $this->button
);
1499 $title = $this->title
;
1503 $this->set_title($title . get_string('maintenancemode', 'admin'));
1505 // Show the messaging popup if there are messages.
1506 message_popup_window();
1509 $this->initialise_standard_body_classes();
1513 * Method for use by Moodle core to set up the theme. Do not
1514 * use this in your own code.
1516 * Make sure the right theme for this page is loaded. Tell our
1517 * blocks_manager about the theme block regions, and then, if
1518 * we are $PAGE, set up the global $OUTPUT.
1522 public function initialise_theme_and_output() {
1523 global $OUTPUT, $PAGE, $SITE, $CFG;
1525 if (!empty($this->_wherethemewasinitialised
)) {
1529 if (!during_initial_install()) {
1530 // Detect PAGE->context mess.
1531 $this->magic_get_context();
1534 if (!$this->_course
&& !during_initial_install()) {
1535 $this->set_course($SITE);
1538 if (is_null($this->_theme
)) {
1539 $themename = $this->resolve_theme();
1540 $this->_theme
= theme_config
::load($themename);
1543 $this->_theme
->setup_blocks($this->pagelayout
, $this->blocks
);
1544 if ($this->_theme
->enable_dock
&& !empty($CFG->allowblockstodock
)) {
1545 $this->requires
->strings_for_js(array('addtodock', 'undockitem', 'dockblock', 'undockblock', 'undockall', 'hidedockpanel', 'hidepanel'), 'block');
1546 $this->requires
->string_for_js('thisdirectionvertical', 'langconfig');
1547 $this->requires
->yui_module('moodle-core-dock-loader', 'M.core.dock.loader.initLoader');
1550 if ($this === $PAGE) {
1552 if ($this->pagelayout
=== 'maintenance') {
1553 // If the page is using the maintenance layout then we're going to force target to maintenance.
1554 // This leads to a special core renderer that is designed to block access to API's that are likely unavailable for this
1556 $target = RENDERER_TARGET_MAINTENANCE
;
1558 $OUTPUT = $this->get_renderer('core', null, $target);
1561 $this->_wherethemewasinitialised
= debug_backtrace();
1565 * Reset the theme and output for a new context. This only makes sense from
1566 * external::validate_context(). Do not cheat.
1568 * @return string the name of the theme that should be used on this page.
1570 public function reset_theme_and_output() {
1571 global $COURSE, $SITE;
1573 $COURSE = clone($SITE);
1574 $this->_theme
= null;
1575 $this->_wherethemewasinitialised
= null;
1576 $this->_course
= null;
1578 $this->_module
= null;
1579 $this->_context
= null;
1583 * Work out the theme this page should use.
1585 * This depends on numerous $CFG settings, and the properties of this page.
1587 * @return string the name of the theme that should be used on this page.
1589 protected function resolve_theme() {
1590 global $CFG, $USER, $SESSION;
1592 if (empty($CFG->themeorder
)) {
1593 $themeorder = array('course', 'category', 'session', 'user', 'site');
1595 $themeorder = $CFG->themeorder
;
1596 // Just in case, make sure we always use the site theme if nothing else matched.
1597 $themeorder[] = 'site';
1600 $mnetpeertheme = '';
1601 if (isloggedin() and isset($CFG->mnet_localhost_id
) and $USER->mnethostid
!= $CFG->mnet_localhost_id
) {
1602 require_once($CFG->dirroot
.'/mnet/peer.php');
1603 $mnetpeer = new mnet_peer();
1604 $mnetpeer->set_id($USER->mnethostid
);
1605 if ($mnetpeer->force_theme
== 1 && $mnetpeer->theme
!= '') {
1606 $mnetpeertheme = $mnetpeer->theme
;
1610 $devicetheme = core_useragent
::get_device_type_theme($this->devicetypeinuse
);
1612 // The user is using another device than default, and we have a theme for that, we should use it.
1613 $hascustomdevicetheme = core_useragent
::DEVICETYPE_DEFAULT
!= $this->devicetypeinuse
&& !empty($devicetheme);
1615 foreach ($themeorder as $themetype) {
1617 switch ($themetype) {
1619 if (!empty($CFG->allowcoursethemes
) && !empty($this->_course
->theme
) && !$hascustomdevicetheme) {
1620 return $this->_course
->theme
;
1625 if (!empty($CFG->allowcategorythemes
) && !$hascustomdevicetheme) {
1626 $categories = $this->categories
;
1627 foreach ($categories as $category) {
1628 if (!empty($category->theme
)) {
1629 return $category->theme
;
1636 if (!empty($SESSION->theme
)) {
1637 return $SESSION->theme
;
1642 if (!empty($CFG->allowuserthemes
) && !empty($USER->theme
) && !$hascustomdevicetheme) {
1643 if ($mnetpeertheme) {
1644 return $mnetpeertheme;
1646 return $USER->theme
;
1652 if ($mnetpeertheme) {
1653 return $mnetpeertheme;
1655 // First try for the device the user is using.
1656 if (!empty($devicetheme)) {
1657 return $devicetheme;
1659 // Next try for the default device (as a fallback).
1660 $devicetheme = core_useragent
::get_device_type_theme(core_useragent
::DEVICETYPE_DEFAULT
);
1661 if (!empty($devicetheme)) {
1662 return $devicetheme;
1664 // The default device theme isn't set up - use the overall default theme.
1665 return theme_config
::DEFAULT_THEME
;
1669 // We should most certainly have resolved a theme by now. Something has gone wrong.
1670 debugging('Error resolving the theme to use for this page.', DEBUG_DEVELOPER
);
1671 return theme_config
::DEFAULT_THEME
;
1676 * Sets ->pagetype from the script name. For example, if the script that was
1677 * run is mod/quiz/view.php, ->pagetype will be set to 'mod-quiz-view'.
1679 * @param string $script the path to the script that should be used to
1680 * initialise ->pagetype. If not passed the $SCRIPT global will be used.
1681 * If legacy code has set $CFG->pagepath that will be used instead, and a
1682 * developer warning issued.
1684 protected function initialise_default_pagetype($script = null) {
1685 global $CFG, $SCRIPT;
1687 if (isset($CFG->pagepath
)) {
1688 debugging('Some code appears to have set $CFG->pagepath. That was a horrible deprecated thing. ' .
1689 'Don\'t do it! Try calling $PAGE->set_pagetype() instead.');
1690 $script = $CFG->pagepath
;
1691 unset($CFG->pagepath
);
1694 if (is_null($script)) {
1695 $script = ltrim($SCRIPT, '/');
1696 $len = strlen($CFG->admin
);
1697 if (substr($script, 0, $len) == $CFG->admin
) {
1698 $script = 'admin' . substr($script, $len);
1702 $path = str_replace('.php', '', $script);
1703 if (substr($path, -1) == '/') {
1707 if (empty($path) ||
$path == 'index') {
1708 $this->_pagetype
= 'site-index';
1710 $this->_pagetype
= str_replace('/', '-', $path);
1715 * Initialises the CSS classes that will be added to body tag of the page.
1717 * The function is responsible for adding all of the critical CSS classes
1718 * that describe the current page, and its state.
1719 * This includes classes that describe the following for example:
1720 * - Current language
1721 * - Language direction
1722 * - YUI CSS initialisation
1724 * These are commonly used in CSS to target specific types of pages.
1726 protected function initialise_standard_body_classes() {
1729 $pagetype = $this->pagetype
;
1730 if ($pagetype == 'site-index') {
1731 $this->_legacyclass
= 'course';
1732 } else if (substr($pagetype, 0, 6) == 'admin-') {
1733 $this->_legacyclass
= 'admin';
1735 $this->add_body_class($this->_legacyclass
);
1737 $pathbits = explode('-', trim($pagetype));
1738 for ($i = 1; $i < count($pathbits); $i++
) {
1739 $this->add_body_class('path-' . join('-', array_slice($pathbits, 0, $i)));
1742 $this->add_body_classes(core_useragent
::get_browser_version_classes());
1743 $this->add_body_class('dir-' . get_string('thisdirection', 'langconfig'));
1744 $this->add_body_class('lang-' . current_language());
1745 $this->add_body_class('yui-skin-sam'); // Make YUI happy, if it is used.
1746 $this->add_body_class('yui3-skin-sam'); // Make YUI3 happy, if it is used.
1747 $this->add_body_class($this->url_to_class_name($CFG->wwwroot
));
1749 // Extra class describing current page layout.
1750 $this->add_body_class('pagelayout-' . $this->_pagelayout
);
1752 if (!during_initial_install()) {
1753 $this->add_body_class('course-' . $this->_course
->id
);
1754 $this->add_body_class('context-' . $this->_context
->id
);
1757 if (!empty($this->_cm
)) {
1758 $this->add_body_class('cmid-' . $this->_cm
->id
);
1761 if (!empty($CFG->allowcategorythemes
)) {
1762 $this->ensure_category_loaded();
1763 foreach ($this->_categories
as $catid => $notused) {
1764 $this->add_body_class('category-' . $catid);
1768 if (is_array($this->_categories
)) {
1769 $catids = array_keys($this->_categories
);
1770 $catid = reset($catids);
1771 } else if (!empty($this->_course
->category
)) {
1772 $catid = $this->_course
->category
;
1775 $this->add_body_class('category-' . $catid);
1779 if (!isloggedin()) {
1780 $this->add_body_class('notloggedin');
1783 if ($this->user_is_editing()) {
1784 $this->add_body_class('editing');
1785 if (optional_param('bui_moveid', false, PARAM_INT
)) {
1786 $this->add_body_class('blocks-moving');
1790 if (!empty($CFG->blocksdrag
)) {
1791 $this->add_body_class('drag');
1794 if ($this->_devicetypeinuse
!= 'default') {
1795 $this->add_body_class($this->_devicetypeinuse
. 'theme');
1798 // Add class for behat site to apply behat related fixes.
1799 if (defined('BEHAT_SITE_RUNNING')) {
1800 $this->add_body_class('behat-site');
1805 * Loads the activity record for the current CM object associated with this
1808 * This will load {@link moodle_page::$_module} with a row from the related
1809 * module table in the database.
1810 * For instance if {@link moodle_page::$_cm} is a forum then a row from the
1811 * forum table will be loaded.
1813 protected function load_activity_record() {
1815 if (is_null($this->_cm
)) {
1818 $this->_module
= $DB->get_record($this->_cm
->modname
, array('id' => $this->_cm
->instance
));
1822 * This function ensures that the category of the current course has been
1823 * loaded, and if not, the function loads it now.
1826 * @throws coding_exception
1828 protected function ensure_category_loaded() {
1829 if (is_array($this->_categories
)) {
1830 return; // Already done.
1832 if (is_null($this->_course
)) {
1833 throw new coding_exception('Attempt to get the course category for this page before the course was set.');
1835 if ($this->_course
->category
== 0) {
1836 $this->_categories
= array();
1838 $this->load_category($this->_course
->category
);
1843 * Loads the requested category into the pages categories array.
1845 * @param int $categoryid
1846 * @throws moodle_exception
1848 protected function load_category($categoryid) {
1850 $category = $DB->get_record('course_categories', array('id' => $categoryid));
1852 throw new moodle_exception('unknowncategory');
1854 $this->_categories
[$category->id
] = $category;
1855 $parentcategoryids = explode('/', trim($category->path
, '/'));
1856 array_pop($parentcategoryids);
1857 foreach (array_reverse($parentcategoryids) as $catid) {
1858 $this->_categories
[$catid] = null;
1863 * Ensures that the category the current course is within, as well as all of
1864 * its parent categories, have been loaded.
1868 protected function ensure_categories_loaded() {
1870 $this->ensure_category_loaded();
1871 if (!is_null(end($this->_categories
))) {
1872 return; // Already done.
1874 $idstoload = array_keys($this->_categories
);
1875 array_shift($idstoload);
1876 $categories = $DB->get_records_list('course_categories', 'id', $idstoload);
1877 foreach ($idstoload as $catid) {
1878 $this->_categories
[$catid] = $categories[$catid];
1883 * Ensure the theme has not been loaded yet. If it has an exception is thrown.
1885 * @throws coding_exception
1887 protected function ensure_theme_not_set() {
1888 // This is explicitly allowed for webservices though which may process many course contexts in a single request.
1893 if (!is_null($this->_theme
)) {
1894 throw new coding_exception('The theme has already been set up for this page ready for output. ' .
1895 'Therefore, you can no longer change the theme, or anything that might affect what ' .
1896 'the current theme is, for example, the course.',
1897 'Stack trace when the theme was set up: ' . format_backtrace($this->_wherethemewasinitialised
));
1902 * Converts the provided URL into a CSS class that be used within the page.
1903 * This is primarily used to add the wwwroot to the body tag as a CSS class.
1905 * @param string $url
1908 protected function url_to_class_name($url) {
1909 $bits = parse_url($url);
1910 $class = str_replace('.', '-', $bits['host']);
1911 if (!empty($bits['port'])) {
1912 $class .= '--' . $bits['port'];
1914 if (!empty($bits['path'])) {
1915 $path = trim($bits['path'], '/');
1917 $class .= '--' . str_replace('/', '-', $path);
1924 * Combines all of the required editing caps for the page and returns them
1929 protected function all_editing_caps() {
1930 $caps = $this->_othereditingcaps
;
1931 $caps[] = $this->_blockseditingcap
;
1936 * Returns true if the page URL has beem set.
1940 public function has_set_url() {
1941 return ($this->_url
!==null);
1945 * Gets set when the block actions for the page have been processed.
1947 * @param bool $setting
1949 public function set_block_actions_done($setting = true) {
1950 $this->_block_actions_done
= $setting;
1954 * Are popup notifications allowed on this page?
1955 * Popup notifications may be disallowed in situations such as while upgrading or completing a quiz
1957 * @return bool true if popup notifications may be displayed
1959 public function get_popup_notification_allowed() {
1960 return $this->_popup_notification_allowed
;
1964 * Allow or disallow popup notifications on this page. Popups are allowed by default.
1966 * @param bool $allowed true if notifications are allowed. False if not allowed. They are allowed by default.
1968 public function set_popup_notification_allowed($allowed) {
1969 $this->_popup_notification_allowed
= $allowed;
1973 * Returns the block region having made any required theme manipulations.
1975 * @since Moodle 2.5.1 2.6
1976 * @param string $region
1979 public function apply_theme_region_manipulations($region) {
1980 if ($this->blockmanipulations
&& isset($this->blockmanipulations
[$region])) {
1981 $regionwas = $region;
1982 $regionnow = $this->blockmanipulations
[$region];
1983 if ($this->blocks
->is_known_region($regionwas) && $this->blocks
->is_known_region($regionnow)) {
1984 // Both the before and after regions are known so we can swap them over.
1987 // We didn't know about both, we won't swap them over.
1994 * Add a report node and a specific report to the navigation.
1996 * @param int $userid The user ID that we are looking to add this report node to.
1997 * @param array $nodeinfo Name and url of the final node that we are creating.
1999 public function add_report_nodes($userid, $nodeinfo) {
2001 // Try to find the specific user node.
2002 $newusernode = $this->navigation
->find('user' . $userid, null);
2004 $navigationnodeerror =
2005 'Could not find the navigation node requested. Please check that the node you are looking for exists.';
2006 if ($userid != $USER->id
) {
2007 // Check that we have a valid node.
2008 if (empty($newusernode)) {
2009 // Throw an error if we ever reach here.
2010 throw new coding_exception($navigationnodeerror);
2012 // Add 'Reports' to the user node.
2013 $reportnode = $newusernode->add(get_string('reports'));
2015 // We are looking at our own profile.
2016 $myprofilenode = $this->settingsnav
->find('myprofile', null);
2017 // Check that we do end up with a valid node.
2018 if (empty($myprofilenode)) {
2019 // Throw an error if we ever reach here.
2020 throw new coding_exception($navigationnodeerror);
2022 // Add 'Reports' to our node.
2023 $reportnode = $myprofilenode->add(get_string('reports'));
2025 // Finally add the report to the navigation tree.
2026 $reportnode->add($nodeinfo['name'], $nodeinfo['url'], navigation_node
::TYPE_COURSE
);