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 classes used to manage the navigation structures within Moodle.
22 * @copyright 2009 Sam Hemelryk
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') ||
die();
29 * The name that will be used to separate the navigation cache within SESSION
31 define('NAVIGATION_CACHE_NAME', 'navigation');
32 define('NAVIGATION_SITE_ADMIN_CACHE_NAME', 'navigationsiteadmin');
35 * This class is used to represent a node in a navigation tree
37 * This class is used to represent a node in a navigation tree within Moodle,
38 * the tree could be one of global navigation, settings navigation, or the navbar.
39 * Each node can be one of two types either a Leaf (default) or a branch.
40 * When a node is first created it is created as a leaf, when/if children are added
41 * the node then becomes a branch.
44 * @category navigation
45 * @copyright 2009 Sam Hemelryk
46 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
48 class navigation_node
implements renderable
{
49 /** @var int Used to identify this node a leaf (default) 0 */
50 const NODETYPE_LEAF
= 0;
51 /** @var int Used to identify this node a branch, happens with children 1 */
52 const NODETYPE_BRANCH
= 1;
53 /** @var null Unknown node type null */
54 const TYPE_UNKNOWN
= null;
55 /** @var int System node type 0 */
56 const TYPE_ROOTNODE
= 0;
57 /** @var int System node type 1 */
58 const TYPE_SYSTEM
= 1;
59 /** @var int Category node type 10 */
60 const TYPE_CATEGORY
= 10;
61 /** var int Category displayed in MyHome navigation node */
62 const TYPE_MY_CATEGORY
= 11;
63 /** @var int Course node type 20 */
64 const TYPE_COURSE
= 20;
65 /** @var int Course Structure node type 30 */
66 const TYPE_SECTION
= 30;
67 /** @var int Activity node type, e.g. Forum, Quiz 40 */
68 const TYPE_ACTIVITY
= 40;
69 /** @var int Resource node type, e.g. Link to a file, or label 50 */
70 const TYPE_RESOURCE
= 50;
71 /** @var int A custom node type, default when adding without specifing type 60 */
72 const TYPE_CUSTOM
= 60;
73 /** @var int Setting node type, used only within settings nav 70 */
74 const TYPE_SETTING
= 70;
75 /** @var int site admin branch node type, used only within settings nav 71 */
76 const TYPE_SITE_ADMIN
= 71;
77 /** @var int Setting node type, used only within settings nav 80 */
79 /** @var int Setting node type, used for containers of no importance 90 */
80 const TYPE_CONTAINER
= 90;
81 /** var int Course the current user is not enrolled in */
82 const COURSE_OTHER
= 0;
83 /** var int Course the current user is enrolled in but not viewing */
85 /** var int Course the current user is currently viewing */
86 const COURSE_CURRENT
= 2;
88 /** @var int Parameter to aid the coder in tracking [optional] */
90 /** @var string|int The identifier for the node, used to retrieve the node */
92 /** @var string The text to use for the node */
94 /** @var string Short text to use if requested [optional] */
95 public $shorttext = null;
96 /** @var string The title attribute for an action if one is defined */
98 /** @var string A string that can be used to build a help button */
99 public $helpbutton = null;
100 /** @var moodle_url|action_link|null An action for the node (link) */
101 public $action = null;
102 /** @var pix_icon The path to an icon to use for this node */
104 /** @var int See TYPE_* constants defined for this class */
105 public $type = self
::TYPE_UNKNOWN
;
106 /** @var int See NODETYPE_* constants defined for this class */
107 public $nodetype = self
::NODETYPE_LEAF
;
108 /** @var bool If set to true the node will be collapsed by default */
109 public $collapse = false;
110 /** @var bool If set to true the node will be expanded by default */
111 public $forceopen = false;
112 /** @var array An array of CSS classes for the node */
113 public $classes = array();
114 /** @var navigation_node_collection An array of child nodes */
115 public $children = array();
116 /** @var bool If set to true the node will be recognised as active */
117 public $isactive = false;
118 /** @var bool If set to true the node will be dimmed */
119 public $hidden = false;
120 /** @var bool If set to false the node will not be displayed */
121 public $display = true;
122 /** @var bool If set to true then an HR will be printed before the node */
123 public $preceedwithhr = false;
124 /** @var bool If set to true the the navigation bar should ignore this node */
125 public $mainnavonly = false;
126 /** @var bool If set to true a title will be added to the action no matter what */
127 public $forcetitle = false;
128 /** @var navigation_node A reference to the node parent, you should never set this directly you should always call set_parent */
129 public $parent = null;
130 /** @var bool Override to not display the icon even if one is provided **/
131 public $hideicon = false;
132 /** @var bool Set to true if we KNOW that this node can be expanded. */
133 public $isexpandable = false;
135 protected $namedtypes = array(0=>'system',10=>'category',20=>'course',30=>'structure',40=>'activity',50=>'resource',60=>'custom',70=>'setting',71=>'siteadmin', 80=>'user');
136 /** @var moodle_url */
137 protected static $fullmeurl = null;
138 /** @var bool toogles auto matching of active node */
139 public static $autofindactive = true;
140 /** @var bool should we load full admin tree or rely on AJAX for performance reasons */
141 protected static $loadadmintree = false;
142 /** @var mixed If set to an int, that section will be included even if it has no activities */
143 public $includesectionnum = false;
146 * Constructs a new navigation_node
148 * @param array|string $properties Either an array of properties or a string to use
149 * as the text for the node
151 public function __construct($properties) {
152 if (is_array($properties)) {
153 // Check the array for each property that we allow to set at construction.
154 // text - The main content for the node
155 // shorttext - A short text if required for the node
156 // icon - The icon to display for the node
157 // type - The type of the node
158 // key - The key to use to identify the node
159 // parent - A reference to the nodes parent
160 // action - The action to attribute to this node, usually a URL to link to
161 if (array_key_exists('text', $properties)) {
162 $this->text
= $properties['text'];
164 if (array_key_exists('shorttext', $properties)) {
165 $this->shorttext
= $properties['shorttext'];
167 if (!array_key_exists('icon', $properties)) {
168 $properties['icon'] = new pix_icon('i/navigationitem', '');
170 $this->icon
= $properties['icon'];
171 if ($this->icon
instanceof pix_icon
) {
172 if (empty($this->icon
->attributes
['class'])) {
173 $this->icon
->attributes
['class'] = 'navicon';
175 $this->icon
->attributes
['class'] .= ' navicon';
178 if (array_key_exists('type', $properties)) {
179 $this->type
= $properties['type'];
181 $this->type
= self
::TYPE_CUSTOM
;
183 if (array_key_exists('key', $properties)) {
184 $this->key
= $properties['key'];
186 // This needs to happen last because of the check_if_active call that occurs
187 if (array_key_exists('action', $properties)) {
188 $this->action
= $properties['action'];
189 if (is_string($this->action
)) {
190 $this->action
= new moodle_url($this->action
);
192 if (self
::$autofindactive) {
193 $this->check_if_active();
196 if (array_key_exists('parent', $properties)) {
197 $this->set_parent($properties['parent']);
199 } else if (is_string($properties)) {
200 $this->text
= $properties;
202 if ($this->text
=== null) {
203 throw new coding_exception('You must set the text for the node when you create it.');
205 // Instantiate a new navigation node collection for this nodes children
206 $this->children
= new navigation_node_collection();
210 * Checks if this node is the active node.
212 * This is determined by comparing the action for the node against the
213 * defined URL for the page. A match will see this node marked as active.
215 * @param int $strength One of URL_MATCH_EXACT, URL_MATCH_PARAMS, or URL_MATCH_BASE
218 public function check_if_active($strength=URL_MATCH_EXACT
) {
219 global $FULLME, $PAGE;
220 // Set fullmeurl if it hasn't already been set
221 if (self
::$fullmeurl == null) {
222 if ($PAGE->has_set_url()) {
223 self
::override_active_url(new moodle_url($PAGE->url
));
225 self
::override_active_url(new moodle_url($FULLME));
229 // Compare the action of this node against the fullmeurl
230 if ($this->action
instanceof moodle_url
&& $this->action
->compare(self
::$fullmeurl, $strength)) {
231 $this->make_active();
238 * This sets the URL that the URL of new nodes get compared to when locating
241 * The active node is the node that matches the URL set here. By default this
242 * is either $PAGE->url or if that hasn't been set $FULLME.
244 * @param moodle_url $url The url to use for the fullmeurl.
245 * @param bool $loadadmintree use true if the URL point to administration tree
247 public static function override_active_url(moodle_url
$url, $loadadmintree = false) {
248 // Clone the URL, in case the calling script changes their URL later.
249 self
::$fullmeurl = new moodle_url($url);
250 // True means we do not want AJAX loaded admin tree, required for all admin pages.
251 if ($loadadmintree) {
252 // Do not change back to false if already set.
253 self
::$loadadmintree = true;
258 * Use when page is linked from the admin tree,
259 * if not used navigation could not find the page using current URL
260 * because the tree is not fully loaded.
262 public static function require_admin_tree() {
263 self
::$loadadmintree = true;
267 * Creates a navigation node, ready to add it as a child using add_node
268 * function. (The created node needs to be added before you can use it.)
269 * @param string $text
270 * @param moodle_url|action_link $action
272 * @param string $shorttext
273 * @param string|int $key
274 * @param pix_icon $icon
275 * @return navigation_node
277 public static function create($text, $action=null, $type=self
::TYPE_CUSTOM
,
278 $shorttext=null, $key=null, pix_icon
$icon=null) {
279 // Properties array used when creating the new navigation node
284 // Set the action if one was provided
285 if ($action!==null) {
286 $itemarray['action'] = $action;
288 // Set the shorttext if one was provided
289 if ($shorttext!==null) {
290 $itemarray['shorttext'] = $shorttext;
292 // Set the icon if one was provided
294 $itemarray['icon'] = $icon;
297 $itemarray['key'] = $key;
298 // Construct and return
299 return new navigation_node($itemarray);
303 * Adds a navigation node as a child of this node.
305 * @param string $text
306 * @param moodle_url|action_link $action
308 * @param string $shorttext
309 * @param string|int $key
310 * @param pix_icon $icon
311 * @return navigation_node
313 public function add($text, $action=null, $type=self
::TYPE_CUSTOM
, $shorttext=null, $key=null, pix_icon
$icon=null) {
315 $childnode = self
::create($text, $action, $type, $shorttext, $key, $icon);
317 // Add the child to end and return
318 return $this->add_node($childnode);
322 * Adds a navigation node as a child of this one, given a $node object
323 * created using the create function.
324 * @param navigation_node $childnode Node to add
325 * @param string $beforekey
326 * @return navigation_node The added node
328 public function add_node(navigation_node
$childnode, $beforekey=null) {
329 // First convert the nodetype for this node to a branch as it will now have children
330 if ($this->nodetype
!== self
::NODETYPE_BRANCH
) {
331 $this->nodetype
= self
::NODETYPE_BRANCH
;
333 // Set the parent to this node
334 $childnode->set_parent($this);
336 // Default the key to the number of children if not provided
337 if ($childnode->key
=== null) {
338 $childnode->key
= $this->children
->count();
341 // Add the child using the navigation_node_collections add method
342 $node = $this->children
->add($childnode, $beforekey);
344 // If added node is a category node or the user is logged in and it's a course
345 // then mark added node as a branch (makes it expandable by AJAX)
346 $type = $childnode->type
;
347 if (($type == self
::TYPE_CATEGORY
) ||
(isloggedin() && ($type == self
::TYPE_COURSE
)) ||
($type == self
::TYPE_MY_CATEGORY
) ||
348 ($type === self
::TYPE_SITE_ADMIN
)) {
349 $node->nodetype
= self
::NODETYPE_BRANCH
;
351 // If this node is hidden mark it's children as hidden also
353 $node->hidden
= true;
355 // Return added node (reference returned by $this->children->add()
360 * Return a list of all the keys of all the child nodes.
361 * @return array the keys.
363 public function get_children_key_list() {
364 return $this->children
->get_key_list();
368 * Searches for a node of the given type with the given key.
370 * This searches this node plus all of its children, and their children....
371 * If you know the node you are looking for is a child of this node then please
372 * use the get method instead.
374 * @param int|string $key The key of the node we are looking for
375 * @param int $type One of navigation_node::TYPE_*
376 * @return navigation_node|false
378 public function find($key, $type) {
379 return $this->children
->find($key, $type);
383 * Get the child of this node that has the given key + (optional) type.
385 * If you are looking for a node and want to search all children + their children
386 * then please use the find method instead.
388 * @param int|string $key The key of the node we are looking for
389 * @param int $type One of navigation_node::TYPE_*
390 * @return navigation_node|false
392 public function get($key, $type=null) {
393 return $this->children
->get($key, $type);
401 public function remove() {
402 return $this->parent
->children
->remove($this->key
, $this->type
);
406 * Checks if this node has or could have any children
408 * @return bool Returns true if it has children or could have (by AJAX expansion)
410 public function has_children() {
411 return ($this->nodetype
=== navigation_node
::NODETYPE_BRANCH ||
$this->children
->count()>0 ||
$this->isexpandable
);
415 * Marks this node as active and forces it open.
417 * Important: If you are here because you need to mark a node active to get
418 * the navigation to do what you want have you looked at {@link navigation_node::override_active_url()}?
419 * You can use it to specify a different URL to match the active navigation node on
420 * rather than having to locate and manually mark a node active.
422 public function make_active() {
423 $this->isactive
= true;
424 $this->add_class('active_tree_node');
426 if ($this->parent
!== null) {
427 $this->parent
->make_inactive();
432 * Marks a node as inactive and recusised back to the base of the tree
433 * doing the same to all parents.
435 public function make_inactive() {
436 $this->isactive
= false;
437 $this->remove_class('active_tree_node');
438 if ($this->parent
!== null) {
439 $this->parent
->make_inactive();
444 * Forces this node to be open and at the same time forces open all
445 * parents until the root node.
449 public function force_open() {
450 $this->forceopen
= true;
451 if ($this->parent
!== null) {
452 $this->parent
->force_open();
457 * Adds a CSS class to this node.
459 * @param string $class
462 public function add_class($class) {
463 if (!in_array($class, $this->classes
)) {
464 $this->classes
[] = $class;
470 * Removes a CSS class from this node.
472 * @param string $class
473 * @return bool True if the class was successfully removed.
475 public function remove_class($class) {
476 if (in_array($class, $this->classes
)) {
477 $key = array_search($class,$this->classes
);
479 unset($this->classes
[$key]);
487 * Sets the title for this node and forces Moodle to utilise it.
488 * @param string $title
490 public function title($title) {
491 $this->title
= $title;
492 $this->forcetitle
= true;
496 * Resets the page specific information on this node if it is being unserialised.
498 public function __wakeup(){
499 $this->forceopen
= false;
500 $this->isactive
= false;
501 $this->remove_class('active_tree_node');
505 * Checks if this node or any of its children contain the active node.
511 public function contains_active_node() {
512 if ($this->isactive
) {
515 foreach ($this->children
as $child) {
516 if ($child->isactive ||
$child->contains_active_node()) {
525 * Finds the active node.
527 * Searches this nodes children plus all of the children for the active node
528 * and returns it if found.
532 * @return navigation_node|false
534 public function find_active_node() {
535 if ($this->isactive
) {
538 foreach ($this->children
as &$child) {
539 $outcome = $child->find_active_node();
540 if ($outcome !== false) {
549 * Searches all children for the best matching active node
550 * @return navigation_node|false
552 public function search_for_active_node() {
553 if ($this->check_if_active(URL_MATCH_BASE
)) {
556 foreach ($this->children
as &$child) {
557 $outcome = $child->search_for_active_node();
558 if ($outcome !== false) {
567 * Gets the content for this node.
569 * @param bool $shorttext If true shorttext is used rather than the normal text
572 public function get_content($shorttext=false) {
573 if ($shorttext && $this->shorttext
!==null) {
574 return format_string($this->shorttext
);
576 return format_string($this->text
);
581 * Gets the title to use for this node.
585 public function get_title() {
586 if ($this->forcetitle ||
$this->action
!= null){
594 * Gets the CSS class to add to this node to describe its type
598 public function get_css_type() {
599 if (array_key_exists($this->type
, $this->namedtypes
)) {
600 return 'type_'.$this->namedtypes
[$this->type
];
602 return 'type_unknown';
606 * Finds all nodes that are expandable by AJAX
608 * @param array $expandable An array by reference to populate with expandable nodes.
610 public function find_expandable(array &$expandable) {
611 foreach ($this->children
as &$child) {
612 if ($child->display
&& $child->has_children() && $child->children
->count() == 0) {
613 $child->id
= 'expandable_branch_'.$child->type
.'_'.clean_param($child->key
, PARAM_ALPHANUMEXT
);
614 $this->add_class('canexpand');
615 $expandable[] = array('id' => $child->id
, 'key' => $child->key
, 'type' => $child->type
);
617 $child->find_expandable($expandable);
622 * Finds all nodes of a given type (recursive)
624 * @param int $type One of navigation_node::TYPE_*
627 public function find_all_of_type($type) {
628 $nodes = $this->children
->type($type);
629 foreach ($this->children
as &$node) {
630 $childnodes = $node->find_all_of_type($type);
631 $nodes = array_merge($nodes, $childnodes);
637 * Removes this node if it is empty
639 public function trim_if_empty() {
640 if ($this->children
->count() == 0) {
646 * Creates a tab representation of this nodes children that can be used
647 * with print_tabs to produce the tabs on a page.
649 * call_user_func_array('print_tabs', $node->get_tabs_array());
651 * @param array $inactive
652 * @param bool $return
653 * @return array Array (tabs, selected, inactive, activated, return)
655 public function get_tabs_array(array $inactive=array(), $return=false) {
659 $activated = array();
660 foreach ($this->children
as $node) {
661 $tabs[] = new tabobject($node->key
, $node->action
, $node->get_content(), $node->get_title());
662 if ($node->contains_active_node()) {
663 if ($node->children
->count() > 0) {
664 $activated[] = $node->key
;
665 foreach ($node->children
as $child) {
666 if ($child->contains_active_node()) {
667 $selected = $child->key
;
669 $rows[] = new tabobject($child->key
, $child->action
, $child->get_content(), $child->get_title());
672 $selected = $node->key
;
676 return array(array($tabs, $rows), $selected, $inactive, $activated, $return);
680 * Sets the parent for this node and if this node is active ensures that the tree is properly
683 * @param navigation_node $parent
685 public function set_parent(navigation_node
$parent) {
686 // Set the parent (thats the easy part)
687 $this->parent
= $parent;
688 // Check if this node is active (this is checked during construction)
689 if ($this->isactive
) {
690 // Force all of the parent nodes open so you can see this node
691 $this->parent
->force_open();
692 // Make all parents inactive so that its clear where we are.
693 $this->parent
->make_inactive();
698 * Hides the node and any children it has.
701 * @param array $typestohide Optional. An array of node types that should be hidden.
702 * If null all nodes will be hidden.
703 * If an array is given then nodes will only be hidden if their type mtatches an element in the array.
704 * e.g. array(navigation_node::TYPE_COURSE) would hide only course nodes.
706 public function hide(array $typestohide = null) {
707 if ($typestohide === null ||
in_array($this->type
, $typestohide)) {
708 $this->display
= false;
709 if ($this->has_children()) {
710 foreach ($this->children
as $child) {
711 $child->hide($typestohide);
719 * Navigation node collection
721 * This class is responsible for managing a collection of navigation nodes.
722 * It is required because a node's unique identifier is a combination of both its
725 * Originally an array was used with a string key that was a combination of the two
726 * however it was decided that a better solution would be to use a class that
727 * implements the standard IteratorAggregate interface.
730 * @category navigation
731 * @copyright 2010 Sam Hemelryk
732 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
734 class navigation_node_collection
implements IteratorAggregate
{
736 * A multidimensional array to where the first key is the type and the second
737 * key is the nodes key.
740 protected $collection = array();
742 * An array that contains references to nodes in the same order they were added.
743 * This is maintained as a progressive array.
746 protected $orderedcollection = array();
748 * A reference to the last node that was added to the collection
749 * @var navigation_node
751 protected $last = null;
753 * The total number of items added to this array.
756 protected $count = 0;
759 * Adds a navigation node to the collection
761 * @param navigation_node $node Node to add
762 * @param string $beforekey If specified, adds before a node with this key,
763 * otherwise adds at end
764 * @return navigation_node Added node
766 public function add(navigation_node
$node, $beforekey=null) {
771 // First check we have a 2nd dimension for this type
772 if (!array_key_exists($type, $this->orderedcollection
)) {
773 $this->orderedcollection
[$type] = array();
775 // Check for a collision and report if debugging is turned on
776 if ($CFG->debug
&& array_key_exists($key, $this->orderedcollection
[$type])) {
777 debugging('Navigation node intersect: Adding a node that already exists '.$key, DEBUG_DEVELOPER
);
780 // Find the key to add before
781 $newindex = $this->count
;
783 if ($beforekey !== null) {
784 foreach ($this->collection
as $index => $othernode) {
785 if ($othernode->key
=== $beforekey) {
791 if ($newindex === $this->count
) {
792 debugging('Navigation node add_before: Reference node not found ' . $beforekey .
793 ', options: ' . implode(' ', $this->get_key_list()), DEBUG_DEVELOPER
);
797 // Add the node to the appropriate place in the by-type structure (which
798 // is not ordered, despite the variable name)
799 $this->orderedcollection
[$type][$key] = $node;
801 // Update existing references in the ordered collection (which is the
802 // one that isn't called 'ordered') to shuffle them along if required
803 for ($oldindex = $this->count
; $oldindex > $newindex; $oldindex--) {
804 $this->collection
[$oldindex] = $this->collection
[$oldindex - 1];
807 // Add a reference to the node to the progressive collection.
808 $this->collection
[$newindex] = $this->orderedcollection
[$type][$key];
809 // Update the last property to a reference to this new node.
810 $this->last
= $this->orderedcollection
[$type][$key];
812 // Reorder the array by index if needed
814 ksort($this->collection
);
817 // Return the reference to the now added node
822 * Return a list of all the keys of all the nodes.
823 * @return array the keys.
825 public function get_key_list() {
827 foreach ($this->collection
as $node) {
828 $keys[] = $node->key
;
834 * Fetches a node from this collection.
836 * @param string|int $key The key of the node we want to find.
837 * @param int $type One of navigation_node::TYPE_*.
838 * @return navigation_node|null
840 public function get($key, $type=null) {
841 if ($type !== null) {
842 // If the type is known then we can simply check and fetch
843 if (!empty($this->orderedcollection
[$type][$key])) {
844 return $this->orderedcollection
[$type][$key];
847 // Because we don't know the type we look in the progressive array
848 foreach ($this->collection
as $node) {
849 if ($node->key
=== $key) {
858 * Searches for a node with matching key and type.
860 * This function searches both the nodes in this collection and all of
861 * the nodes in each collection belonging to the nodes in this collection.
865 * @param string|int $key The key of the node we want to find.
866 * @param int $type One of navigation_node::TYPE_*.
867 * @return navigation_node|null
869 public function find($key, $type=null) {
870 if ($type !== null && array_key_exists($type, $this->orderedcollection
) && array_key_exists($key, $this->orderedcollection
[$type])) {
871 return $this->orderedcollection
[$type][$key];
873 $nodes = $this->getIterator();
874 // Search immediate children first
875 foreach ($nodes as &$node) {
876 if ($node->key
=== $key && ($type === null ||
$type === $node->type
)) {
880 // Now search each childs children
881 foreach ($nodes as &$node) {
882 $result = $node->children
->find($key, $type);
883 if ($result !== false) {
892 * Fetches the last node that was added to this collection
894 * @return navigation_node
896 public function last() {
901 * Fetches all nodes of a given type from this collection
903 * @param string|int $type node type being searched for.
904 * @return array ordered collection
906 public function type($type) {
907 if (!array_key_exists($type, $this->orderedcollection
)) {
908 $this->orderedcollection
[$type] = array();
910 return $this->orderedcollection
[$type];
913 * Removes the node with the given key and type from the collection
915 * @param string|int $key The key of the node we want to find.
919 public function remove($key, $type=null) {
920 $child = $this->get($key, $type);
921 if ($child !== false) {
922 foreach ($this->collection
as $colkey => $node) {
923 if ($node->key
=== $key && $node->type
== $type) {
924 unset($this->collection
[$colkey]);
925 $this->collection
= array_values($this->collection
);
929 unset($this->orderedcollection
[$child->type
][$child->key
]);
937 * Gets the number of nodes in this collection
939 * This option uses an internal count rather than counting the actual options to avoid
940 * a performance hit through the count function.
944 public function count() {
948 * Gets an array iterator for the collection.
950 * This is required by the IteratorAggregator interface and is used by routines
951 * such as the foreach loop.
953 * @return ArrayIterator
955 public function getIterator() {
956 return new ArrayIterator($this->collection
);
961 * The global navigation class used for... the global navigation
963 * This class is used by PAGE to store the global navigation for the site
964 * and is then used by the settings nav and navbar to save on processing and DB calls
967 * {@link lib/pagelib.php} {@link moodle_page::initialise_theme_and_output()}
968 * {@link lib/ajax/getnavbranch.php} Called by ajax
971 * @category navigation
972 * @copyright 2009 Sam Hemelryk
973 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
975 class global_navigation
extends navigation_node
{
976 /** @var moodle_page The Moodle page this navigation object belongs to. */
978 /** @var bool switch to let us know if the navigation object is initialised*/
979 protected $initialised = false;
980 /** @var array An array of course information */
981 protected $mycourses = array();
982 /** @var navigation_node[] An array for containing root navigation nodes */
983 protected $rootnodes = array();
984 /** @var bool A switch for whether to show empty sections in the navigation */
985 protected $showemptysections = true;
986 /** @var bool A switch for whether courses should be shown within categories on the navigation. */
987 protected $showcategories = null;
988 /** @var null@var bool A switch for whether or not to show categories in the my courses branch. */
989 protected $showmycategories = null;
990 /** @var array An array of stdClasses for users that the navigation is extended for */
991 protected $extendforuser = array();
992 /** @var navigation_cache */
994 /** @var array An array of course ids that are present in the navigation */
995 protected $addedcourses = array();
997 protected $allcategoriesloaded = false;
998 /** @var array An array of category ids that are included in the navigation */
999 protected $addedcategories = array();
1000 /** @var int expansion limit */
1001 protected $expansionlimit = 0;
1002 /** @var int userid to allow parent to see child's profile page navigation */
1003 protected $useridtouseforparentchecks = 0;
1004 /** @var cache_session A cache that stores information on expanded courses */
1005 protected $cacheexpandcourse = null;
1007 /** Used when loading categories to load all top level categories [parent = 0] **/
1008 const LOAD_ROOT_CATEGORIES
= 0;
1009 /** Used when loading categories to load all categories **/
1010 const LOAD_ALL_CATEGORIES
= -1;
1013 * Constructs a new global navigation
1015 * @param moodle_page $page The page this navigation object belongs to
1017 public function __construct(moodle_page
$page) {
1018 global $CFG, $SITE, $USER;
1020 if (during_initial_install()) {
1024 if (get_home_page() == HOMEPAGE_SITE
) {
1025 // We are using the site home for the root element
1026 $properties = array(
1028 'type' => navigation_node
::TYPE_SYSTEM
,
1029 'text' => get_string('home'),
1030 'action' => new moodle_url('/')
1033 // We are using the users my moodle for the root element
1034 $properties = array(
1036 'type' => navigation_node
::TYPE_SYSTEM
,
1037 'text' => get_string('myhome'),
1038 'action' => new moodle_url('/my/')
1042 // Use the parents constructor.... good good reuse
1043 parent
::__construct($properties);
1045 // Initalise and set defaults
1046 $this->page
= $page;
1047 $this->forceopen
= true;
1048 $this->cache
= new navigation_cache(NAVIGATION_CACHE_NAME
);
1052 * Mutator to set userid to allow parent to see child's profile
1053 * page navigation. See MDL-25805 for initial issue. Linked to it
1054 * is an issue explaining why this is a REALLY UGLY HACK thats not
1057 * @param int $userid userid of profile page that parent wants to navigate around.
1059 public function set_userid_for_parent_checks($userid) {
1060 $this->useridtouseforparentchecks
= $userid;
1065 * Initialises the navigation object.
1067 * This causes the navigation object to look at the current state of the page
1068 * that it is associated with and then load the appropriate content.
1070 * This should only occur the first time that the navigation structure is utilised
1071 * which will normally be either when the navbar is called to be displayed or
1072 * when a block makes use of it.
1076 public function initialise() {
1077 global $CFG, $SITE, $USER;
1078 // Check if it has already been initialised
1079 if ($this->initialised ||
during_initial_install()) {
1082 $this->initialised
= true;
1084 // Set up the five base root nodes. These are nodes where we will put our
1085 // content and are as follows:
1086 // site: Navigation for the front page.
1087 // myprofile: User profile information goes here.
1088 // currentcourse: The course being currently viewed.
1089 // mycourses: The users courses get added here.
1090 // courses: Additional courses are added here.
1091 // users: Other users information loaded here.
1092 $this->rootnodes
= array();
1093 if (get_home_page() == HOMEPAGE_SITE
) {
1094 // The home element should be my moodle because the root element is the site
1095 if (isloggedin() && !isguestuser()) { // Makes no sense if you aren't logged in
1096 $this->rootnodes
['home'] = $this->add(get_string('myhome'), new moodle_url('/my/'), self
::TYPE_SETTING
, null, 'home');
1099 // The home element should be the site because the root node is my moodle
1100 $this->rootnodes
['home'] = $this->add(get_string('sitehome'), new moodle_url('/'), self
::TYPE_SETTING
, null, 'home');
1101 if (!empty($CFG->defaulthomepage
) && ($CFG->defaulthomepage
== HOMEPAGE_MY
)) {
1102 // We need to stop automatic redirection
1103 $this->rootnodes
['home']->action
->param('redirect', '0');
1106 $this->rootnodes
['site'] = $this->add_course($SITE);
1107 $this->rootnodes
['myprofile'] = $this->add(get_string('myprofile'), null, self
::TYPE_USER
, null, 'myprofile');
1108 $this->rootnodes
['currentcourse'] = $this->add(get_string('currentcourse'), null, self
::TYPE_ROOTNODE
, null, 'currentcourse');
1109 $this->rootnodes
['mycourses'] = $this->add(get_string('mycourses'), null, self
::TYPE_ROOTNODE
, null, 'mycourses');
1110 $this->rootnodes
['courses'] = $this->add(get_string('courses'), new moodle_url('/course/index.php'), self
::TYPE_ROOTNODE
, null, 'courses');
1111 $this->rootnodes
['users'] = $this->add(get_string('users'), null, self
::TYPE_ROOTNODE
, null, 'users');
1113 // We always load the frontpage course to ensure it is available without
1114 // JavaScript enabled.
1115 $this->add_front_page_course_essentials($this->rootnodes
['site'], $SITE);
1116 $this->load_course_sections($SITE, $this->rootnodes
['site']);
1118 $course = $this->page
->course
;
1120 // $issite gets set to true if the current pages course is the sites frontpage course
1121 $issite = ($this->page
->course
->id
== $SITE->id
);
1122 // Determine if the user is enrolled in any course.
1123 $enrolledinanycourse = enrol_user_sees_own_courses();
1125 $this->rootnodes
['currentcourse']->mainnavonly
= true;
1126 if ($enrolledinanycourse) {
1127 $this->rootnodes
['mycourses']->isexpandable
= true;
1128 if ($CFG->navshowallcourses
) {
1129 // When we show all courses we need to show both the my courses and the regular courses branch.
1130 $this->rootnodes
['courses']->isexpandable
= true;
1133 $this->rootnodes
['courses']->isexpandable
= true;
1136 // Load the users enrolled courses if they are viewing the My Moodle page AND the admin has not
1137 // set that they wish to keep the My Courses branch collapsed by default.
1138 if (!empty($CFG->navexpandmycourses
) && $this->page
->pagelayout
=== 'mydashboard'){
1139 $this->rootnodes
['mycourses']->forceopen
= true;
1140 $this->load_courses_enrolled();
1142 $this->rootnodes
['mycourses']->collapse
= true;
1143 $this->rootnodes
['mycourses']->make_inactive();
1146 $canviewcourseprofile = true;
1148 // Next load context specific content into the navigation
1149 switch ($this->page
->context
->contextlevel
) {
1150 case CONTEXT_SYSTEM
:
1151 // Nothing left to do here I feel.
1153 case CONTEXT_COURSECAT
:
1154 // This is essential, we must load categories.
1155 $this->load_all_categories($this->page
->context
->instanceid
, true);
1157 case CONTEXT_BLOCK
:
1158 case CONTEXT_COURSE
:
1160 // Nothing left to do here.
1164 // Load the course associated with the current page into the navigation.
1165 $coursenode = $this->add_course($course, false, self
::COURSE_CURRENT
);
1166 // If the course wasn't added then don't try going any further.
1168 $canviewcourseprofile = false;
1172 // If the user is not enrolled then we only want to show the
1173 // course node and not populate it.
1175 // Not enrolled, can't view, and hasn't switched roles
1176 if (!can_access_course($course)) {
1177 if ($coursenode->isexpandable
=== true) {
1178 // Obviously the situation has changed, update the cache and adjust the node.
1179 // This occurs if the user access to a course has been revoked (one way or another) after
1180 // initially logging in for this session.
1181 $this->get_expand_course_cache()->set($course->id
, 1);
1182 $coursenode->isexpandable
= true;
1183 $coursenode->nodetype
= self
::NODETYPE_BRANCH
;
1185 // Very ugly hack - do not force "parents" to enrol into course their child is enrolled in,
1186 // this hack has been propagated from user/view.php to display the navigation node. (MDL-25805)
1187 if (!$this->current_user_is_parent_role()) {
1188 $coursenode->make_active();
1189 $canviewcourseprofile = false;
1194 if ($coursenode->isexpandable
=== false) {
1195 // Obviously the situation has changed, update the cache and adjust the node.
1196 // This occurs if the user has been granted access to a course (one way or another) after initially
1197 // logging in for this session.
1198 $this->get_expand_course_cache()->set($course->id
, 1);
1199 $coursenode->isexpandable
= true;
1200 $coursenode->nodetype
= self
::NODETYPE_BRANCH
;
1203 // Add the essentials such as reports etc...
1204 $this->add_course_essentials($coursenode, $course);
1205 // Extend course navigation with it's sections/activities
1206 $this->load_course_sections($course, $coursenode);
1207 if (!$coursenode->contains_active_node() && !$coursenode->search_for_active_node()) {
1208 $coursenode->make_active();
1212 case CONTEXT_MODULE
:
1214 // If this is the site course then most information will have
1215 // already been loaded.
1216 // However we need to check if there is more content that can
1217 // yet be loaded for the specific module instance.
1218 $activitynode = $this->rootnodes
['site']->find($this->page
->cm
->id
, navigation_node
::TYPE_ACTIVITY
);
1219 if ($activitynode) {
1220 $this->load_activity($this->page
->cm
, $this->page
->course
, $activitynode);
1225 $course = $this->page
->course
;
1226 $cm = $this->page
->cm
;
1228 // Load the course associated with the page into the navigation
1229 $coursenode = $this->add_course($course, false, self
::COURSE_CURRENT
);
1231 // If the course wasn't added then don't try going any further.
1233 $canviewcourseprofile = false;
1237 // If the user is not enrolled then we only want to show the
1238 // course node and not populate it.
1239 if (!can_access_course($course)) {
1240 $coursenode->make_active();
1241 $canviewcourseprofile = false;
1245 $this->add_course_essentials($coursenode, $course);
1247 // Load the course sections into the page
1248 $this->load_course_sections($course, $coursenode, null, $cm);
1249 $activity = $coursenode->find($cm->id
, navigation_node
::TYPE_ACTIVITY
);
1250 if (!empty($activity)) {
1251 // Finally load the cm specific navigaton information
1252 $this->load_activity($cm, $course, $activity);
1253 // Check if we have an active ndoe
1254 if (!$activity->contains_active_node() && !$activity->search_for_active_node()) {
1255 // And make the activity node active.
1256 $activity->make_active();
1262 // The users profile information etc is already loaded
1263 // for the front page.
1266 $course = $this->page
->course
;
1267 // Load the course associated with the user into the navigation
1268 $coursenode = $this->add_course($course, false, self
::COURSE_CURRENT
);
1270 // If the course wasn't added then don't try going any further.
1272 $canviewcourseprofile = false;
1276 // If the user is not enrolled then we only want to show the
1277 // course node and not populate it.
1278 if (!can_access_course($course)) {
1279 $coursenode->make_active();
1280 $canviewcourseprofile = false;
1283 $this->add_course_essentials($coursenode, $course);
1284 $this->load_course_sections($course, $coursenode);
1288 // Load for the current user
1289 $this->load_for_user();
1290 if ($this->page
->context
->contextlevel
>= CONTEXT_COURSE
&& $this->page
->context
->instanceid
!= $SITE->id
&& $canviewcourseprofile) {
1291 $this->load_for_user(null, true);
1293 // Load each extending user into the navigation.
1294 foreach ($this->extendforuser
as $user) {
1295 if ($user->id
!= $USER->id
) {
1296 $this->load_for_user($user);
1300 // Give the local plugins a chance to include some navigation if they want.
1301 foreach (core_component
::get_plugin_list_with_file('local', 'lib.php', true) as $plugin => $unused) {
1302 $function = "local_{$plugin}_extend_navigation";
1303 $oldfunction = "local_{$plugin}_extends_navigation";
1305 if (function_exists($function)) {
1308 } else if (function_exists($oldfunction)) {
1309 debugging("Deprecated local plugin navigation callback: Please rename '{$oldfunction}' to '{$function}'. ".
1310 "Support for the old callback will be dropped in Moodle 3.1", DEBUG_DEVELOPER
);
1311 $oldfunction($this);
1315 // Remove any empty root nodes
1316 foreach ($this->rootnodes
as $node) {
1317 // Dont remove the home node
1318 /** @var navigation_node $node */
1319 if ($node->key
!== 'home' && !$node->has_children() && !$node->isactive
) {
1324 if (!$this->contains_active_node()) {
1325 $this->search_for_active_node();
1328 // If the user is not logged in modify the navigation structure as detailed
1329 // in {@link http://docs.moodle.org/dev/Navigation_2.0_structure}
1330 if (!isloggedin()) {
1331 $activities = clone($this->rootnodes
['site']->children
);
1332 $this->rootnodes
['site']->remove();
1333 $children = clone($this->children
);
1334 $this->children
= new navigation_node_collection();
1335 foreach ($activities as $child) {
1336 $this->children
->add($child);
1338 foreach ($children as $child) {
1339 $this->children
->add($child);
1346 * Returns true if the current user is a parent of the user being currently viewed.
1348 * If the current user is not viewing another user, or if the current user does not hold any parent roles over the
1349 * other user being viewed this function returns false.
1350 * In order to set the user for whom we are checking against you must call {@link set_userid_for_parent_checks()}
1355 protected function current_user_is_parent_role() {
1357 if ($this->useridtouseforparentchecks
&& $this->useridtouseforparentchecks
!= $USER->id
) {
1358 $usercontext = context_user
::instance($this->useridtouseforparentchecks
, MUST_EXIST
);
1359 if (!has_capability('moodle/user:viewdetails', $usercontext)) {
1362 if ($DB->record_exists('role_assignments', array('userid' => $USER->id
, 'contextid' => $usercontext->id
))) {
1370 * Returns true if courses should be shown within categories on the navigation.
1372 * @param bool $ismycourse Set to true if you are calculating this for a course.
1375 protected function show_categories($ismycourse = false) {
1378 return $this->show_my_categories();
1380 if ($this->showcategories
=== null) {
1382 if ($this->page
->context
->contextlevel
== CONTEXT_COURSECAT
) {
1384 } else if (!empty($CFG->navshowcategories
) && $DB->count_records('course_categories') > 1) {
1387 $this->showcategories
= $show;
1389 return $this->showcategories
;
1393 * Returns true if we should show categories in the My Courses branch.
1396 protected function show_my_categories() {
1398 if ($this->showmycategories
=== null) {
1399 $this->showmycategories
= !empty($CFG->navshowmycoursecategories
) && $DB->count_records('course_categories') > 1;
1401 return $this->showmycategories
;
1405 * Loads the courses in Moodle into the navigation.
1407 * @global moodle_database $DB
1408 * @param string|array $categoryids An array containing categories to load courses
1409 * for, OR null to load courses for all categories.
1410 * @return array An array of navigation_nodes one for each course
1412 protected function load_all_courses($categoryids = null) {
1413 global $CFG, $DB, $SITE;
1415 // Work out the limit of courses.
1417 if (!empty($CFG->navcourselimit
)) {
1418 $limit = $CFG->navcourselimit
;
1421 $toload = (empty($CFG->navshowallcourses
))?self
::LOAD_ROOT_CATEGORIES
:self
::LOAD_ALL_CATEGORIES
;
1423 // If we are going to show all courses AND we are showing categories then
1424 // to save us repeated DB calls load all of the categories now
1425 if ($this->show_categories()) {
1426 $this->load_all_categories($toload);
1429 // Will be the return of our efforts
1430 $coursenodes = array();
1432 // Check if we need to show categories.
1433 if ($this->show_categories()) {
1434 // Hmmm we need to show categories... this is going to be painful.
1435 // We now need to fetch up to $limit courses for each category to
1437 if ($categoryids !== null) {
1438 if (!is_array($categoryids)) {
1439 $categoryids = array($categoryids);
1441 list($categorywhere, $categoryparams) = $DB->get_in_or_equal($categoryids, SQL_PARAMS_NAMED
, 'cc');
1442 $categorywhere = 'WHERE cc.id '.$categorywhere;
1443 } else if ($toload == self
::LOAD_ROOT_CATEGORIES
) {
1444 $categorywhere = 'WHERE cc.depth = 1 OR cc.depth = 2';
1445 $categoryparams = array();
1447 $categorywhere = '';
1448 $categoryparams = array();
1451 // First up we are going to get the categories that we are going to
1452 // need so that we can determine how best to load the courses from them.
1453 $sql = "SELECT cc.id, COUNT(c.id) AS coursecount
1454 FROM {course_categories} cc
1455 LEFT JOIN {course} c ON c.category = cc.id
1458 $categories = $DB->get_recordset_sql($sql, $categoryparams);
1459 $fullfetch = array();
1460 $partfetch = array();
1461 foreach ($categories as $category) {
1462 if (!$this->can_add_more_courses_to_category($category->id
)) {
1465 if ($category->coursecount
> $limit * 5) {
1466 $partfetch[] = $category->id
;
1467 } else if ($category->coursecount
> 0) {
1468 $fullfetch[] = $category->id
;
1471 $categories->close();
1473 if (count($fullfetch)) {
1474 // First up fetch all of the courses in categories where we know that we are going to
1475 // need the majority of courses.
1476 list($categoryids, $categoryparams) = $DB->get_in_or_equal($fullfetch, SQL_PARAMS_NAMED
, 'lcategory');
1477 $ccselect = ', ' . context_helper
::get_preload_record_columns_sql('ctx');
1478 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
1479 $categoryparams['contextlevel'] = CONTEXT_COURSE
;
1480 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category $ccselect
1483 WHERE c.category {$categoryids}
1484 ORDER BY c.sortorder ASC";
1485 $coursesrs = $DB->get_recordset_sql($sql, $categoryparams);
1486 foreach ($coursesrs as $course) {
1487 if ($course->id
== $SITE->id
) {
1488 // This should not be necessary, frontpage is not in any category.
1491 if (array_key_exists($course->id
, $this->addedcourses
)) {
1492 // It is probably better to not include the already loaded courses
1493 // directly in SQL because inequalities may confuse query optimisers
1494 // and may interfere with query caching.
1497 if (!$this->can_add_more_courses_to_category($course->category
)) {
1500 context_helper
::preload_from_record($course);
1501 if (!$course->visible
&& !is_role_switched($course->id
) && !has_capability('moodle/course:viewhiddencourses', context_course
::instance($course->id
))) {
1504 $coursenodes[$course->id
] = $this->add_course($course);
1506 $coursesrs->close();
1509 if (count($partfetch)) {
1510 // Next we will work our way through the categories where we will likely only need a small
1511 // proportion of the courses.
1512 foreach ($partfetch as $categoryid) {
1513 $ccselect = ', ' . context_helper
::get_preload_record_columns_sql('ctx');
1514 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
1515 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category $ccselect
1518 WHERE c.category = :categoryid
1519 ORDER BY c.sortorder ASC";
1520 $courseparams = array('categoryid' => $categoryid, 'contextlevel' => CONTEXT_COURSE
);
1521 $coursesrs = $DB->get_recordset_sql($sql, $courseparams, 0, $limit * 5);
1522 foreach ($coursesrs as $course) {
1523 if ($course->id
== $SITE->id
) {
1524 // This should not be necessary, frontpage is not in any category.
1527 if (array_key_exists($course->id
, $this->addedcourses
)) {
1528 // It is probably better to not include the already loaded courses
1529 // directly in SQL because inequalities may confuse query optimisers
1530 // and may interfere with query caching.
1531 // This also helps to respect expected $limit on repeated executions.
1534 if (!$this->can_add_more_courses_to_category($course->category
)) {
1537 context_helper
::preload_from_record($course);
1538 if (!$course->visible
&& !is_role_switched($course->id
) && !has_capability('moodle/course:viewhiddencourses', context_course
::instance($course->id
))) {
1541 $coursenodes[$course->id
] = $this->add_course($course);
1543 $coursesrs->close();
1547 // Prepare the SQL to load the courses and their contexts
1548 list($courseids, $courseparams) = $DB->get_in_or_equal(array_keys($this->addedcourses
), SQL_PARAMS_NAMED
, 'lc', false);
1549 $ccselect = ', ' . context_helper
::get_preload_record_columns_sql('ctx');
1550 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
1551 $courseparams['contextlevel'] = CONTEXT_COURSE
;
1552 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category $ccselect
1555 WHERE c.id {$courseids}
1556 ORDER BY c.sortorder ASC";
1557 $coursesrs = $DB->get_recordset_sql($sql, $courseparams);
1558 foreach ($coursesrs as $course) {
1559 if ($course->id
== $SITE->id
) {
1560 // frotpage is not wanted here
1563 if ($this->page
->course
&& ($this->page
->course
->id
== $course->id
)) {
1564 // Don't include the currentcourse in this nodelist - it's displayed in the Current course node
1567 context_helper
::preload_from_record($course);
1568 if (!$course->visible
&& !is_role_switched($course->id
) && !has_capability('moodle/course:viewhiddencourses', context_course
::instance($course->id
))) {
1571 $coursenodes[$course->id
] = $this->add_course($course);
1572 if (count($coursenodes) >= $limit) {
1576 $coursesrs->close();
1579 return $coursenodes;
1583 * Returns true if more courses can be added to the provided category.
1585 * @param int|navigation_node|stdClass $category
1588 protected function can_add_more_courses_to_category($category) {
1591 if (!empty($CFG->navcourselimit
)) {
1592 $limit = (int)$CFG->navcourselimit
;
1594 if (is_numeric($category)) {
1595 if (!array_key_exists($category, $this->addedcategories
)) {
1598 $coursecount = count($this->addedcategories
[$category]->children
->type(self
::TYPE_COURSE
));
1599 } else if ($category instanceof navigation_node
) {
1600 if (($category->type
!= self
::TYPE_CATEGORY
) ||
($category->type
!= self
::TYPE_MY_CATEGORY
)) {
1603 $coursecount = count($category->children
->type(self
::TYPE_COURSE
));
1604 } else if (is_object($category) && property_exists($category,'id')) {
1605 $coursecount = count($this->addedcategories
[$category->id
]->children
->type(self
::TYPE_COURSE
));
1607 return ($coursecount <= $limit);
1611 * Loads all categories (top level or if an id is specified for that category)
1613 * @param int $categoryid The category id to load or null/0 to load all base level categories
1614 * @param bool $showbasecategories If set to true all base level categories will be loaded as well
1615 * as the requested category and any parent categories.
1616 * @return navigation_node|void returns a navigation node if a category has been loaded.
1618 protected function load_all_categories($categoryid = self
::LOAD_ROOT_CATEGORIES
, $showbasecategories = false) {
1621 // Check if this category has already been loaded
1622 if ($this->allcategoriesloaded ||
($categoryid < 1 && $this->is_category_fully_loaded($categoryid))) {
1626 $catcontextsql = context_helper
::get_preload_record_columns_sql('ctx');
1627 $sqlselect = "SELECT cc.*, $catcontextsql
1628 FROM {course_categories} cc
1629 JOIN {context} ctx ON cc.id = ctx.instanceid";
1630 $sqlwhere = "WHERE ctx.contextlevel = ".CONTEXT_COURSECAT
;
1631 $sqlorder = "ORDER BY cc.depth ASC, cc.sortorder ASC, cc.id ASC";
1634 $categoriestoload = array();
1635 if ($categoryid == self
::LOAD_ALL_CATEGORIES
) {
1636 // We are going to load all categories regardless... prepare to fire
1637 // on the database server!
1638 } else if ($categoryid == self
::LOAD_ROOT_CATEGORIES
) { // can be 0
1639 // We are going to load all of the first level categories (categories without parents)
1640 $sqlwhere .= " AND cc.parent = 0";
1641 } else if (array_key_exists($categoryid, $this->addedcategories
)) {
1642 // The category itself has been loaded already so we just need to ensure its subcategories
1644 $addedcategories = $this->addedcategories
;
1645 unset($addedcategories[$categoryid]);
1646 if (count($addedcategories) > 0) {
1647 list($sql, $params) = $DB->get_in_or_equal(array_keys($addedcategories), SQL_PARAMS_NAMED
, 'parent', false);
1648 if ($showbasecategories) {
1649 // We need to include categories with parent = 0 as well
1650 $sqlwhere .= " AND (cc.parent = :categoryid OR cc.parent = 0) AND cc.parent {$sql}";
1652 // All we need is categories that match the parent
1653 $sqlwhere .= " AND cc.parent = :categoryid AND cc.parent {$sql}";
1656 $params['categoryid'] = $categoryid;
1658 // This category hasn't been loaded yet so we need to fetch it, work out its category path
1659 // and load this category plus all its parents and subcategories
1660 $category = $DB->get_record('course_categories', array('id' => $categoryid), 'path', MUST_EXIST
);
1661 $categoriestoload = explode('/', trim($category->path
, '/'));
1662 list($select, $params) = $DB->get_in_or_equal($categoriestoload);
1663 // We are going to use select twice so double the params
1664 $params = array_merge($params, $params);
1665 $basecategorysql = ($showbasecategories)?
' OR cc.depth = 1':'';
1666 $sqlwhere .= " AND (cc.id {$select} OR cc.parent {$select}{$basecategorysql})";
1669 $categoriesrs = $DB->get_recordset_sql("$sqlselect $sqlwhere $sqlorder", $params);
1670 $categories = array();
1671 foreach ($categoriesrs as $category) {
1672 // Preload the context.. we'll need it when adding the category in order
1673 // to format the category name.
1674 context_helper
::preload_from_record($category);
1675 if (array_key_exists($category->id
, $this->addedcategories
)) {
1676 // Do nothing, its already been added.
1677 } else if ($category->parent
== '0') {
1678 // This is a root category lets add it immediately
1679 $this->add_category($category, $this->rootnodes
['courses']);
1680 } else if (array_key_exists($category->parent
, $this->addedcategories
)) {
1681 // This categories parent has already been added we can add this immediately
1682 $this->add_category($category, $this->addedcategories
[$category->parent
]);
1684 $categories[] = $category;
1687 $categoriesrs->close();
1689 // Now we have an array of categories we need to add them to the navigation.
1690 while (!empty($categories)) {
1691 $category = reset($categories);
1692 if (array_key_exists($category->id
, $this->addedcategories
)) {
1694 } else if ($category->parent
== '0') {
1695 $this->add_category($category, $this->rootnodes
['courses']);
1696 } else if (array_key_exists($category->parent
, $this->addedcategories
)) {
1697 $this->add_category($category, $this->addedcategories
[$category->parent
]);
1699 // This category isn't in the navigation and niether is it's parent (yet).
1700 // We need to go through the category path and add all of its components in order.
1701 $path = explode('/', trim($category->path
, '/'));
1702 foreach ($path as $catid) {
1703 if (!array_key_exists($catid, $this->addedcategories
)) {
1704 // This category isn't in the navigation yet so add it.
1705 $subcategory = $categories[$catid];
1706 if ($subcategory->parent
== '0') {
1707 // Yay we have a root category - this likely means we will now be able
1708 // to add categories without problems.
1709 $this->add_category($subcategory, $this->rootnodes
['courses']);
1710 } else if (array_key_exists($subcategory->parent
, $this->addedcategories
)) {
1711 // The parent is in the category (as we'd expect) so add it now.
1712 $this->add_category($subcategory, $this->addedcategories
[$subcategory->parent
]);
1713 // Remove the category from the categories array.
1714 unset($categories[$catid]);
1716 // We should never ever arrive here - if we have then there is a bigger
1718 throw new coding_exception('Category path order is incorrect and/or there are missing categories');
1723 // Remove the category from the categories array now that we know it has been added.
1724 unset($categories[$category->id
]);
1726 if ($categoryid === self
::LOAD_ALL_CATEGORIES
) {
1727 $this->allcategoriesloaded
= true;
1729 // Check if there are any categories to load.
1730 if (count($categoriestoload) > 0) {
1731 $readytoloadcourses = array();
1732 foreach ($categoriestoload as $category) {
1733 if ($this->can_add_more_courses_to_category($category)) {
1734 $readytoloadcourses[] = $category;
1737 if (count($readytoloadcourses)) {
1738 $this->load_all_courses($readytoloadcourses);
1742 // Look for all categories which have been loaded
1743 if (!empty($this->addedcategories
)) {
1744 $categoryids = array();
1745 foreach ($this->addedcategories
as $category) {
1746 if ($this->can_add_more_courses_to_category($category)) {
1747 $categoryids[] = $category->key
;
1751 list($categoriessql, $params) = $DB->get_in_or_equal($categoryids, SQL_PARAMS_NAMED
);
1752 $params['limit'] = (!empty($CFG->navcourselimit
))?
$CFG->navcourselimit
:20;
1753 $sql = "SELECT cc.id, COUNT(c.id) AS coursecount
1754 FROM {course_categories} cc
1755 JOIN {course} c ON c.category = cc.id
1756 WHERE cc.id {$categoriessql}
1758 HAVING COUNT(c.id) > :limit";
1759 $excessivecategories = $DB->get_records_sql($sql, $params);
1760 foreach ($categories as &$category) {
1761 if (array_key_exists($category->key
, $excessivecategories) && !$this->can_add_more_courses_to_category($category)) {
1762 $url = new moodle_url('/course/index.php', array('categoryid' => $category->key
));
1763 $category->add(get_string('viewallcourses'), $url, self
::TYPE_SETTING
);
1771 * Adds a structured category to the navigation in the correct order/place
1773 * @param stdClass $category category to be added in navigation.
1774 * @param navigation_node $parent parent navigation node
1775 * @param int $nodetype type of node, if category is under MyHome then it's TYPE_MY_CATEGORY
1778 protected function add_category(stdClass
$category, navigation_node
$parent, $nodetype = self
::TYPE_CATEGORY
) {
1779 if (array_key_exists($category->id
, $this->addedcategories
)) {
1782 $url = new moodle_url('/course/index.php', array('categoryid' => $category->id
));
1783 $context = context_coursecat
::instance($category->id
);
1784 $categoryname = format_string($category->name
, true, array('context' => $context));
1785 $categorynode = $parent->add($categoryname, $url, $nodetype, $categoryname, $category->id
);
1786 if (empty($category->visible
)) {
1787 if (has_capability('moodle/category:viewhiddencategories', context_system
::instance())) {
1788 $categorynode->hidden
= true;
1790 $categorynode->display
= false;
1793 $this->addedcategories
[$category->id
] = $categorynode;
1797 * Loads the given course into the navigation
1799 * @param stdClass $course
1800 * @return navigation_node
1802 protected function load_course(stdClass
$course) {
1804 if ($course->id
== $SITE->id
) {
1805 // This is always loaded during initialisation
1806 return $this->rootnodes
['site'];
1807 } else if (array_key_exists($course->id
, $this->addedcourses
)) {
1808 // The course has already been loaded so return a reference
1809 return $this->addedcourses
[$course->id
];
1812 return $this->add_course($course);
1817 * Loads all of the courses section into the navigation.
1819 * This function calls method from current course format, see
1820 * {@link format_base::extend_course_navigation()}
1821 * If course module ($cm) is specified but course format failed to create the node,
1822 * the activity node is created anyway.
1824 * By default course formats call the method {@link global_navigation::load_generic_course_sections()}
1826 * @param stdClass $course Database record for the course
1827 * @param navigation_node $coursenode The course node within the navigation
1828 * @param null|int $sectionnum If specified load the contents of section with this relative number
1829 * @param null|cm_info $cm If specified make sure that activity node is created (either
1830 * in containg section or by calling load_stealth_activity() )
1832 protected function load_course_sections(stdClass
$course, navigation_node
$coursenode, $sectionnum = null, $cm = null) {
1834 require_once($CFG->dirroot
.'/course/lib.php');
1835 if (isset($cm->sectionnum
)) {
1836 $sectionnum = $cm->sectionnum
;
1838 if ($sectionnum !== null) {
1839 $this->includesectionnum
= $sectionnum;
1841 course_get_format($course)->extend_course_navigation($this, $coursenode, $sectionnum, $cm);
1842 if (isset($cm->id
)) {
1843 $activity = $coursenode->find($cm->id
, self
::TYPE_ACTIVITY
);
1844 if (empty($activity)) {
1845 $activity = $this->load_stealth_activity($coursenode, get_fast_modinfo($course));
1851 * Generates an array of sections and an array of activities for the given course.
1853 * This method uses the cache to improve performance and avoid the get_fast_modinfo call
1855 * @param stdClass $course
1856 * @return array Array($sections, $activities)
1858 protected function generate_sections_and_activities(stdClass
$course) {
1860 require_once($CFG->dirroot
.'/course/lib.php');
1862 $modinfo = get_fast_modinfo($course);
1863 $sections = $modinfo->get_section_info_all();
1865 // For course formats using 'numsections' trim the sections list
1866 $courseformatoptions = course_get_format($course)->get_format_options();
1867 if (isset($courseformatoptions['numsections'])) {
1868 $sections = array_slice($sections, 0, $courseformatoptions['numsections']+
1, true);
1871 $activities = array();
1873 foreach ($sections as $key => $section) {
1874 // Clone and unset summary to prevent $SESSION bloat (MDL-31802).
1875 $sections[$key] = clone($section);
1876 unset($sections[$key]->summary
);
1877 $sections[$key]->hasactivites
= false;
1878 if (!array_key_exists($section->section
, $modinfo->sections
)) {
1881 foreach ($modinfo->sections
[$section->section
] as $cmid) {
1882 $cm = $modinfo->cms
[$cmid];
1883 $activity = new stdClass
;
1884 $activity->id
= $cm->id
;
1885 $activity->course
= $course->id
;
1886 $activity->section
= $section->section
;
1887 $activity->name
= $cm->name
;
1888 $activity->icon
= $cm->icon
;
1889 $activity->iconcomponent
= $cm->iconcomponent
;
1890 $activity->hidden
= (!$cm->visible
);
1891 $activity->modname
= $cm->modname
;
1892 $activity->nodetype
= navigation_node
::NODETYPE_LEAF
;
1893 $activity->onclick
= $cm->onclick
;
1896 $activity->url
= null;
1897 $activity->display
= false;
1899 $activity->url
= $url->out();
1900 $activity->display
= $cm->uservisible ?
true : false;
1901 if (self
::module_extends_navigation($cm->modname
)) {
1902 $activity->nodetype
= navigation_node
::NODETYPE_BRANCH
;
1905 $activities[$cmid] = $activity;
1906 if ($activity->display
) {
1907 $sections[$key]->hasactivites
= true;
1912 return array($sections, $activities);
1916 * Generically loads the course sections into the course's navigation.
1918 * @param stdClass $course
1919 * @param navigation_node $coursenode
1920 * @return array An array of course section nodes
1922 public function load_generic_course_sections(stdClass
$course, navigation_node
$coursenode) {
1923 global $CFG, $DB, $USER, $SITE;
1924 require_once($CFG->dirroot
.'/course/lib.php');
1926 list($sections, $activities) = $this->generate_sections_and_activities($course);
1928 $navigationsections = array();
1929 foreach ($sections as $sectionid => $section) {
1930 $section = clone($section);
1931 if ($course->id
== $SITE->id
) {
1932 $this->load_section_activities($coursenode, $section->section
, $activities);
1934 if (!$section->uservisible ||
(!$this->showemptysections
&&
1935 !$section->hasactivites
&& $this->includesectionnum
!== $section->section
)) {
1939 $sectionname = get_section_name($course, $section);
1940 $url = course_get_url($course, $section->section
, array('navigation' => true));
1942 $sectionnode = $coursenode->add($sectionname, $url, navigation_node
::TYPE_SECTION
, null, $section->id
);
1943 $sectionnode->nodetype
= navigation_node
::NODETYPE_BRANCH
;
1944 $sectionnode->hidden
= (!$section->visible ||
!$section->available
);
1945 if ($this->includesectionnum
!== false && $this->includesectionnum
== $section->section
) {
1946 $this->load_section_activities($sectionnode, $section->section
, $activities);
1948 $section->sectionnode
= $sectionnode;
1949 $navigationsections[$sectionid] = $section;
1952 return $navigationsections;
1956 * Loads all of the activities for a section into the navigation structure.
1958 * @param navigation_node $sectionnode
1959 * @param int $sectionnumber
1960 * @param array $activities An array of activites as returned by {@link global_navigation::generate_sections_and_activities()}
1961 * @param stdClass $course The course object the section and activities relate to.
1962 * @return array Array of activity nodes
1964 protected function load_section_activities(navigation_node
$sectionnode, $sectionnumber, array $activities, $course = null) {
1966 // A static counter for JS function naming
1967 static $legacyonclickcounter = 0;
1969 $activitynodes = array();
1970 if (empty($activities)) {
1971 return $activitynodes;
1974 if (!is_object($course)) {
1975 $activity = reset($activities);
1976 $courseid = $activity->course
;
1978 $courseid = $course->id
;
1980 $showactivities = ($courseid != $SITE->id ||
!empty($CFG->navshowfrontpagemods
));
1982 foreach ($activities as $activity) {
1983 if ($activity->section
!= $sectionnumber) {
1986 if ($activity->icon
) {
1987 $icon = new pix_icon($activity->icon
, get_string('modulename', $activity->modname
), $activity->iconcomponent
);
1989 $icon = new pix_icon('icon', get_string('modulename', $activity->modname
), $activity->modname
);
1992 // Prepare the default name and url for the node
1993 $activityname = format_string($activity->name
, true, array('context' => context_module
::instance($activity->id
)));
1994 $action = new moodle_url($activity->url
);
1996 // Check if the onclick property is set (puke!)
1997 if (!empty($activity->onclick
)) {
1998 // Increment the counter so that we have a unique number.
1999 $legacyonclickcounter++
;
2000 // Generate the function name we will use
2001 $functionname = 'legacy_activity_onclick_handler_'.$legacyonclickcounter;
2002 $propogrationhandler = '';
2003 // Check if we need to cancel propogation. Remember inline onclick
2004 // events would return false if they wanted to prevent propogation and the
2006 if (strpos($activity->onclick
, 'return false')) {
2007 $propogrationhandler = 'e.halt();';
2009 // Decode the onclick - it has already been encoded for display (puke)
2010 $onclick = htmlspecialchars_decode($activity->onclick
, ENT_QUOTES
);
2011 // Build the JS function the click event will call
2012 $jscode = "function {$functionname}(e) { $propogrationhandler $onclick }";
2013 $this->page
->requires
->js_init_code($jscode);
2014 // Override the default url with the new action link
2015 $action = new action_link($action, $activityname, new component_action('click', $functionname));
2018 $activitynode = $sectionnode->add($activityname, $action, navigation_node
::TYPE_ACTIVITY
, null, $activity->id
, $icon);
2019 $activitynode->title(get_string('modulename', $activity->modname
));
2020 $activitynode->hidden
= $activity->hidden
;
2021 $activitynode->display
= $showactivities && $activity->display
;
2022 $activitynode->nodetype
= $activity->nodetype
;
2023 $activitynodes[$activity->id
] = $activitynode;
2026 return $activitynodes;
2029 * Loads a stealth module from unavailable section
2030 * @param navigation_node $coursenode
2031 * @param stdClass $modinfo
2032 * @return navigation_node or null if not accessible
2034 protected function load_stealth_activity(navigation_node
$coursenode, $modinfo) {
2035 if (empty($modinfo->cms
[$this->page
->cm
->id
])) {
2038 $cm = $modinfo->cms
[$this->page
->cm
->id
];
2040 $icon = new pix_icon($cm->icon
, get_string('modulename', $cm->modname
), $cm->iconcomponent
);
2042 $icon = new pix_icon('icon', get_string('modulename', $cm->modname
), $cm->modname
);
2045 $activitynode = $coursenode->add(format_string($cm->name
), $url, navigation_node
::TYPE_ACTIVITY
, null, $cm->id
, $icon);
2046 $activitynode->title(get_string('modulename', $cm->modname
));
2047 $activitynode->hidden
= (!$cm->visible
);
2048 if (!$cm->uservisible
) {
2049 // Do not show any error here, let the page handle exception that activity is not visible for the current user.
2050 // Also there may be no exception at all in case when teacher is logged in as student.
2051 $activitynode->display
= false;
2053 // Don't show activities that don't have links!
2054 $activitynode->display
= false;
2055 } else if (self
::module_extends_navigation($cm->modname
)) {
2056 $activitynode->nodetype
= navigation_node
::NODETYPE_BRANCH
;
2058 return $activitynode;
2061 * Loads the navigation structure for the given activity into the activities node.
2063 * This method utilises a callback within the modules lib.php file to load the
2064 * content specific to activity given.
2066 * The callback is a method: {modulename}_extend_navigation()
2068 * * {@link forum_extend_navigation()}
2069 * * {@link workshop_extend_navigation()}
2071 * @param cm_info|stdClass $cm
2072 * @param stdClass $course
2073 * @param navigation_node $activity
2076 protected function load_activity($cm, stdClass
$course, navigation_node
$activity) {
2079 // make sure we have a $cm from get_fast_modinfo as this contains activity access details
2080 if (!($cm instanceof cm_info
)) {
2081 $modinfo = get_fast_modinfo($course);
2082 $cm = $modinfo->get_cm($cm->id
);
2084 $activity->nodetype
= navigation_node
::NODETYPE_LEAF
;
2085 $activity->make_active();
2086 $file = $CFG->dirroot
.'/mod/'.$cm->modname
.'/lib.php';
2087 $function = $cm->modname
.'_extend_navigation';
2089 if (file_exists($file)) {
2090 require_once($file);
2091 if (function_exists($function)) {
2092 $activtyrecord = $DB->get_record($cm->modname
, array('id' => $cm->instance
), '*', MUST_EXIST
);
2093 $function($activity, $course, $activtyrecord, $cm);
2097 // Allow the active advanced grading method plugin to append module navigation
2098 $featuresfunc = $cm->modname
.'_supports';
2099 if (function_exists($featuresfunc) && $featuresfunc(FEATURE_ADVANCED_GRADING
)) {
2100 require_once($CFG->dirroot
.'/grade/grading/lib.php');
2101 $gradingman = get_grading_manager($cm->context
, 'mod_'.$cm->modname
);
2102 $gradingman->extend_navigation($this, $activity);
2105 return $activity->has_children();
2108 * Loads user specific information into the navigation in the appropriate place.
2110 * If no user is provided the current user is assumed.
2112 * @param stdClass $user
2113 * @param bool $forceforcontext probably force something to be loaded somewhere (ask SamH if not sure what this means)
2116 protected function load_for_user($user=null, $forceforcontext=false) {
2117 global $DB, $CFG, $USER, $SITE;
2119 if ($user === null) {
2120 // We can't require login here but if the user isn't logged in we don't
2121 // want to show anything
2122 if (!isloggedin() ||
isguestuser()) {
2126 } else if (!is_object($user)) {
2127 // If the user is not an object then get them from the database
2128 $select = context_helper
::get_preload_record_columns_sql('ctx');
2129 $sql = "SELECT u.*, $select
2131 JOIN {context} ctx ON u.id = ctx.instanceid
2132 WHERE u.id = :userid AND
2133 ctx.contextlevel = :contextlevel";
2134 $user = $DB->get_record_sql($sql, array('userid' => (int)$user, 'contextlevel' => CONTEXT_USER
), MUST_EXIST
);
2135 context_helper
::preload_from_record($user);
2138 $iscurrentuser = ($user->id
== $USER->id
);
2140 $usercontext = context_user
::instance($user->id
);
2142 // Get the course set against the page, by default this will be the site
2143 $course = $this->page
->course
;
2144 $baseargs = array('id'=>$user->id
);
2145 if ($course->id
!= $SITE->id
&& (!$iscurrentuser ||
$forceforcontext)) {
2146 $coursenode = $this->add_course($course, false, self
::COURSE_CURRENT
);
2147 $baseargs['course'] = $course->id
;
2148 $coursecontext = context_course
::instance($course->id
);
2149 $issitecourse = false;
2151 // Load all categories and get the context for the system
2152 $coursecontext = context_system
::instance();
2153 $issitecourse = true;
2156 // Create a node to add user information under.
2158 if (!$issitecourse) {
2159 // Not the current user so add it to the participants node for the current course.
2160 $usersnode = $coursenode->get('participants', navigation_node
::TYPE_CONTAINER
);
2161 $userviewurl = new moodle_url('/user/view.php', $baseargs);
2162 } else if ($USER->id
!= $user->id
) {
2163 // This is the site so add a users node to the root branch.
2164 $usersnode = $this->rootnodes
['users'];
2165 if (has_capability('moodle/course:viewparticipants', $coursecontext)) {
2166 $usersnode->action
= new moodle_url('/user/index.php', array('id' => $course->id
));
2168 $userviewurl = new moodle_url('/user/profile.php', $baseargs);
2171 // We should NEVER get here, if the course hasn't been populated
2172 // with a participants node then the navigaiton either wasn't generated
2173 // for it (you are missing a require_login or set_context call) or
2174 // you don't have access.... in the interests of no leaking informatin
2175 // we simply quit...
2178 // Add a branch for the current user.
2179 $canseefullname = has_capability('moodle/site:viewfullnames', $coursecontext);
2180 $usernode = $usersnode->add(fullname($user, $canseefullname), $userviewurl, self
::TYPE_USER
, null, 'user' . $user->id
);
2181 if ($this->page
->context
->contextlevel
== CONTEXT_USER
&& $user->id
== $this->page
->context
->instanceid
) {
2182 $usernode->make_active();
2185 // Add user information to the participants or user node.
2186 if ($issitecourse) {
2188 // If the user is the current user or has permission to view the details of the requested
2189 // user than add a view profile link.
2190 if ($iscurrentuser ||
has_capability('moodle/user:viewdetails', $coursecontext) ||
2191 has_capability('moodle/user:viewdetails', $usercontext)) {
2192 if ($issitecourse ||
($iscurrentuser && !$forceforcontext)) {
2193 $usernode->add(get_string('viewprofile'), new moodle_url('/user/profile.php', $baseargs));
2195 $usernode->add(get_string('viewprofile'), new moodle_url('/user/view.php', $baseargs));
2199 if (!empty($CFG->navadduserpostslinks
)) {
2200 // Add nodes for forum posts and discussions if the user can view either or both
2201 // There are no capability checks here as the content of the page is based
2202 // purely on the forums the current user has access too.
2203 $forumtab = $usernode->add(get_string('forumposts', 'forum'));
2204 $forumtab->add(get_string('posts', 'forum'), new moodle_url('/mod/forum/user.php', $baseargs));
2205 $forumtab->add(get_string('discussions', 'forum'), new moodle_url('/mod/forum/user.php',
2206 array_merge($baseargs, array('mode' => 'discussions'))));
2210 if (!empty($CFG->enableblogs
)) {
2211 if (!$this->cache
->cached('userblogoptions'.$user->id
)) {
2212 require_once($CFG->dirroot
.'/blog/lib.php');
2213 // Get all options for the user.
2214 $options = blog_get_options_for_user($user);
2215 $this->cache
->set('userblogoptions'.$user->id
, $options);
2217 $options = $this->cache
->{'userblogoptions'.$user->id
};
2220 if (count($options) > 0) {
2221 $blogs = $usernode->add(get_string('blogs', 'blog'), null, navigation_node
::TYPE_CONTAINER
);
2222 foreach ($options as $type => $option) {
2223 if ($type == "rss") {
2224 $blogs->add($option['string'], $option['link'], settings_navigation
::TYPE_SETTING
, null, null,
2225 new pix_icon('i/rss', ''));
2227 $blogs->add($option['string'], $option['link']);
2233 // Add the messages link.
2234 // It is context based so can appear in "My profile" and in course participants information.
2235 if (!empty($CFG->messaging
)) {
2236 $messageargs = array('user1' => $USER->id
);
2237 if ($USER->id
!= $user->id
) {
2238 $messageargs['user2'] = $user->id
;
2240 if ($course->id
!= $SITE->id
) {
2241 $messageargs['viewing'] = MESSAGE_VIEW_COURSE
. $course->id
;
2243 $url = new moodle_url('/message/index.php', $messageargs);
2244 $usernode->add(get_string('messages', 'message'), $url, self
::TYPE_SETTING
, null, 'messages');
2247 // Add the "My private files" link.
2248 // This link doesn't have a unique display for course context so only display it under "My profile".
2249 if ($issitecourse && $iscurrentuser && has_capability('moodle/user:manageownfiles', $usercontext)) {
2250 $url = new moodle_url('/user/files.php');
2251 $usernode->add(get_string('myfiles'), $url, self
::TYPE_SETTING
);
2254 if (!empty($CFG->enablebadges
) && $iscurrentuser &&
2255 has_capability('moodle/badges:manageownbadges', $usercontext)) {
2256 $url = new moodle_url('/badges/mybadges.php');
2257 $usernode->add(get_string('mybadges', 'badges'), $url, self
::TYPE_SETTING
);
2260 // Add a node to view the users notes if permitted.
2261 if (!empty($CFG->enablenotes
) &&
2262 has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $coursecontext)) {
2263 $url = new moodle_url('/notes/index.php', array('user' => $user->id
));
2264 if ($coursecontext->instanceid
!= SITEID
) {
2265 $url->param('course', $coursecontext->instanceid
);
2267 $usernode->add(get_string('notes', 'notes'), $url);
2270 // Show the my grades node.
2271 if (($issitecourse && $iscurrentuser) ||
has_capability('moodle/user:viewdetails', $usercontext)) {
2272 require_once($CFG->dirroot
. '/user/lib.php');
2273 // Set the grades node to link to the "My grades" page.
2274 if ($course->id
== SITEID
) {
2275 $url = user_mygrades_url($user->id
, $course->id
);
2276 } else { // Otherwise we are in a course and should redirect to the user grade report (Activity report version).
2277 $url = new moodle_url('/course/user.php', array('mode' => 'grade', 'id' => $course->id
, 'user' => $user->id
));
2279 if ($USER->id
!= $user->id
) {
2280 $usernode->add(get_string('grades', 'grades'), $url, self
::TYPE_SETTING
, null, 'usergrades');
2282 $usernode->add(get_string('mygrades', 'grades'), $url);
2286 // If the user is the current user add the repositories for the current user.
2287 $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields
));
2288 if (!$iscurrentuser &&
2289 $course->id
== $SITE->id
&&
2290 has_capability('moodle/user:viewdetails', $usercontext) &&
2291 (!in_array('mycourses', $hiddenfields) ||
has_capability('moodle/user:viewhiddendetails', $coursecontext))) {
2293 // Add view grade report is permitted.
2294 $reports = core_component
::get_plugin_list('gradereport');
2295 arsort($reports); // User is last, we want to test it first.
2297 $userscourses = enrol_get_users_courses($user->id
);
2298 $userscoursesnode = $usernode->add(get_string('courses'));
2301 foreach ($userscourses as $usercourse) {
2302 if ($count === (int)$CFG->navcourselimit
) {
2303 $url = new moodle_url('/user/profile.php', array('id' => $user->id
, 'showallcourses' => 1));
2304 $userscoursesnode->add(get_string('showallcourses'), $url);
2308 $usercoursecontext = context_course
::instance($usercourse->id
);
2309 $usercourseshortname = format_string($usercourse->shortname
, true, array('context' => $usercoursecontext));
2310 $usercoursenode = $userscoursesnode->add($usercourseshortname, new moodle_url('/user/view.php',
2311 array('id' => $user->id
, 'course' => $usercourse->id
)), self
::TYPE_CONTAINER
);
2313 $gradeavailable = has_capability('moodle/grade:viewall', $usercoursecontext);
2314 if (!$gradeavailable && !empty($usercourse->showgrades
) && is_array($reports) && !empty($reports)) {
2315 foreach ($reports as $plugin => $plugindir) {
2316 if (has_capability('gradereport/'.$plugin.':view', $usercoursecontext)) {
2317 // Stop when the first visible plugin is found.
2318 $gradeavailable = true;
2324 if ($gradeavailable) {
2325 $url = new moodle_url('/grade/report/index.php', array('id' => $usercourse->id
));
2326 $usercoursenode->add(get_string('grades'), $url, self
::TYPE_SETTING
, null, null,
2327 new pix_icon('i/grades', ''));
2330 // Add a node to view the users notes if permitted.
2331 if (!empty($CFG->enablenotes
) &&
2332 has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $usercoursecontext)) {
2333 $url = new moodle_url('/notes/index.php', array('user' => $user->id
, 'course' => $usercourse->id
));
2334 $usercoursenode->add(get_string('notes', 'notes'), $url, self
::TYPE_SETTING
);
2337 if (can_access_course($usercourse, $user->id
)) {
2338 $usercoursenode->add(get_string('entercourse'), new moodle_url('/course/view.php',
2339 array('id' => $usercourse->id
)), self
::TYPE_SETTING
, null, null, new pix_icon('i/course', ''));
2342 $reporttab = $usercoursenode->add(get_string('activityreports'));
2344 $reports = get_plugin_list_with_function('report', 'extend_navigation_user', 'lib.php');
2345 foreach ($reports as $reportfunction) {
2346 $reportfunction($reporttab, $user, $usercourse);
2349 $reporttab->trim_if_empty();
2358 * This method simply checks to see if a given module can extend the navigation.
2360 * @todo (MDL-25290) A shared caching solution should be used to save details on what extends navigation.
2362 * @param string $modname
2365 public static function module_extends_navigation($modname) {
2367 static $extendingmodules = array();
2368 if (!array_key_exists($modname, $extendingmodules)) {
2369 $extendingmodules[$modname] = false;
2370 $file = $CFG->dirroot
.'/mod/'.$modname.'/lib.php';
2371 if (file_exists($file)) {
2372 $function = $modname.'_extend_navigation';
2373 require_once($file);
2374 $extendingmodules[$modname] = (function_exists($function));
2377 return $extendingmodules[$modname];
2380 * Extends the navigation for the given user.
2382 * @param stdClass $user A user from the database
2384 public function extend_for_user($user) {
2385 $this->extendforuser
[] = $user;
2389 * Returns all of the users the navigation is being extended for
2391 * @return array An array of extending users.
2393 public function get_extending_users() {
2394 return $this->extendforuser
;
2397 * Adds the given course to the navigation structure.
2399 * @param stdClass $course
2400 * @param bool $forcegeneric
2401 * @param bool $ismycourse
2402 * @return navigation_node
2404 public function add_course(stdClass
$course, $forcegeneric = false, $coursetype = self
::COURSE_OTHER
) {
2407 // We found the course... we can return it now :)
2408 if (!$forcegeneric && array_key_exists($course->id
, $this->addedcourses
)) {
2409 return $this->addedcourses
[$course->id
];
2412 $coursecontext = context_course
::instance($course->id
);
2414 if ($course->id
!= $SITE->id
&& !$course->visible
) {
2415 if (is_role_switched($course->id
)) {
2416 // user has to be able to access course in order to switch, let's skip the visibility test here
2417 } else if (!has_capability('moodle/course:viewhiddencourses', $coursecontext)) {
2422 $issite = ($course->id
== $SITE->id
);
2423 $shortname = format_string($course->shortname
, true, array('context' => $coursecontext));
2424 $fullname = format_string($course->fullname
, true, array('context' => $coursecontext));
2425 // This is the name that will be shown for the course.
2426 $coursename = empty($CFG->navshowfullcoursenames
) ?
$shortname : $fullname;
2428 // Can the user expand the course to see its content.
2429 $canexpandcourse = true;
2433 if (empty($CFG->usesitenameforsitepages
)) {
2434 $coursename = get_string('sitepages');
2436 } else if ($coursetype == self
::COURSE_CURRENT
) {
2437 $parent = $this->rootnodes
['currentcourse'];
2438 $url = new moodle_url('/course/view.php', array('id'=>$course->id
));
2439 } else if ($coursetype == self
::COURSE_MY
&& !$forcegeneric) {
2440 if (!empty($CFG->navshowmycoursecategories
) && ($parent = $this->rootnodes
['mycourses']->find($course->category
, self
::TYPE_MY_CATEGORY
))) {
2441 // Nothing to do here the above statement set $parent to the category within mycourses.
2443 $parent = $this->rootnodes
['mycourses'];
2445 $url = new moodle_url('/course/view.php', array('id'=>$course->id
));
2447 $parent = $this->rootnodes
['courses'];
2448 $url = new moodle_url('/course/view.php', array('id'=>$course->id
));
2449 // They can only expand the course if they can access it.
2450 $canexpandcourse = $this->can_expand_course($course);
2451 if (!empty($course->category
) && $this->show_categories($coursetype == self
::COURSE_MY
)) {
2452 if (!$this->is_category_fully_loaded($course->category
)) {
2453 // We need to load the category structure for this course
2454 $this->load_all_categories($course->category
, false);
2456 if (array_key_exists($course->category
, $this->addedcategories
)) {
2457 $parent = $this->addedcategories
[$course->category
];
2458 // This could lead to the course being created so we should check whether it is the case again
2459 if (!$forcegeneric && array_key_exists($course->id
, $this->addedcourses
)) {
2460 return $this->addedcourses
[$course->id
];
2466 $coursenode = $parent->add($coursename, $url, self
::TYPE_COURSE
, $shortname, $course->id
);
2467 $coursenode->hidden
= (!$course->visible
);
2468 // We need to decode &'s here as they will have been added by format_string above and attributes will be encoded again
2470 $coursenode->title(str_replace('&', '&', $fullname));
2471 if ($canexpandcourse) {
2472 // This course can be expanded by the user, make it a branch to make the system aware that its expandable by ajax.
2473 $coursenode->nodetype
= self
::NODETYPE_BRANCH
;
2474 $coursenode->isexpandable
= true;
2476 $coursenode->nodetype
= self
::NODETYPE_LEAF
;
2477 $coursenode->isexpandable
= false;
2479 if (!$forcegeneric) {
2480 $this->addedcourses
[$course->id
] = $coursenode;
2487 * Returns a cache instance to use for the expand course cache.
2488 * @return cache_session
2490 protected function get_expand_course_cache() {
2491 if ($this->cacheexpandcourse
=== null) {
2492 $this->cacheexpandcourse
= cache
::make('core', 'navigation_expandcourse');
2494 return $this->cacheexpandcourse
;
2498 * Checks if a user can expand a course in the navigation.
2500 * We use a cache here because in order to be accurate we need to call can_access_course which is a costly function.
2501 * Because this functionality is basic + non-essential and because we lack good event triggering this cache
2502 * permits stale data.
2503 * In the situation the user is granted access to a course after we've initialised this session cache the cache
2505 * It is brought up to date in only one of two ways.
2506 * 1. The user logs out and in again.
2507 * 2. The user browses to the course they've just being given access to.
2509 * Really all this controls is whether the node is shown as expandable or not. It is uber un-important.
2511 * @param stdClass $course
2514 protected function can_expand_course($course) {
2515 $cache = $this->get_expand_course_cache();
2516 $canexpand = $cache->get($course->id
);
2517 if ($canexpand === false) {
2518 $canexpand = isloggedin() && can_access_course($course);
2519 $canexpand = (int)$canexpand;
2520 $cache->set($course->id
, $canexpand);
2522 return ($canexpand === 1);
2526 * Returns true if the category has already been loaded as have any child categories
2528 * @param int $categoryid
2531 protected function is_category_fully_loaded($categoryid) {
2532 return (array_key_exists($categoryid, $this->addedcategories
) && ($this->allcategoriesloaded ||
$this->addedcategories
[$categoryid]->children
->count() > 0));
2536 * Adds essential course nodes to the navigation for the given course.
2538 * This method adds nodes such as reports, blogs and participants
2540 * @param navigation_node $coursenode
2541 * @param stdClass $course
2542 * @return bool returns true on successful addition of a node.
2544 public function add_course_essentials($coursenode, stdClass
$course) {
2547 if ($course->id
== $SITE->id
) {
2548 return $this->add_front_page_course_essentials($coursenode, $course);
2551 if ($coursenode == false ||
!($coursenode instanceof navigation_node
) ||
$coursenode->get('participants', navigation_node
::TYPE_CONTAINER
)) {
2556 if (has_capability('moodle/course:viewparticipants', $this->page
->context
)) {
2557 $participants = $coursenode->add(get_string('participants'), new moodle_url('/user/index.php?id='.$course->id
), self
::TYPE_CONTAINER
, get_string('participants'), 'participants');
2558 if (!empty($CFG->enableblogs
)) {
2559 if (($CFG->bloglevel
== BLOG_GLOBAL_LEVEL
or ($CFG->bloglevel
== BLOG_SITE_LEVEL
and (isloggedin() and !isguestuser())))
2560 and has_capability('moodle/blog:view', context_system
::instance())) {
2561 $blogsurls = new moodle_url('/blog/index.php');
2562 if ($course->id
== $SITE->id
) {
2563 $blogsurls->param('courseid', 0);
2564 } else if ($currentgroup = groups_get_course_group($course, true)) {
2565 $blogsurls->param('groupid', $currentgroup);
2567 $blogsurls->param('courseid', $course->id
);
2569 $participants->add(get_string('blogscourse','blog'), $blogsurls->out());
2572 if (!empty($CFG->enablenotes
) && (has_capability('moodle/notes:manage', $this->page
->context
) ||
has_capability('moodle/notes:view', $this->page
->context
))) {
2573 $participants->add(get_string('notes','notes'), new moodle_url('/notes/index.php', array('filtertype'=>'course', 'filterselect'=>$course->id
)));
2575 } else if (count($this->extendforuser
) > 0 ||
$this->page
->course
->id
== $course->id
) {
2576 $participants = $coursenode->add(get_string('participants'), null, self
::TYPE_CONTAINER
, get_string('participants'), 'participants');
2580 if (!empty($CFG->enablebadges
) && !empty($CFG->badges_allowcoursebadges
) &&
2581 has_capability('moodle/badges:viewbadges', $this->page
->context
)) {
2582 $url = new moodle_url('/badges/view.php', array('type' => 2, 'id' => $course->id
));
2584 $coursenode->add(get_string('coursebadges', 'badges'), null,
2585 navigation_node
::TYPE_CONTAINER
, null, 'coursebadges');
2586 $coursenode->get('coursebadges')->add(get_string('badgesview', 'badges'), $url,
2587 navigation_node
::TYPE_SETTING
, null, 'badgesview',
2588 new pix_icon('i/badge', get_string('badgesview', 'badges')));
2594 * This generates the structure of the course that won't be generated when
2595 * the modules and sections are added.
2597 * Things such as the reports branch, the participants branch, blogs... get
2598 * added to the course node by this method.
2600 * @param navigation_node $coursenode
2601 * @param stdClass $course
2602 * @return bool True for successfull generation
2604 public function add_front_page_course_essentials(navigation_node
$coursenode, stdClass
$course) {
2607 if ($coursenode == false ||
$coursenode->get('frontpageloaded', navigation_node
::TYPE_CUSTOM
)) {
2611 // Hidden node that we use to determine if the front page navigation is loaded.
2612 // This required as there are not other guaranteed nodes that may be loaded.
2613 $coursenode->add('frontpageloaded', null, self
::TYPE_CUSTOM
, null, 'frontpageloaded')->display
= false;
2616 if (has_capability('moodle/course:viewparticipants', context_system
::instance())) {
2617 $coursenode->add(get_string('participants'), new moodle_url('/user/index.php?id='.$course->id
), self
::TYPE_CUSTOM
, get_string('participants'), 'participants');
2623 if (!empty($CFG->enableblogs
)
2624 and ($CFG->bloglevel
== BLOG_GLOBAL_LEVEL
or ($CFG->bloglevel
== BLOG_SITE_LEVEL
and (isloggedin() and !isguestuser())))
2625 and has_capability('moodle/blog:view', context_system
::instance())) {
2626 $blogsurls = new moodle_url('/blog/index.php', array('courseid' => $filterselect));
2627 $coursenode->add(get_string('blogssite', 'blog'), $blogsurls->out(), self
::TYPE_SYSTEM
, null, 'siteblog');
2631 if (!empty($CFG->enablebadges
) && has_capability('moodle/badges:viewbadges', $this->page
->context
)) {
2632 $url = new moodle_url($CFG->wwwroot
. '/badges/view.php', array('type' => 1));
2633 $coursenode->add(get_string('sitebadges', 'badges'), $url, navigation_node
::TYPE_CUSTOM
);
2637 if (!empty($CFG->enablenotes
) && (has_capability('moodle/notes:manage', $this->page
->context
) ||
has_capability('moodle/notes:view', $this->page
->context
))) {
2638 $coursenode->add(get_string('notes', 'notes'), new moodle_url('/notes/index.php',
2639 array('filtertype' => 'course', 'filterselect' => $filterselect)), self
::TYPE_SETTING
, null, 'notes');
2643 if (!empty($CFG->usetags
) && isloggedin()) {
2644 $node = $coursenode->add(get_string('tags', 'tag'), new moodle_url('/tag/search.php'),
2645 self
::TYPE_SETTING
, null, 'tags');
2650 $calendarurl = new moodle_url('/calendar/view.php', array('view' => 'month'));
2651 $coursenode->add(get_string('calendar', 'calendar'), $calendarurl, self
::TYPE_CUSTOM
, null, 'calendar');
2658 * Clears the navigation cache
2660 public function clear_cache() {
2661 $this->cache
->clear();
2665 * Sets an expansion limit for the navigation
2667 * The expansion limit is used to prevent the display of content that has a type
2668 * greater than the provided $type.
2670 * Can be used to ensure things such as activities or activity content don't get
2671 * shown on the navigation.
2672 * They are still generated in order to ensure the navbar still makes sense.
2674 * @param int $type One of navigation_node::TYPE_*
2675 * @return bool true when complete.
2677 public function set_expansion_limit($type) {
2679 $nodes = $this->find_all_of_type($type);
2681 // We only want to hide specific types of nodes.
2682 // Only nodes that represent "structure" in the navigation tree should be hidden.
2683 // If we hide all nodes then we risk hiding vital information.
2684 $typestohide = array(
2685 self
::TYPE_CATEGORY
,
2691 foreach ($nodes as $node) {
2692 // We need to generate the full site node
2693 if ($type == self
::TYPE_COURSE
&& $node->key
== $SITE->id
) {
2696 foreach ($node->children
as $child) {
2697 $child->hide($typestohide);
2703 * Attempts to get the navigation with the given key from this nodes children.
2705 * This function only looks at this nodes children, it does NOT look recursivily.
2706 * If the node can't be found then false is returned.
2708 * If you need to search recursivily then use the {@link global_navigation::find()} method.
2710 * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
2711 * may be of more use to you.
2713 * @param string|int $key The key of the node you wish to receive.
2714 * @param int $type One of navigation_node::TYPE_*
2715 * @return navigation_node|false
2717 public function get($key, $type = null) {
2718 if (!$this->initialised
) {
2719 $this->initialise();
2721 return parent
::get($key, $type);
2725 * Searches this nodes children and their children to find a navigation node
2726 * with the matching key and type.
2728 * This method is recursive and searches children so until either a node is
2729 * found or there are no more nodes to search.
2731 * If you know that the node being searched for is a child of this node
2732 * then use the {@link global_navigation::get()} method instead.
2734 * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
2735 * may be of more use to you.
2737 * @param string|int $key The key of the node you wish to receive.
2738 * @param int $type One of navigation_node::TYPE_*
2739 * @return navigation_node|false
2741 public function find($key, $type) {
2742 if (!$this->initialised
) {
2743 $this->initialise();
2745 if ($type == self
::TYPE_ROOTNODE
&& array_key_exists($key, $this->rootnodes
)) {
2746 return $this->rootnodes
[$key];
2748 return parent
::find($key, $type);
2752 * They've expanded the 'my courses' branch.
2754 protected function load_courses_enrolled() {
2756 $sortorder = 'visible DESC';
2757 // Prevent undefined $CFG->navsortmycoursessort errors.
2758 if (empty($CFG->navsortmycoursessort
)) {
2759 $CFG->navsortmycoursessort
= 'sortorder';
2761 // Append the chosen sortorder.
2762 $sortorder = $sortorder . ',' . $CFG->navsortmycoursessort
. ' ASC';
2763 $courses = enrol_get_my_courses(null, $sortorder);
2764 if (count($courses) && $this->show_my_categories()) {
2765 // OK Actually we are loading categories. We only want to load categories that have a parent of 0.
2766 // In order to make sure we load everything required we must first find the categories that are not
2767 // base categories and work out the bottom category in thier path.
2768 $categoryids = array();
2769 foreach ($courses as $course) {
2770 $categoryids[] = $course->category
;
2772 $categoryids = array_unique($categoryids);
2773 list($sql, $params) = $DB->get_in_or_equal($categoryids);
2774 $categories = $DB->get_recordset_select('course_categories', 'id '.$sql.' AND parent <> 0', $params, 'sortorder, id', 'id, path');
2775 foreach ($categories as $category) {
2776 $bits = explode('/', trim($category->path
,'/'));
2777 $categoryids[] = array_shift($bits);
2779 $categoryids = array_unique($categoryids);
2780 $categories->close();
2782 // Now we load the base categories.
2783 list($sql, $params) = $DB->get_in_or_equal($categoryids);
2784 $categories = $DB->get_recordset_select('course_categories', 'id '.$sql.' AND parent = 0', $params, 'sortorder, id');
2785 foreach ($categories as $category) {
2786 $this->add_category($category, $this->rootnodes
['mycourses'], self
::TYPE_MY_CATEGORY
);
2788 $categories->close();
2790 foreach ($courses as $course) {
2791 $this->add_course($course, false, self
::COURSE_MY
);
2798 * The global navigation class used especially for AJAX requests.
2800 * The primary methods that are used in the global navigation class have been overriden
2801 * to ensure that only the relevant branch is generated at the root of the tree.
2802 * This can be done because AJAX is only used when the backwards structure for the
2803 * requested branch exists.
2804 * This has been done only because it shortens the amounts of information that is generated
2805 * which of course will speed up the response time.. because no one likes laggy AJAX.
2808 * @category navigation
2809 * @copyright 2009 Sam Hemelryk
2810 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2812 class global_navigation_for_ajax
extends global_navigation
{
2814 /** @var int used for determining what type of navigation_node::TYPE_* is being used */
2815 protected $branchtype;
2817 /** @var int the instance id */
2818 protected $instanceid;
2820 /** @var array Holds an array of expandable nodes */
2821 protected $expandable = array();
2824 * Constructs the navigation for use in an AJAX request
2826 * @param moodle_page $page moodle_page object
2827 * @param int $branchtype
2830 public function __construct($page, $branchtype, $id) {
2831 $this->page
= $page;
2832 $this->cache
= new navigation_cache(NAVIGATION_CACHE_NAME
);
2833 $this->children
= new navigation_node_collection();
2834 $this->branchtype
= $branchtype;
2835 $this->instanceid
= $id;
2836 $this->initialise();
2839 * Initialise the navigation given the type and id for the branch to expand.
2841 * @return array An array of the expandable nodes
2843 public function initialise() {
2846 if ($this->initialised ||
during_initial_install()) {
2847 return $this->expandable
;
2849 $this->initialised
= true;
2851 $this->rootnodes
= array();
2852 $this->rootnodes
['site'] = $this->add_course($SITE);
2853 $this->rootnodes
['mycourses'] = $this->add(get_string('mycourses'), new moodle_url('/my'), self
::TYPE_ROOTNODE
, null, 'mycourses');
2854 $this->rootnodes
['courses'] = $this->add(get_string('courses'), null, self
::TYPE_ROOTNODE
, null, 'courses');
2855 // The courses branch is always displayed, and is always expandable (although may be empty).
2856 // This mimicks what is done during {@link global_navigation::initialise()}.
2857 $this->rootnodes
['courses']->isexpandable
= true;
2859 // Branchtype will be one of navigation_node::TYPE_*
2860 switch ($this->branchtype
) {
2862 if ($this->instanceid
=== 'mycourses') {
2863 $this->load_courses_enrolled();
2864 } else if ($this->instanceid
=== 'courses') {
2865 $this->load_courses_other();
2868 case self
::TYPE_CATEGORY
:
2869 $this->load_category($this->instanceid
);
2871 case self
::TYPE_MY_CATEGORY
:
2872 $this->load_category($this->instanceid
, self
::TYPE_MY_CATEGORY
);
2874 case self
::TYPE_COURSE
:
2875 $course = $DB->get_record('course', array('id' => $this->instanceid
), '*', MUST_EXIST
);
2876 if (!can_access_course($course)) {
2877 // Thats OK all courses are expandable by default. We don't need to actually expand it we can just
2878 // add the course node and break. This leads to an empty node.
2879 $this->add_course($course);
2882 require_course_login($course, true, null, false, true);
2883 $this->page
->set_context(context_course
::instance($course->id
));
2884 $coursenode = $this->add_course($course);
2885 $this->add_course_essentials($coursenode, $course);
2886 $this->load_course_sections($course, $coursenode);
2888 case self
::TYPE_SECTION
:
2889 $sql = 'SELECT c.*, cs.section AS sectionnumber
2891 LEFT JOIN {course_sections} cs ON cs.course = c.id
2893 $course = $DB->get_record_sql($sql, array($this->instanceid
), MUST_EXIST
);
2894 require_course_login($course, true, null, false, true);
2895 $this->page
->set_context(context_course
::instance($course->id
));
2896 $coursenode = $this->add_course($course);
2897 $this->add_course_essentials($coursenode, $course);
2898 $this->load_course_sections($course, $coursenode, $course->sectionnumber
);
2900 case self
::TYPE_ACTIVITY
:
2903 JOIN {course_modules} cm ON cm.course = c.id
2904 WHERE cm.id = :cmid";
2905 $params = array('cmid' => $this->instanceid
);
2906 $course = $DB->get_record_sql($sql, $params, MUST_EXIST
);
2907 $modinfo = get_fast_modinfo($course);
2908 $cm = $modinfo->get_cm($this->instanceid
);
2909 require_course_login($course, true, $cm, false, true);
2910 $this->page
->set_context(context_module
::instance($cm->id
));
2911 $coursenode = $this->load_course($course);
2912 $this->load_course_sections($course, $coursenode, null, $cm);
2913 $activitynode = $coursenode->find($cm->id
, self
::TYPE_ACTIVITY
);
2914 if ($activitynode) {
2915 $modulenode = $this->load_activity($cm, $course, $activitynode);
2919 throw new Exception('Unknown type');
2920 return $this->expandable
;
2923 if ($this->page
->context
->contextlevel
== CONTEXT_COURSE
&& $this->page
->context
->instanceid
!= $SITE->id
) {
2924 $this->load_for_user(null, true);
2927 $this->find_expandable($this->expandable
);
2928 return $this->expandable
;
2932 * They've expanded the general 'courses' branch.
2934 protected function load_courses_other() {
2935 $this->load_all_courses();
2939 * Loads a single category into the AJAX navigation.
2941 * This function is special in that it doesn't concern itself with the parent of
2942 * the requested category or its siblings.
2943 * This is because with the AJAX navigation we know exactly what is wanted and only need to
2946 * @global moodle_database $DB
2947 * @param int $categoryid id of category to load in navigation.
2948 * @param int $nodetype type of node, if category is under MyHome then it's TYPE_MY_CATEGORY
2951 protected function load_category($categoryid, $nodetype = self
::TYPE_CATEGORY
) {
2955 if (!empty($CFG->navcourselimit
)) {
2956 $limit = (int)$CFG->navcourselimit
;
2959 $catcontextsql = context_helper
::get_preload_record_columns_sql('ctx');
2960 $sql = "SELECT cc.*, $catcontextsql
2961 FROM {course_categories} cc
2962 JOIN {context} ctx ON cc.id = ctx.instanceid
2963 WHERE ctx.contextlevel = ".CONTEXT_COURSECAT
." AND
2964 (cc.id = :categoryid1 OR cc.parent = :categoryid2)
2965 ORDER BY cc.depth ASC, cc.sortorder ASC, cc.id ASC";
2966 $params = array('categoryid1' => $categoryid, 'categoryid2' => $categoryid);
2967 $categories = $DB->get_recordset_sql($sql, $params, 0, $limit);
2968 $categorylist = array();
2969 $subcategories = array();
2970 $basecategory = null;
2971 foreach ($categories as $category) {
2972 $categorylist[] = $category->id
;
2973 context_helper
::preload_from_record($category);
2974 if ($category->id
== $categoryid) {
2975 $this->add_category($category, $this, $nodetype);
2976 $basecategory = $this->addedcategories
[$category->id
];
2978 $subcategories[$category->id
] = $category;
2981 $categories->close();
2984 // If category is shown in MyHome then only show enrolled courses and hide empty subcategories,
2985 // else show all courses.
2986 if ($nodetype === self
::TYPE_MY_CATEGORY
) {
2987 $courses = enrol_get_my_courses();
2988 $categoryids = array();
2990 // Only search for categories if basecategory was found.
2991 if (!is_null($basecategory)) {
2992 // Get course parent category ids.
2993 foreach ($courses as $course) {
2994 $categoryids[] = $course->category
;
2997 // Get a unique list of category ids which a part of the path
2998 // to user's courses.
2999 $coursesubcategories = array();
3000 $addedsubcategories = array();
3002 list($sql, $params) = $DB->get_in_or_equal($categoryids);
3003 $categories = $DB->get_recordset_select('course_categories', 'id '.$sql, $params, 'sortorder, id', 'id, path');
3005 foreach ($categories as $category){
3006 $coursesubcategories = array_merge($coursesubcategories, explode('/', trim($category->path
, "/")));
3008 $coursesubcategories = array_unique($coursesubcategories);
3010 // Only add a subcategory if it is part of the path to user's course and
3011 // wasn't already added.
3012 foreach ($subcategories as $subid => $subcategory) {
3013 if (in_array($subid, $coursesubcategories) &&
3014 !in_array($subid, $addedsubcategories)) {
3015 $this->add_category($subcategory, $basecategory, $nodetype);
3016 $addedsubcategories[] = $subid;
3021 foreach ($courses as $course) {
3022 // Add course if it's in category.
3023 if (in_array($course->category
, $categorylist)) {
3024 $this->add_course($course, true, self
::COURSE_MY
);
3028 if (!is_null($basecategory)) {
3029 foreach ($subcategories as $key=>$category) {
3030 $this->add_category($category, $basecategory, $nodetype);
3033 $courses = $DB->get_recordset('course', array('category' => $categoryid), 'sortorder', '*' , 0, $limit);
3034 foreach ($courses as $course) {
3035 $this->add_course($course);
3042 * Returns an array of expandable nodes
3045 public function get_expandable() {
3046 return $this->expandable
;
3053 * This class is used to manage the navbar, which is initialised from the navigation
3054 * object held by PAGE
3057 * @category navigation
3058 * @copyright 2009 Sam Hemelryk
3059 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3061 class navbar
extends navigation_node
{
3062 /** @var bool A switch for whether the navbar is initialised or not */
3063 protected $initialised = false;
3064 /** @var mixed keys used to reference the nodes on the navbar */
3065 protected $keys = array();
3066 /** @var null|string content of the navbar */
3067 protected $content = null;
3068 /** @var moodle_page object the moodle page that this navbar belongs to */
3070 /** @var bool A switch for whether to ignore the active navigation information */
3071 protected $ignoreactive = false;
3072 /** @var bool A switch to let us know if we are in the middle of an install */
3073 protected $duringinstall = false;
3074 /** @var bool A switch for whether the navbar has items */
3075 protected $hasitems = false;
3076 /** @var array An array of navigation nodes for the navbar */
3078 /** @var array An array of child node objects */
3079 public $children = array();
3080 /** @var bool A switch for whether we want to include the root node in the navbar */
3081 public $includesettingsbase = false;
3082 /** @var navigation_node[] $prependchildren */
3083 protected $prependchildren = array();
3085 * The almighty constructor
3087 * @param moodle_page $page
3089 public function __construct(moodle_page
$page) {
3091 if (during_initial_install()) {
3092 $this->duringinstall
= true;
3095 $this->page
= $page;
3096 $this->text
= get_string('home');
3097 $this->shorttext
= get_string('home');
3098 $this->action
= new moodle_url($CFG->wwwroot
);
3099 $this->nodetype
= self
::NODETYPE_BRANCH
;
3100 $this->type
= self
::TYPE_SYSTEM
;
3104 * Quick check to see if the navbar will have items in.
3106 * @return bool Returns true if the navbar will have items, false otherwise
3108 public function has_items() {
3109 if ($this->duringinstall
) {
3111 } else if ($this->hasitems
!== false) {
3114 if (count($this->children
) > 0 ||
count($this->prependchildren
) > 0) {
3115 // There have been manually added items - there are definitely items.
3117 } else if (!$this->ignoreactive
) {
3118 // We will need to initialise the navigation structure to check if there are active items.
3119 $this->page
->navigation
->initialise($this->page
);
3120 $outcome = ($this->page
->navigation
->contains_active_node() ||
$this->page
->settingsnav
->contains_active_node());
3122 $this->hasitems
= $outcome;
3127 * Turn on/off ignore active
3129 * @param bool $setting
3131 public function ignore_active($setting=true) {
3132 $this->ignoreactive
= ($setting);
3136 * Gets a navigation node
3138 * @param string|int $key for referencing the navbar nodes
3139 * @param int $type navigation_node::TYPE_*
3140 * @return navigation_node|bool
3142 public function get($key, $type = null) {
3143 foreach ($this->children
as &$child) {
3144 if ($child->key
=== $key && ($type == null ||
$type == $child->type
)) {
3148 foreach ($this->prependchildren
as &$child) {
3149 if ($child->key
=== $key && ($type == null ||
$type == $child->type
)) {
3156 * Returns an array of navigation_node's that make up the navbar.
3160 public function get_items() {
3163 // Make sure that navigation is initialised
3164 if (!$this->has_items()) {
3167 if ($this->items
!== null) {
3168 return $this->items
;
3171 if (count($this->children
) > 0) {
3172 // Add the custom children.
3173 $items = array_reverse($this->children
);
3176 // Check if navigation contains the active node
3177 if (!$this->ignoreactive
) {
3178 // We will need to ensure the navigation has been initialised.
3179 $this->page
->navigation
->initialise($this->page
);
3180 // Now find the active nodes on both the navigation and settings.
3181 $navigationactivenode = $this->page
->navigation
->find_active_node();
3182 $settingsactivenode = $this->page
->settingsnav
->find_active_node();
3184 if ($navigationactivenode && $settingsactivenode) {
3185 // Parse a combined navigation tree
3186 while ($settingsactivenode && $settingsactivenode->parent
!== null) {
3187 if (!$settingsactivenode->mainnavonly
) {
3188 $items[] = $settingsactivenode;
3190 $settingsactivenode = $settingsactivenode->parent
;
3192 if (!$this->includesettingsbase
) {
3193 // Removes the first node from the settings (root node) from the list
3196 while ($navigationactivenode && $navigationactivenode->parent
!== null) {
3197 if (!$navigationactivenode->mainnavonly
) {
3198 $items[] = $navigationactivenode;
3200 if (!empty($CFG->navshowcategories
) &&
3201 $navigationactivenode->type
=== self
::TYPE_COURSE
&&
3202 $navigationactivenode->parent
->key
=== 'currentcourse') {
3203 $items = array_merge($items, $this->get_course_categories());
3205 $navigationactivenode = $navigationactivenode->parent
;
3207 } else if ($navigationactivenode) {
3208 // Parse the navigation tree to get the active node
3209 while ($navigationactivenode && $navigationactivenode->parent
!== null) {
3210 if (!$navigationactivenode->mainnavonly
) {
3211 $items[] = $navigationactivenode;
3213 if (!empty($CFG->navshowcategories
) &&
3214 $navigationactivenode->type
=== self
::TYPE_COURSE
&&
3215 $navigationactivenode->parent
->key
=== 'currentcourse') {
3216 $items = array_merge($items, $this->get_course_categories());
3218 $navigationactivenode = $navigationactivenode->parent
;
3220 } else if ($settingsactivenode) {
3221 // Parse the settings navigation to get the active node
3222 while ($settingsactivenode && $settingsactivenode->parent
!== null) {
3223 if (!$settingsactivenode->mainnavonly
) {
3224 $items[] = $settingsactivenode;
3226 $settingsactivenode = $settingsactivenode->parent
;
3231 $items[] = new navigation_node(array(
3232 'text'=>$this->page
->navigation
->text
,
3233 'shorttext'=>$this->page
->navigation
->shorttext
,
3234 'key'=>$this->page
->navigation
->key
,
3235 'action'=>$this->page
->navigation
->action
3238 if (count($this->prependchildren
) > 0) {
3239 // Add the custom children
3240 $items = array_merge($items, array_reverse($this->prependchildren
));
3243 $this->items
= array_reverse($items);
3244 return $this->items
;
3248 * Get the list of categories leading to this course.
3250 * This function is used by {@link navbar::get_items()} to add back the "courses"
3251 * node and category chain leading to the current course. Note that this is only ever
3252 * called for the current course, so we don't need to bother taking in any parameters.
3256 private function get_course_categories() {
3258 require_once($CFG->dirroot
.'/course/lib.php');
3259 require_once($CFG->libdir
.'/coursecatlib.php');
3261 $categories = array();
3262 $cap = 'moodle/category:viewhiddencategories';
3263 $showcategories = coursecat
::count_all() > 1;
3265 if ($showcategories) {
3266 foreach ($this->page
->categories
as $category) {
3267 if (!$category->visible
&& !has_capability($cap, get_category_or_system_context($category->parent
))) {
3270 $url = new moodle_url('/course/index.php', array('categoryid' => $category->id
));
3271 $name = format_string($category->name
, true, array('context' => context_coursecat
::instance($category->id
)));
3272 $categorynode = navigation_node
::create($name, $url, self
::TYPE_CATEGORY
, null, $category->id
);
3273 if (!$category->visible
) {
3274 $categorynode->hidden
= true;
3276 $categories[] = $categorynode;
3280 // Don't show the 'course' node if enrolled in this course.
3281 if (!is_enrolled(context_course
::instance($this->page
->course
->id
))) {
3282 $courses = $this->page
->navigation
->get('courses');
3284 // Courses node may not be present.
3285 $courses = navigation_node
::create(
3286 get_string('courses'),
3287 new moodle_url('/course/index.php'),
3288 self
::TYPE_CONTAINER
3291 $categories[] = $courses;
3298 * Add a new navigation_node to the navbar, overrides parent::add
3300 * This function overrides {@link navigation_node::add()} so that we can change
3301 * the way nodes get added to allow us to simply call add and have the node added to the
3304 * @param string $text
3305 * @param string|moodle_url|action_link $action An action to associate with this node.
3306 * @param int $type One of navigation_node::TYPE_*
3307 * @param string $shorttext
3308 * @param string|int $key A key to identify this node with. Key + type is unique to a parent.
3309 * @param pix_icon $icon An optional icon to use for this node.
3310 * @return navigation_node
3312 public function add($text, $action=null, $type=self
::TYPE_CUSTOM
, $shorttext=null, $key=null, pix_icon
$icon=null) {
3313 if ($this->content
!== null) {
3314 debugging('Nav bar items must be printed before $OUTPUT->header() has been called', DEBUG_DEVELOPER
);
3317 // Properties array used when creating the new navigation node
3322 // Set the action if one was provided
3323 if ($action!==null) {
3324 $itemarray['action'] = $action;
3326 // Set the shorttext if one was provided
3327 if ($shorttext!==null) {
3328 $itemarray['shorttext'] = $shorttext;
3330 // Set the icon if one was provided
3332 $itemarray['icon'] = $icon;
3334 // Default the key to the number of children if not provided
3335 if ($key === null) {
3336 $key = count($this->children
);
3339 $itemarray['key'] = $key;
3340 // Set the parent to this node
3341 $itemarray['parent'] = $this;
3342 // Add the child using the navigation_node_collections add method
3343 $this->children
[] = new navigation_node($itemarray);
3348 * Prepends a new navigation_node to the start of the navbar
3350 * @param string $text
3351 * @param string|moodle_url|action_link $action An action to associate with this node.
3352 * @param int $type One of navigation_node::TYPE_*
3353 * @param string $shorttext
3354 * @param string|int $key A key to identify this node with. Key + type is unique to a parent.
3355 * @param pix_icon $icon An optional icon to use for this node.
3356 * @return navigation_node
3358 public function prepend($text, $action=null, $type=self
::TYPE_CUSTOM
, $shorttext=null, $key=null, pix_icon
$icon=null) {
3359 if ($this->content
!== null) {
3360 debugging('Nav bar items must be printed before $OUTPUT->header() has been called', DEBUG_DEVELOPER
);
3362 // Properties array used when creating the new navigation node.
3367 // Set the action if one was provided.
3368 if ($action!==null) {
3369 $itemarray['action'] = $action;
3371 // Set the shorttext if one was provided.
3372 if ($shorttext!==null) {
3373 $itemarray['shorttext'] = $shorttext;
3375 // Set the icon if one was provided.
3377 $itemarray['icon'] = $icon;
3379 // Default the key to the number of children if not provided.
3380 if ($key === null) {
3381 $key = count($this->children
);
3384 $itemarray['key'] = $key;
3385 // Set the parent to this node.
3386 $itemarray['parent'] = $this;
3387 // Add the child node to the prepend list.
3388 $this->prependchildren
[] = new navigation_node($itemarray);
3394 * Class used to manage the settings option for the current page
3396 * This class is used to manage the settings options in a tree format (recursively)
3397 * and was created initially for use with the settings blocks.
3400 * @category navigation
3401 * @copyright 2009 Sam Hemelryk
3402 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3404 class settings_navigation
extends navigation_node
{
3405 /** @var stdClass the current context */
3407 /** @var moodle_page the moodle page that the navigation belongs to */
3409 /** @var string contains administration section navigation_nodes */
3410 protected $adminsection;
3411 /** @var bool A switch to see if the navigation node is initialised */
3412 protected $initialised = false;
3413 /** @var array An array of users that the nodes can extend for. */
3414 protected $userstoextendfor = array();
3415 /** @var navigation_cache **/
3419 * Sets up the object with basic settings and preparse it for use
3421 * @param moodle_page $page
3423 public function __construct(moodle_page
&$page) {
3424 if (during_initial_install()) {
3427 $this->page
= $page;
3428 // Initialise the main navigation. It is most important that this is done
3429 // before we try anything
3430 $this->page
->navigation
->initialise();
3431 // Initialise the navigation cache
3432 $this->cache
= new navigation_cache(NAVIGATION_CACHE_NAME
);
3433 $this->children
= new navigation_node_collection();
3436 * Initialise the settings navigation based on the current context
3438 * This function initialises the settings navigation tree for a given context
3439 * by calling supporting functions to generate major parts of the tree.
3442 public function initialise() {
3443 global $DB, $SESSION, $SITE;
3445 if (during_initial_install()) {
3447 } else if ($this->initialised
) {
3450 $this->id
= 'settingsnav';
3451 $this->context
= $this->page
->context
;
3453 $context = $this->context
;
3454 if ($context->contextlevel
== CONTEXT_BLOCK
) {
3455 $this->load_block_settings();
3456 $context = $context->get_parent_context();
3458 switch ($context->contextlevel
) {
3459 case CONTEXT_SYSTEM
:
3460 if ($this->page
->url
->compare(new moodle_url('/admin/settings.php', array('section'=>'frontpagesettings')))) {
3461 $this->load_front_page_settings(($context->id
== $this->context
->id
));
3464 case CONTEXT_COURSECAT
:
3465 $this->load_category_settings();
3467 case CONTEXT_COURSE
:
3468 if ($this->page
->course
->id
!= $SITE->id
) {
3469 $this->load_course_settings(($context->id
== $this->context
->id
));
3471 $this->load_front_page_settings(($context->id
== $this->context
->id
));
3474 case CONTEXT_MODULE
:
3475 $this->load_module_settings();
3476 $this->load_course_settings();
3479 if ($this->page
->course
->id
!= $SITE->id
) {
3480 $this->load_course_settings();
3485 $usersettings = $this->load_user_settings($this->page
->course
->id
);
3487 $adminsettings = false;
3488 if (isloggedin() && !isguestuser() && (!isset($SESSION->load_navigation_admin
) ||
$SESSION->load_navigation_admin
)) {
3489 $isadminpage = $this->is_admin_tree_needed();
3491 if (has_capability('moodle/site:config', context_system
::instance())) {
3492 // Make sure this works even if config capability changes on the fly
3493 // and also make it fast for admin right after login.
3494 $SESSION->load_navigation_admin
= 1;
3496 $adminsettings = $this->load_administration_settings();
3499 } else if (!isset($SESSION->load_navigation_admin
)) {
3500 $adminsettings = $this->load_administration_settings();
3501 $SESSION->load_navigation_admin
= (int)($adminsettings->children
->count() > 0);
3503 } else if ($SESSION->load_navigation_admin
) {
3505 $adminsettings = $this->load_administration_settings();
3509 // Print empty navigation node, if needed.
3510 if ($SESSION->load_navigation_admin
&& !$isadminpage) {
3511 if ($adminsettings) {
3512 // Do not print settings tree on pages that do not need it, this helps with performance.
3513 $adminsettings->remove();
3514 $adminsettings = false;
3516 $siteadminnode = $this->add(get_string('administrationsite'), new moodle_url('/admin'), self
::TYPE_SITE_ADMIN
, null, 'siteadministration');
3517 $siteadminnode->id
= 'expandable_branch_'.$siteadminnode->type
.'_'.clean_param($siteadminnode->key
, PARAM_ALPHANUMEXT
);
3518 $this->page
->requires
->data_for_js('siteadminexpansion', $siteadminnode);
3522 if ($context->contextlevel
== CONTEXT_SYSTEM
&& $adminsettings) {
3523 $adminsettings->force_open();
3524 } else if ($context->contextlevel
== CONTEXT_USER
&& $usersettings) {
3525 $usersettings->force_open();
3528 // Check if the user is currently logged in as another user
3529 if (\core\session\manager
::is_loggedinas()) {
3530 // Get the actual user, we need this so we can display an informative return link
3531 $realuser = \core\session\manager
::get_realuser();
3532 // Add the informative return to original user link
3533 $url = new moodle_url('/course/loginas.php',array('id'=>$this->page
->course
->id
, 'return'=>1,'sesskey'=>sesskey()));
3534 $this->add(get_string('returntooriginaluser', 'moodle', fullname($realuser, true)), $url, self
::TYPE_SETTING
, null, null, new pix_icon('t/left', ''));
3537 // At this point we give any local plugins the ability to extend/tinker with the navigation settings.
3538 $this->load_local_plugin_settings();
3540 foreach ($this->children
as $key=>$node) {
3541 if ($node->nodetype
!= self
::NODETYPE_BRANCH ||
$node->children
->count()===0) {
3542 // Site administration is shown as link.
3543 if (!empty($SESSION->load_navigation_admin
) && ($node->type
=== self
::TYPE_SITE_ADMIN
)) {
3549 $this->initialised
= true;
3552 * Override the parent function so that we can add preceeding hr's and set a
3553 * root node class against all first level element
3555 * It does this by first calling the parent's add method {@link navigation_node::add()}
3556 * and then proceeds to use the key to set class and hr
3558 * @param string $text text to be used for the link.
3559 * @param string|moodle_url $url url for the new node
3560 * @param int $type the type of node navigation_node::TYPE_*
3561 * @param string $shorttext
3562 * @param string|int $key a key to access the node by.
3563 * @param pix_icon $icon An icon that appears next to the node.
3564 * @return navigation_node with the new node added to it.
3566 public function add($text, $url=null, $type=null, $shorttext=null, $key=null, pix_icon
$icon=null) {
3567 $node = parent
::add($text, $url, $type, $shorttext, $key, $icon);
3568 $node->add_class('root_node');
3573 * This function allows the user to add something to the start of the settings
3574 * navigation, which means it will be at the top of the settings navigation block
3576 * @param string $text text to be used for the link.
3577 * @param string|moodle_url $url url for the new node
3578 * @param int $type the type of node navigation_node::TYPE_*
3579 * @param string $shorttext
3580 * @param string|int $key a key to access the node by.
3581 * @param pix_icon $icon An icon that appears next to the node.
3582 * @return navigation_node $node with the new node added to it.
3584 public function prepend($text, $url=null, $type=null, $shorttext=null, $key=null, pix_icon
$icon=null) {
3585 $children = $this->children
;
3586 $childrenclass = get_class($children);
3587 $this->children
= new $childrenclass;
3588 $node = $this->add($text, $url, $type, $shorttext, $key, $icon);
3589 foreach ($children as $child) {
3590 $this->children
->add($child);
3596 * Does this page require loading of full admin tree or is
3597 * it enough rely on AJAX?
3601 protected function is_admin_tree_needed() {
3602 if (self
::$loadadmintree) {
3603 // Usually external admin page or settings page.
3607 if ($this->page
->pagelayout
=== 'admin' or strpos($this->page
->pagetype
, 'admin-') === 0) {
3608 // Admin settings tree is intended for system level settings and management only, use navigation for the rest!
3609 if ($this->page
->context
->contextlevel
!= CONTEXT_SYSTEM
) {
3619 * Load the site administration tree
3621 * This function loads the site administration tree by using the lib/adminlib library functions
3623 * @param navigation_node $referencebranch A reference to a branch in the settings
3625 * @param part_of_admin_tree $adminbranch The branch to add, if null generate the admin
3626 * tree and start at the beginning
3627 * @return mixed A key to access the admin tree by
3629 protected function load_administration_settings(navigation_node
$referencebranch=null, part_of_admin_tree
$adminbranch=null) {
3632 // Check if we are just starting to generate this navigation.
3633 if ($referencebranch === null) {
3635 // Require the admin lib then get an admin structure
3636 if (!function_exists('admin_get_root')) {
3637 require_once($CFG->dirroot
.'/lib/adminlib.php');
3639 $adminroot = admin_get_root(false, false);
3640 // This is the active section identifier
3641 $this->adminsection
= $this->page
->url
->param('section');
3643 // Disable the navigation from automatically finding the active node
3644 navigation_node
::$autofindactive = false;
3645 $referencebranch = $this->add(get_string('administrationsite'), null, self
::TYPE_SITE_ADMIN
, null, 'root');
3646 foreach ($adminroot->children
as $adminbranch) {
3647 $this->load_administration_settings($referencebranch, $adminbranch);
3649 navigation_node
::$autofindactive = true;
3651 // Use the admin structure to locate the active page
3652 if (!$this->contains_active_node() && $current = $adminroot->locate($this->adminsection
, true)) {
3653 $currentnode = $this;
3654 while (($pathkey = array_pop($current->path
))!==null && $currentnode) {
3655 $currentnode = $currentnode->get($pathkey);
3658 $currentnode->make_active();
3661 $this->scan_for_active_node($referencebranch);
3663 return $referencebranch;
3664 } else if ($adminbranch->check_access()) {
3665 // We have a reference branch that we can access and is not hidden `hurrah`
3666 // Now we need to display it and any children it may have
3669 if ($adminbranch instanceof admin_settingpage
) {
3670 $url = new moodle_url('/'.$CFG->admin
.'/settings.php', array('section'=>$adminbranch->name
));
3671 } else if ($adminbranch instanceof admin_externalpage
) {
3672 $url = $adminbranch->url
;
3673 } else if (!empty($CFG->linkadmincategories
) && $adminbranch instanceof admin_category
) {
3674 $url = new moodle_url('/'.$CFG->admin
.'/category.php', array('category' => $adminbranch->name
));
3678 $reference = $referencebranch->add($adminbranch->visiblename
, $url, self
::TYPE_SETTING
, null, $adminbranch->name
, $icon);
3680 if ($adminbranch->is_hidden()) {
3681 if (($adminbranch instanceof admin_externalpage ||
$adminbranch instanceof admin_settingpage
) && $adminbranch->name
== $this->adminsection
) {
3682 $reference->add_class('hidden');
3684 $reference->display
= false;
3688 // Check if we are generating the admin notifications and whether notificiations exist
3689 if ($adminbranch->name
=== 'adminnotifications' && admin_critical_warnings_present()) {
3690 $reference->add_class('criticalnotification');
3692 // Check if this branch has children
3693 if ($reference && isset($adminbranch->children
) && is_array($adminbranch->children
) && count($adminbranch->children
)>0) {
3694 foreach ($adminbranch->children
as $branch) {
3695 // Generate the child branches as well now using this branch as the reference
3696 $this->load_administration_settings($reference, $branch);
3699 $reference->icon
= new pix_icon('i/settings', '');
3705 * This function recursivily scans nodes until it finds the active node or there
3706 * are no more nodes.
3707 * @param navigation_node $node
3709 protected function scan_for_active_node(navigation_node
$node) {
3710 if (!$node->check_if_active() && $node->children
->count()>0) {
3711 foreach ($node->children
as &$child) {
3712 $this->scan_for_active_node($child);
3718 * Gets a navigation node given an array of keys that represent the path to
3721 * @param array $path
3722 * @return navigation_node|false
3724 protected function get_by_path(array $path) {
3725 $node = $this->get(array_shift($path));
3726 foreach ($path as $key) {
3733 * This function loads the course settings that are available for the user
3735 * @param bool $forceopen If set to true the course node will be forced open
3736 * @return navigation_node|false
3738 protected function load_course_settings($forceopen = false) {
3741 $course = $this->page
->course
;
3742 $coursecontext = context_course
::instance($course->id
);
3744 // note: do not test if enrolled or viewing here because we need the enrol link in Course administration section
3746 $coursenode = $this->add(get_string('courseadministration'), null, self
::TYPE_COURSE
, null, 'courseadmin');
3748 $coursenode->force_open();
3751 if ($this->page
->user_allowed_editing()) {
3752 // Add the turn on/off settings
3754 if ($this->page
->url
->compare(new moodle_url('/course/view.php'), URL_MATCH_BASE
)) {
3755 // We are on the course page, retain the current page params e.g. section.
3756 $baseurl = clone($this->page
->url
);
3757 $baseurl->param('sesskey', sesskey());
3759 // Edit on the main course page.
3760 $baseurl = new moodle_url('/course/view.php', array('id'=>$course->id
, 'return'=>$this->page
->url
->out_as_local_url(false), 'sesskey'=>sesskey()));
3763 $editurl = clone($baseurl);
3764 if ($this->page
->user_is_editing()) {
3765 $editurl->param('edit', 'off');
3766 $editstring = get_string('turneditingoff');
3768 $editurl->param('edit', 'on');
3769 $editstring = get_string('turneditingon');
3771 $coursenode->add($editstring, $editurl, self
::TYPE_SETTING
, null, 'turneditingonoff', new pix_icon('i/edit', ''));
3774 if (has_capability('moodle/course:update', $coursecontext)) {
3775 // Add the course settings link
3776 $url = new moodle_url('/course/edit.php', array('id'=>$course->id
));
3777 $coursenode->add(get_string('editsettings'), $url, self
::TYPE_SETTING
, null, 'editsettings', new pix_icon('i/settings', ''));
3779 // Add the course completion settings link
3780 if ($CFG->enablecompletion
&& $course->enablecompletion
) {
3781 $url = new moodle_url('/course/completion.php', array('id'=>$course->id
));
3782 $coursenode->add(get_string('coursecompletion', 'completion'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/settings', ''));
3787 enrol_add_course_navigation($coursenode, $course);
3790 if (has_capability('moodle/filter:manage', $coursecontext) && count(filter_get_available_in_context($coursecontext))>0) {
3791 $url = new moodle_url('/filter/manage.php', array('contextid'=>$coursecontext->id
));
3792 $coursenode->add(get_string('filters', 'admin'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/filter', ''));
3795 // View course reports.
3796 if (has_capability('moodle/site:viewreports', $coursecontext)) { // Basic capability for listing of reports.
3797 $reportnav = $coursenode->add(get_string('reports'), null, self
::TYPE_CONTAINER
, null, 'coursereports',
3798 new pix_icon('i/stats', ''));
3799 $coursereports = core_component
::get_plugin_list('coursereport');
3800 foreach ($coursereports as $report => $dir) {
3801 $libfile = $CFG->dirroot
.'/course/report/'.$report.'/lib.php';
3802 if (file_exists($libfile)) {
3803 require_once($libfile);
3804 $reportfunction = $report.'_report_extend_navigation';
3805 if (function_exists($report.'_report_extend_navigation')) {
3806 $reportfunction($reportnav, $course, $coursecontext);
3811 $reports = get_plugin_list_with_function('report', 'extend_navigation_course', 'lib.php');
3812 foreach ($reports as $reportfunction) {
3813 $reportfunction($reportnav, $course, $coursecontext);
3817 // Add view grade report is permitted
3818 $reportavailable = false;
3819 if (has_capability('moodle/grade:viewall', $coursecontext)) {
3820 $reportavailable = true;
3821 } else if (!empty($course->showgrades
)) {
3822 $reports = core_component
::get_plugin_list('gradereport');
3823 if (is_array($reports) && count($reports)>0) { // Get all installed reports
3824 arsort($reports); // user is last, we want to test it first
3825 foreach ($reports as $plugin => $plugindir) {
3826 if (has_capability('gradereport/'.$plugin.':view', $coursecontext)) {
3827 //stop when the first visible plugin is found
3828 $reportavailable = true;
3834 if ($reportavailable) {
3835 $url = new moodle_url('/grade/report/index.php', array('id'=>$course->id
));
3836 $gradenode = $coursenode->add(get_string('grades'), $url, self
::TYPE_SETTING
, null, 'grades', new pix_icon('i/grades', ''));
3839 // Add outcome if permitted
3840 if (!empty($CFG->enableoutcomes
) && has_capability('moodle/course:update', $coursecontext)) {
3841 $url = new moodle_url('/grade/edit/outcome/course.php', array('id'=>$course->id
));
3842 $coursenode->add(get_string('outcomes', 'grades'), $url, self
::TYPE_SETTING
, null, 'outcomes', new pix_icon('i/outcomes', ''));
3845 //Add badges navigation
3846 require_once($CFG->libdir
.'/badgeslib.php');
3847 badges_add_course_navigation($coursenode, $course);
3849 // Backup this course
3850 if (has_capability('moodle/backup:backupcourse', $coursecontext)) {
3851 $url = new moodle_url('/backup/backup.php', array('id'=>$course->id
));
3852 $coursenode->add(get_string('backup'), $url, self
::TYPE_SETTING
, null, 'backup', new pix_icon('i/backup', ''));
3855 // Restore to this course
3856 if (has_capability('moodle/restore:restorecourse', $coursecontext)) {
3857 $url = new moodle_url('/backup/restorefile.php', array('contextid'=>$coursecontext->id
));
3858 $coursenode->add(get_string('restore'), $url, self
::TYPE_SETTING
, null, 'restore', new pix_icon('i/restore', ''));
3861 // Import data from other courses
3862 if (has_capability('moodle/restore:restoretargetimport', $coursecontext)) {
3863 $url = new moodle_url('/backup/import.php', array('id'=>$course->id
));
3864 $coursenode->add(get_string('import'), $url, self
::TYPE_SETTING
, null, 'import', new pix_icon('i/import', ''));
3867 // Publish course on a hub
3868 if (has_capability('moodle/course:publish', $coursecontext)) {
3869 $url = new moodle_url('/course/publish/index.php', array('id'=>$course->id
));
3870 $coursenode->add(get_string('publish'), $url, self
::TYPE_SETTING
, null, 'publish', new pix_icon('i/publish', ''));
3873 // Reset this course
3874 if (has_capability('moodle/course:reset', $coursecontext)) {
3875 $url = new moodle_url('/course/reset.php', array('id'=>$course->id
));
3876 $coursenode->add(get_string('reset'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/return', ''));
3880 require_once($CFG->libdir
. '/questionlib.php');
3881 question_extend_settings_navigation($coursenode, $coursecontext)->trim_if_empty();
3883 if (has_capability('moodle/course:update', $coursecontext)) {
3884 // Repository Instances
3885 if (!$this->cache
->cached('contexthasrepos'.$coursecontext->id
)) {
3886 require_once($CFG->dirroot
. '/repository/lib.php');
3887 $editabletypes = repository
::get_editable_types($coursecontext);
3888 $haseditabletypes = !empty($editabletypes);
3889 unset($editabletypes);
3890 $this->cache
->set('contexthasrepos'.$coursecontext->id
, $haseditabletypes);
3892 $haseditabletypes = $this->cache
->{'contexthasrepos'.$coursecontext->id
};
3894 if ($haseditabletypes) {
3895 $url = new moodle_url('/repository/manage_instances.php', array('contextid' => $coursecontext->id
));
3896 $coursenode->add(get_string('repositories'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/repository', ''));
3901 if ($course->legacyfiles
== 2 and has_capability('moodle/course:managefiles', $coursecontext)) {
3902 // hidden in new courses and courses where legacy files were turned off
3903 $url = new moodle_url('/files/index.php', array('contextid'=>$coursecontext->id
));
3904 $coursenode->add(get_string('courselegacyfiles'), $url, self
::TYPE_SETTING
, null, 'coursefiles', new pix_icon('i/folder', ''));
3910 $assumedrole = $this->in_alternative_role();
3911 if ($assumedrole !== false) {
3912 $roles[0] = get_string('switchrolereturn');
3914 if (has_capability('moodle/role:switchroles', $coursecontext)) {
3915 $availableroles = get_switchable_roles($coursecontext);
3916 if (is_array($availableroles)) {
3917 foreach ($availableroles as $key=>$role) {
3918 if ($assumedrole == (int)$key) {
3921 $roles[$key] = $role;
3925 if (is_array($roles) && count($roles)>0) {
3926 $switchroles = $this->add(get_string('switchroleto'));
3927 if ((count($roles)==1 && array_key_exists(0, $roles))||
$assumedrole!==false) {
3928 $switchroles->force_open();
3930 foreach ($roles as $key => $name) {
3931 $url = new moodle_url('/course/switchrole.php', array('id'=>$course->id
, 'sesskey'=>sesskey(), 'switchrole'=>$key, 'returnurl'=>$this->page
->url
->out_as_local_url(false)));
3932 $switchroles->add($name, $url, self
::TYPE_SETTING
, null, $key, new pix_icon('i/switchrole', ''));
3936 // Let admin tools hook into course navigation.
3937 $tools = get_plugin_list_with_function('tool', 'extend_navigation_course', 'lib.php');
3938 foreach ($tools as $toolfunction) {
3939 $toolfunction($coursenode, $course, $coursecontext);
3942 // Return we are done
3947 * This function calls the module function to inject module settings into the
3948 * settings navigation tree.
3950 * This only gets called if there is a corrosponding function in the modules
3953 * For examples mod/forum/lib.php {@link forum_extend_settings_navigation()}
3955 * @return navigation_node|false
3957 protected function load_module_settings() {
3960 if (!$this->page
->cm
&& $this->context
->contextlevel
== CONTEXT_MODULE
&& $this->context
->instanceid
) {
3961 $cm = get_coursemodule_from_id(false, $this->context
->instanceid
, 0, false, MUST_EXIST
);
3962 $this->page
->set_cm($cm, $this->page
->course
);
3965 $file = $CFG->dirroot
.'/mod/'.$this->page
->activityname
.'/lib.php';
3966 if (file_exists($file)) {
3967 require_once($file);
3970 $modulenode = $this->add(get_string('pluginadministration', $this->page
->activityname
), null, self
::TYPE_SETTING
, null, 'modulesettings');
3971 $modulenode->force_open();
3973 // Settings for the module
3974 if (has_capability('moodle/course:manageactivities', $this->page
->cm
->context
)) {
3975 $url = new moodle_url('/course/modedit.php', array('update' => $this->page
->cm
->id
, 'return' => 1));
3976 $modulenode->add(get_string('editsettings'), $url, navigation_node
::TYPE_SETTING
, null, 'modedit');
3978 // Assign local roles
3979 if (count(get_assignable_roles($this->page
->cm
->context
))>0) {
3980 $url = new moodle_url('/'.$CFG->admin
.'/roles/assign.php', array('contextid'=>$this->page
->cm
->context
->id
));
3981 $modulenode->add(get_string('localroles', 'role'), $url, self
::TYPE_SETTING
, null, 'roleassign');
3984 if (has_capability('moodle/role:review', $this->page
->cm
->context
) or count(get_overridable_roles($this->page
->cm
->context
))>0) {
3985 $url = new moodle_url('/'.$CFG->admin
.'/roles/permissions.php', array('contextid'=>$this->page
->cm
->context
->id
));
3986 $modulenode->add(get_string('permissions', 'role'), $url, self
::TYPE_SETTING
, null, 'roleoverride');
3988 // Check role permissions
3989 if (has_any_capability(array('moodle/role:assign', 'moodle/role:safeoverride','moodle/role:override', 'moodle/role:assign'), $this->page
->cm
->context
)) {
3990 $url = new moodle_url('/'.$CFG->admin
.'/roles/check.php', array('contextid'=>$this->page
->cm
->context
->id
));
3991 $modulenode->add(get_string('checkpermissions', 'role'), $url, self
::TYPE_SETTING
, null, 'rolecheck');
3994 if (has_capability('moodle/filter:manage', $this->page
->cm
->context
) && count(filter_get_available_in_context($this->page
->cm
->context
))>0) {
3995 $url = new moodle_url('/filter/manage.php', array('contextid'=>$this->page
->cm
->context
->id
));
3996 $modulenode->add(get_string('filters', 'admin'), $url, self
::TYPE_SETTING
, null, 'filtermanage');
3999 $reports = get_plugin_list_with_function('report', 'extend_navigation_module', 'lib.php');
4000 foreach ($reports as $reportfunction) {
4001 $reportfunction($modulenode, $this->page
->cm
);
4003 // Add a backup link
4004 $featuresfunc = $this->page
->activityname
.'_supports';
4005 if (function_exists($featuresfunc) && $featuresfunc(FEATURE_BACKUP_MOODLE2
) && has_capability('moodle/backup:backupactivity', $this->page
->cm
->context
)) {
4006 $url = new moodle_url('/backup/backup.php', array('id'=>$this->page
->cm
->course
, 'cm'=>$this->page
->cm
->id
));
4007 $modulenode->add(get_string('backup'), $url, self
::TYPE_SETTING
, null, 'backup');
4010 // Restore this activity
4011 $featuresfunc = $this->page
->activityname
.'_supports';
4012 if (function_exists($featuresfunc) && $featuresfunc(FEATURE_BACKUP_MOODLE2
) && has_capability('moodle/restore:restoreactivity', $this->page
->cm
->context
)) {
4013 $url = new moodle_url('/backup/restorefile.php', array('contextid'=>$this->page
->cm
->context
->id
));
4014 $modulenode->add(get_string('restore'), $url, self
::TYPE_SETTING
, null, 'restore');
4017 // Allow the active advanced grading method plugin to append its settings
4018 $featuresfunc = $this->page
->activityname
.'_supports';
4019 if (function_exists($featuresfunc) && $featuresfunc(FEATURE_ADVANCED_GRADING
) && has_capability('moodle/grade:managegradingforms', $this->page
->cm
->context
)) {
4020 require_once($CFG->dirroot
.'/grade/grading/lib.php');
4021 $gradingman = get_grading_manager($this->page
->cm
->context
, 'mod_'.$this->page
->activityname
);
4022 $gradingman->extend_settings_navigation($this, $modulenode);
4025 $function = $this->page
->activityname
.'_extend_settings_navigation';
4026 if (!function_exists($function)) {
4030 $function($this, $modulenode);
4032 // Remove the module node if there are no children
4033 if (empty($modulenode->children
)) {
4034 $modulenode->remove();
4041 * Loads the user settings block of the settings nav
4043 * This function is simply works out the userid and whether we need to load
4044 * just the current users profile settings, or the current user and the user the
4045 * current user is viewing.
4047 * This function has some very ugly code to work out the user, if anyone has
4048 * any bright ideas please feel free to intervene.
4050 * @param int $courseid The course id of the current course
4051 * @return navigation_node|false
4053 protected function load_user_settings($courseid = SITEID
) {
4056 if (isguestuser() ||
!isloggedin()) {
4060 $navusers = $this->page
->navigation
->get_extending_users();
4062 if (count($this->userstoextendfor
) > 0 ||
count($navusers) > 0) {
4064 foreach ($this->userstoextendfor
as $userid) {
4065 if ($userid == $USER->id
) {
4068 $node = $this->generate_user_settings($courseid, $userid, 'userviewingsettings');
4069 if (is_null($usernode)) {
4073 foreach ($navusers as $user) {
4074 if ($user->id
== $USER->id
) {
4077 $node = $this->generate_user_settings($courseid, $user->id
, 'userviewingsettings');
4078 if (is_null($usernode)) {
4082 $this->generate_user_settings($courseid, $USER->id
);
4084 $usernode = $this->generate_user_settings($courseid, $USER->id
);
4090 * Extends the settings navigation for the given user.
4092 * Note: This method gets called automatically if you call
4093 * $PAGE->navigation->extend_for_user($userid)
4095 * @param int $userid
4097 public function extend_for_user($userid) {
4100 if (!in_array($userid, $this->userstoextendfor
)) {
4101 $this->userstoextendfor
[] = $userid;
4102 if ($this->initialised
) {
4103 $this->generate_user_settings($this->page
->course
->id
, $userid, 'userviewingsettings');
4104 $children = array();
4105 foreach ($this->children
as $child) {
4106 $children[] = $child;
4108 array_unshift($children, array_pop($children));
4109 $this->children
= new navigation_node_collection();
4110 foreach ($children as $child) {
4111 $this->children
->add($child);
4118 * This function gets called by {@link settings_navigation::load_user_settings()} and actually works out
4119 * what can be shown/done
4121 * @param int $courseid The current course' id
4122 * @param int $userid The user id to load for
4123 * @param string $gstitle The string to pass to get_string for the branch title
4124 * @return navigation_node|false
4126 protected function generate_user_settings($courseid, $userid, $gstitle='usercurrentsettings') {
4127 global $DB, $CFG, $USER, $SITE;
4129 if ($courseid != $SITE->id
) {
4130 if (!empty($this->page
->course
->id
) && $this->page
->course
->id
== $courseid) {
4131 $course = $this->page
->course
;
4133 $select = context_helper
::get_preload_record_columns_sql('ctx');
4134 $sql = "SELECT c.*, $select
4136 JOIN {context} ctx ON c.id = ctx.instanceid
4137 WHERE c.id = :courseid AND ctx.contextlevel = :contextlevel";
4138 $params = array('courseid' => $courseid, 'contextlevel' => CONTEXT_COURSE
);
4139 $course = $DB->get_record_sql($sql, $params, MUST_EXIST
);
4140 context_helper
::preload_from_record($course);
4146 $coursecontext = context_course
::instance($course->id
); // Course context
4147 $systemcontext = context_system
::instance();
4148 $currentuser = ($USER->id
== $userid);
4152 $usercontext = context_user
::instance($user->id
); // User context
4154 $select = context_helper
::get_preload_record_columns_sql('ctx');
4155 $sql = "SELECT u.*, $select
4157 JOIN {context} ctx ON u.id = ctx.instanceid
4158 WHERE u.id = :userid AND ctx.contextlevel = :contextlevel";
4159 $params = array('userid' => $userid, 'contextlevel' => CONTEXT_USER
);
4160 $user = $DB->get_record_sql($sql, $params, IGNORE_MISSING
);
4164 context_helper
::preload_from_record($user);
4166 // Check that the user can view the profile
4167 $usercontext = context_user
::instance($user->id
); // User context
4168 $canviewuser = has_capability('moodle/user:viewdetails', $usercontext);
4170 if ($course->id
== $SITE->id
) {
4171 if ($CFG->forceloginforprofiles
&& !has_coursecontact_role($user->id
) && !$canviewuser) { // Reduce possibility of "browsing" userbase at site level
4172 // Teachers can browse and be browsed at site level. If not forceloginforprofiles, allow access (bug #4366)
4176 $canviewusercourse = has_capability('moodle/user:viewdetails', $coursecontext);
4177 $userisenrolled = is_enrolled($coursecontext, $user->id
);
4178 if ((!$canviewusercourse && !$canviewuser) ||
!$userisenrolled) {
4181 $canaccessallgroups = has_capability('moodle/site:accessallgroups', $coursecontext);
4182 if (!$canaccessallgroups && groups_get_course_groupmode($course) == SEPARATEGROUPS
&& !$canviewuser) {
4183 // If groups are in use, make sure we can see that group (MDL-45874). That does not apply to parents.
4184 if ($courseid == $this->page
->course
->id
) {
4185 $mygroups = get_fast_modinfo($this->page
->course
)->groups
;
4187 $mygroups = groups_get_user_groups($courseid);
4189 $usergroups = groups_get_user_groups($courseid, $userid);
4190 if (!array_intersect_key($mygroups[0], $usergroups[0])) {
4197 $fullname = fullname($user, has_capability('moodle/site:viewfullnames', $this->page
->context
));
4200 $prefurl = new moodle_url('/user/preferences.php');
4201 if ($gstitle != 'usercurrentsettings') {
4203 $prefurl->param('userid', $userid);
4206 // Add a user setting branch.
4207 if ($gstitle == 'usercurrentsettings') {
4208 $dashboard = $this->add(get_string('myhome'), new moodle_url('/my/'), self
::TYPE_CONTAINER
, null, 'dashboard');
4209 // This should be set to false as we don't want to show this to the user. It's only for generating the correct
4211 $dashboard->display
= false;
4212 if (get_home_page() == HOMEPAGE_MY
) {
4213 $dashboard->mainnavonly
= true;
4216 $iscurrentuser = ($user->id
== $USER->id
);
4218 $baseargs = array('id' => $user->id
);
4219 if ($course->id
!= $SITE->id
&& !$iscurrentuser) {
4220 $baseargs['course'] = $course->id
;
4221 $issitecourse = false;
4223 // Load all categories and get the context for the system.
4224 $issitecourse = true;
4227 // Add the user profile to the dashboard.
4228 $profilenode = $dashboard->add(get_string('myprofile'), new moodle_url('/user/profile.php',
4229 array('id' => $user->id
)), null, 'myprofile');
4231 if (!empty($CFG->navadduserpostslinks
)) {
4232 // Add nodes for forum posts and discussions if the user can view either or both
4233 // There are no capability checks here as the content of the page is based
4234 // purely on the forums the current user has access too.
4235 $forumtab = $dashboard->add(get_string('forumposts', 'forum'));
4236 $forumtab->add(get_string('posts', 'forum'), new moodle_url('/mod/forum/user.php', $baseargs), null, 'myposts');
4237 $forumtab->add(get_string('discussions', 'forum'), new moodle_url('/mod/forum/user.php',
4238 array_merge($baseargs, array('mode' => 'discussions'))), null, 'mydiscussions');
4242 if (!empty($CFG->enableblogs
)) {
4243 if (!$this->cache
->cached('userblogoptions'.$user->id
)) {
4244 require_once($CFG->dirroot
.'/blog/lib.php');
4245 // Get all options for the user.
4246 $options = blog_get_options_for_user($user);
4247 $this->cache
->set('userblogoptions'.$user->id
, $options);
4249 $options = $this->cache
->{'userblogoptions'.$user->id
};
4252 if (count($options) > 0) {
4253 $blogs = $dashboard->add(get_string('blogs', 'blog'), null, navigation_node
::TYPE_CONTAINER
);
4254 foreach ($options as $type => $option) {
4255 if ($type == "rss") {
4256 $blogs->add($option['string'], $option['link'], self
::TYPE_SETTING
, null, null,
4257 new pix_icon('i/rss', ''));
4259 $blogs->add($option['string'], $option['link'], self
::TYPE_SETTING
, null, 'blog' . $type);
4265 // Add the messages link.
4266 // It is context based so can appear in "My profile" and in course participants information.
4267 if (!empty($CFG->messaging
)) {
4268 $messageargs = array('user1' => $USER->id
);
4269 if ($USER->id
!= $user->id
) {
4270 $messageargs['user2'] = $user->id
;
4272 if ($course->id
!= $SITE->id
) {
4273 $messageargs['viewing'] = MESSAGE_VIEW_COURSE
. $course->id
;
4275 $url = new moodle_url('/message/index.php', $messageargs);
4276 $dashboard->add(get_string('messages', 'message'), $url, self
::TYPE_SETTING
, null, 'messages');
4279 // Add the "My private files" link.
4280 // This link doesn't have a unique display for course context so only display it under "My profile".
4281 if ($issitecourse && $iscurrentuser && has_capability('moodle/user:manageownfiles', $usercontext)) {
4282 $url = new moodle_url('/user/files.php');
4283 $dashboard->add(get_string('myfiles'), $url, self
::TYPE_SETTING
);
4286 if (!empty($CFG->enablebadges
) && $iscurrentuser &&
4287 has_capability('moodle/badges:manageownbadges', $usercontext)) {
4288 $url = new moodle_url('/badges/mybadges.php');
4289 $dashboard->add(get_string('mybadges', 'badges'), $url, self
::TYPE_SETTING
);
4292 // Add a node to view the users notes if permitted.
4293 if (!empty($CFG->enablenotes
) &&
4294 has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $coursecontext)) {
4295 $url = new moodle_url('/notes/index.php', array('user' => $user->id
));
4296 if ($coursecontext->instanceid
!= SITEID
) {
4297 $url->param('course', $coursecontext->instanceid
);
4299 $dashboard->add(get_string('notes', 'notes'), $url);
4302 // Show the my grades node.
4303 if (($issitecourse && $iscurrentuser) ||
has_capability('moodle/user:viewdetails', $usercontext)) {
4304 require_once($CFG->dirroot
. '/user/lib.php');
4305 // Set the grades node to link to the "My grades" page.
4306 if ($course->id
== SITEID
) {
4307 $url = user_mygrades_url($user->id
, $course->id
);
4308 } else { // Otherwise we are in a course and should redirect to the user grade report (Activity report version).
4309 $url = new moodle_url('/course/user.php', array('mode' => 'grade', 'id' => $course->id
, 'user' => $user->id
));
4311 if ($USER->id
!= $user->id
) {
4312 $dashboard->add(get_string('grades', 'grades'), $url, self
::TYPE_SETTING
, null, 'mygrades');
4314 $dashboard->add(get_string('mygrades', 'grades'), $url, self
::TYPE_SETTING
, null, 'mygrades');
4317 $usersetting = navigation_node
::create(get_string('preferences', 'moodle'), $prefurl, self
::TYPE_CONTAINER
, null, $key);
4318 $dashboard->add_node($usersetting);
4320 $usersetting = $this->add(get_string('preferences', 'moodle'), $prefurl, self
::TYPE_CONTAINER
, null, $key);
4321 $usersetting->display
= false;
4323 $usersetting->id
= 'usersettings';
4325 // Check if the user has been deleted.
4326 if ($user->deleted
) {
4327 if (!has_capability('moodle/user:update', $coursecontext)) {
4328 // We can't edit the user so just show the user deleted message.
4329 $usersetting->add(get_string('userdeleted'), null, self
::TYPE_SETTING
);
4331 // We can edit the user so show the user deleted message and link it to the profile.
4332 if ($course->id
== $SITE->id
) {
4333 $profileurl = new moodle_url('/user/profile.php', array('id'=>$user->id
));
4335 $profileurl = new moodle_url('/user/view.php', array('id'=>$user->id
, 'course'=>$course->id
));
4337 $usersetting->add(get_string('userdeleted'), $profileurl, self
::TYPE_SETTING
);
4342 $userauthplugin = false;
4343 if (!empty($user->auth
)) {
4344 $userauthplugin = get_auth_plugin($user->auth
);
4347 $useraccount = $usersetting->add(get_string('useraccount'), null, self
::TYPE_CONTAINER
, null, 'useraccount');
4349 // Add the profile edit link.
4350 if (isloggedin() && !isguestuser($user) && !is_mnet_remote_user($user)) {
4351 if (($currentuser ||
is_siteadmin($USER) ||
!is_siteadmin($user)) &&
4352 has_capability('moodle/user:update', $systemcontext)) {
4353 $url = new moodle_url('/user/editadvanced.php', array('id'=>$user->id
, 'course'=>$course->id
));
4354 $useraccount->add(get_string('editmyprofile'), $url, self
::TYPE_SETTING
);
4355 } else if ((has_capability('moodle/user:editprofile', $usercontext) && !is_siteadmin($user)) ||
4356 ($currentuser && has_capability('moodle/user:editownprofile', $systemcontext))) {
4357 if ($userauthplugin && $userauthplugin->can_edit_profile()) {
4358 $url = $userauthplugin->edit_profile_url();
4360 $url = new moodle_url('/user/edit.php', array('id'=>$user->id
, 'course'=>$course->id
));
4362 $useraccount->add(get_string('editmyprofile'), $url, self
::TYPE_SETTING
);
4367 // Change password link.
4368 if ($userauthplugin && $currentuser && !\core\session\manager
::is_loggedinas() && !isguestuser() &&
4369 has_capability('moodle/user:changeownpassword', $systemcontext) && $userauthplugin->can_change_password()) {
4370 $passwordchangeurl = $userauthplugin->change_password_url();
4371 if (empty($passwordchangeurl)) {
4372 $passwordchangeurl = new moodle_url('/login/change_password.php', array('id'=>$course->id
));
4374 $useraccount->add(get_string("changepassword"), $passwordchangeurl, self
::TYPE_SETTING
, null, 'changepassword');
4377 if (isloggedin() && !isguestuser($user) && !is_mnet_remote_user($user)) {
4378 if ($currentuser && has_capability('moodle/user:editownprofile', $systemcontext) ||
4379 has_capability('moodle/user:editprofile', $usercontext)) {
4380 $url = new moodle_url('/user/language.php', array('id' => $user->id
, 'course' => $course->id
));
4381 $useraccount->add(get_string('preferredlanguage'), $url, self
::TYPE_SETTING
, null, 'preferredlanguage');
4384 $pluginmanager = core_plugin_manager
::instance();
4385 $enabled = $pluginmanager->get_enabled_plugins('mod');
4386 if (isset($enabled['forum']) && isloggedin() && !isguestuser($user) && !is_mnet_remote_user($user)) {
4387 if ($currentuser && has_capability('moodle/user:editownprofile', $systemcontext) ||
4388 has_capability('moodle/user:editprofile', $usercontext)) {
4389 $url = new moodle_url('/user/forum.php', array('id' => $user->id
, 'course' => $course->id
));
4390 $useraccount->add(get_string('forumpreferences'), $url, self
::TYPE_SETTING
);
4393 $editors = editors_get_enabled();
4394 if (count($editors) > 1) {
4395 if (isloggedin() && !isguestuser($user) && !is_mnet_remote_user($user)) {
4396 if ($currentuser && has_capability('moodle/user:editownprofile', $systemcontext) ||
4397 has_capability('moodle/user:editprofile', $usercontext)) {
4398 $url = new moodle_url('/user/editor.php', array('id' => $user->id
, 'course' => $course->id
));
4399 $useraccount->add(get_string('editorpreferences'), $url, self
::TYPE_SETTING
);
4404 // View the roles settings.
4405 if (has_any_capability(array('moodle/role:assign', 'moodle/role:safeoverride', 'moodle/role:override',
4406 'moodle/role:manage'), $usercontext)) {
4407 $roles = $usersetting->add(get_string('roles'), null, self
::TYPE_SETTING
);
4409 $url = new moodle_url('/admin/roles/usersroles.php', array('userid'=>$user->id
, 'courseid'=>$course->id
));
4410 $roles->add(get_string('thisusersroles', 'role'), $url, self
::TYPE_SETTING
);
4412 $assignableroles = get_assignable_roles($usercontext, ROLENAME_BOTH
);
4414 if (!empty($assignableroles)) {
4415 $url = new moodle_url('/admin/roles/assign.php',
4416 array('contextid' => $usercontext->id
, 'userid' => $user->id
, 'courseid' => $course->id
));
4417 $roles->add(get_string('assignrolesrelativetothisuser', 'role'), $url, self
::TYPE_SETTING
);
4420 if (has_capability('moodle/role:review', $usercontext) ||
count(get_overridable_roles($usercontext, ROLENAME_BOTH
))>0) {
4421 $url = new moodle_url('/admin/roles/permissions.php',
4422 array('contextid' => $usercontext->id
, 'userid' => $user->id
, 'courseid' => $course->id
));
4423 $roles->add(get_string('permissions', 'role'), $url, self
::TYPE_SETTING
);
4426 $url = new moodle_url('/admin/roles/check.php',
4427 array('contextid' => $usercontext->id
, 'userid' => $user->id
, 'courseid' => $course->id
));
4428 $roles->add(get_string('checkpermissions', 'role'), $url, self
::TYPE_SETTING
);
4432 if (!$this->cache
->cached('contexthasrepos'.$usercontext->id
)) {
4433 require_once($CFG->dirroot
. '/repository/lib.php');
4434 $editabletypes = repository
::get_editable_types($usercontext);
4435 $haseditabletypes = !empty($editabletypes);
4436 unset($editabletypes);
4437 $this->cache
->set('contexthasrepos'.$usercontext->id
, $haseditabletypes);
4439 $haseditabletypes = $this->cache
->{'contexthasrepos'.$usercontext->id
};
4441 if ($haseditabletypes) {
4442 $repositories = $usersetting->add(get_string('repositories', 'repository'), null, self
::TYPE_SETTING
);
4443 $repositories->add(get_string('manageinstances', 'repository'), new moodle_url('/repository/manage_instances.php',
4444 array('contextid' => $usercontext->id
)));
4448 if ($currentuser && !empty($CFG->enableportfolios
) && has_capability('moodle/portfolio:export', $systemcontext)) {
4449 require_once($CFG->libdir
. '/portfoliolib.php');
4450 if (portfolio_has_visible_instances()) {
4451 $portfolio = $usersetting->add(get_string('portfolios', 'portfolio'), null, self
::TYPE_SETTING
);
4453 $url = new moodle_url('/user/portfolio.php', array('courseid'=>$course->id
));
4454 $portfolio->add(get_string('configure', 'portfolio'), $url, self
::TYPE_SETTING
);
4456 $url = new moodle_url('/user/portfoliologs.php', array('courseid'=>$course->id
));
4457 $portfolio->add(get_string('logs', 'portfolio'), $url, self
::TYPE_SETTING
);
4461 $enablemanagetokens = false;
4462 if (!empty($CFG->enablerssfeeds
)) {
4463 $enablemanagetokens = true;
4464 } else if (!is_siteadmin($USER->id
)
4465 && !empty($CFG->enablewebservices
)
4466 && has_capability('moodle/webservice:createtoken', context_system
::instance()) ) {
4467 $enablemanagetokens = true;
4470 if ($currentuser && $enablemanagetokens) {
4471 $url = new moodle_url('/user/managetoken.php', array('sesskey'=>sesskey()));
4472 $useraccount->add(get_string('securitykeys', 'webservice'), $url, self
::TYPE_SETTING
);
4476 if (($currentuser && has_capability('moodle/user:editownmessageprofile', $systemcontext)) ||
(!isguestuser($user) &&
4477 has_capability('moodle/user:editmessageprofile', $usercontext) && !is_primary_admin($user->id
))) {
4478 $url = new moodle_url('/message/edit.php', array('id'=>$user->id
));
4479 $useraccount->add(get_string('messaging', 'message'), $url, self
::TYPE_SETTING
);
4483 if ($currentuser && !empty($CFG->enableblogs
)) {
4484 $blog = $usersetting->add(get_string('blogs', 'blog'), null, navigation_node
::TYPE_CONTAINER
, null, 'blogs');
4485 if (has_capability('moodle/blog:view', $systemcontext)) {
4486 $blog->add(get_string('preferences', 'blog'), new moodle_url('/blog/preferences.php'),
4487 navigation_node
::TYPE_SETTING
);
4489 if (!empty($CFG->useexternalblogs
) && $CFG->maxexternalblogsperuser
> 0 &&
4490 has_capability('moodle/blog:manageexternal', $systemcontext)) {
4491 $blog->add(get_string('externalblogs', 'blog'), new moodle_url('/blog/external_blogs.php'),
4492 navigation_node
::TYPE_SETTING
);
4493 $blog->add(get_string('addnewexternalblog', 'blog'), new moodle_url('/blog/external_blog_edit.php'),
4494 navigation_node
::TYPE_SETTING
);
4496 // Remove the blog node if empty.
4497 $blog->trim_if_empty();
4501 if ($currentuser && !empty($CFG->enablebadges
)) {
4502 $badges = $usersetting->add(get_string('badges'), null, navigation_node
::TYPE_CONTAINER
, null, 'badges');
4503 $badges->add(get_string('preferences', 'badges'), new moodle_url('/badges/preferences.php'),
4504 navigation_node
::TYPE_SETTING
);
4505 if (!empty($CFG->badges_allowexternalbackpack
)) {
4506 $badges->add(get_string('backpackdetails', 'badges'), new moodle_url('/badges/mybackpack.php'),
4507 navigation_node
::TYPE_SETTING
);
4512 if (!$user->deleted
and !$currentuser && !\core\session\manager
::is_loggedinas() &&
4513 has_capability('moodle/user:loginas', $coursecontext) && !is_siteadmin($user->id
)) {
4514 $url = new moodle_url('/course/loginas.php', array('id'=>$course->id
, 'user'=>$user->id
, 'sesskey'=>sesskey()));
4515 $useraccount->add(get_string('loginas'), $url, self
::TYPE_SETTING
);
4518 // Let admin tools hook into user settings navigation.
4519 $tools = get_plugin_list_with_function('tool', 'extend_navigation_user_settings', 'lib.php');
4520 foreach ($tools as $toolfunction) {
4521 $toolfunction($usersetting, $user, $usercontext, $course, $coursecontext);
4524 return $usersetting;
4528 * Loads block specific settings in the navigation
4530 * @return navigation_node
4532 protected function load_block_settings() {
4535 $blocknode = $this->add($this->context
->get_context_name(), null, self
::TYPE_SETTING
, null, 'blocksettings');
4536 $blocknode->force_open();
4538 // Assign local roles
4539 $assignurl = new moodle_url('/'.$CFG->admin
.'/roles/assign.php', array('contextid'=>$this->context
->id
));
4540 $blocknode->add(get_string('assignroles', 'role'), $assignurl, self
::TYPE_SETTING
);
4543 if (has_capability('moodle/role:review', $this->context
) or count(get_overridable_roles($this->context
))>0) {
4544 $url = new moodle_url('/'.$CFG->admin
.'/roles/permissions.php', array('contextid'=>$this->context
->id
));
4545 $blocknode->add(get_string('permissions', 'role'), $url, self
::TYPE_SETTING
);
4547 // Check role permissions
4548 if (has_any_capability(array('moodle/role:assign', 'moodle/role:safeoverride','moodle/role:override', 'moodle/role:assign'), $this->context
)) {
4549 $url = new moodle_url('/'.$CFG->admin
.'/roles/check.php', array('contextid'=>$this->context
->id
));
4550 $blocknode->add(get_string('checkpermissions', 'role'), $url, self
::TYPE_SETTING
);
4557 * Loads category specific settings in the navigation
4559 * @return navigation_node
4561 protected function load_category_settings() {
4564 // We can land here while being in the context of a block, in which case we
4565 // should get the parent context which should be the category one. See self::initialise().
4566 if ($this->context
->contextlevel
== CONTEXT_BLOCK
) {
4567 $catcontext = $this->context
->get_parent_context();
4569 $catcontext = $this->context
;
4572 // Let's make sure that we always have the right context when getting here.
4573 if ($catcontext->contextlevel
!= CONTEXT_COURSECAT
) {
4574 throw new coding_exception('Unexpected context while loading category settings.');
4577 $categorynode = $this->add($catcontext->get_context_name(), null, null, null, 'categorysettings');
4578 $categorynode->force_open();
4580 if (can_edit_in_category($catcontext->instanceid
)) {
4581 $url = new moodle_url('/course/management.php', array('categoryid' => $catcontext->instanceid
));
4582 $editstring = get_string('managecategorythis');
4583 $categorynode->add($editstring, $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/edit', ''));
4586 if (has_capability('moodle/category:manage', $catcontext)) {
4587 $editurl = new moodle_url('/course/editcategory.php', array('id' => $catcontext->instanceid
));
4588 $categorynode->add(get_string('editcategorythis'), $editurl, self
::TYPE_SETTING
, null, 'edit', new pix_icon('i/edit', ''));
4590 $addsubcaturl = new moodle_url('/course/editcategory.php', array('parent' => $catcontext->instanceid
));
4591 $categorynode->add(get_string('addsubcategory'), $addsubcaturl, self
::TYPE_SETTING
, null, 'addsubcat', new pix_icon('i/withsubcat', ''));
4594 // Assign local roles
4595 $assignableroles = get_assignable_roles($catcontext);
4596 if (!empty($assignableroles)) {
4597 $assignurl = new moodle_url('/'.$CFG->admin
.'/roles/assign.php', array('contextid' => $catcontext->id
));
4598 $categorynode->add(get_string('assignroles', 'role'), $assignurl, self
::TYPE_SETTING
, null, 'roles', new pix_icon('i/assignroles', ''));
4602 if (has_capability('moodle/role:review', $catcontext) or count(get_overridable_roles($catcontext)) > 0) {
4603 $url = new moodle_url('/'.$CFG->admin
.'/roles/permissions.php', array('contextid' => $catcontext->id
));
4604 $categorynode->add(get_string('permissions', 'role'), $url, self
::TYPE_SETTING
, null, 'permissions', new pix_icon('i/permissions', ''));
4606 // Check role permissions
4607 if (has_any_capability(array('moodle/role:assign', 'moodle/role:safeoverride',
4608 'moodle/role:override', 'moodle/role:assign'), $catcontext)) {
4609 $url = new moodle_url('/'.$CFG->admin
.'/roles/check.php', array('contextid' => $catcontext->id
));
4610 $categorynode->add(get_string('checkpermissions', 'role'), $url, self
::TYPE_SETTING
, null, 'checkpermissions', new pix_icon('i/checkpermissions', ''));
4614 if (has_any_capability(array('moodle/cohort:view', 'moodle/cohort:manage'), $catcontext)) {
4615 $categorynode->add(get_string('cohorts', 'cohort'), new moodle_url('/cohort/index.php',
4616 array('contextid' => $catcontext->id
)), self
::TYPE_SETTING
, null, 'cohort', new pix_icon('i/cohort', ''));
4620 if (has_capability('moodle/filter:manage', $catcontext) && count(filter_get_available_in_context($catcontext)) > 0) {
4621 $url = new moodle_url('/filter/manage.php', array('contextid' => $catcontext->id
));
4622 $categorynode->add(get_string('filters', 'admin'), $url, self
::TYPE_SETTING
, null, 'filters', new pix_icon('i/filter', ''));
4626 if (has_capability('moodle/course:create', $catcontext)) {
4627 $url = new moodle_url('/backup/restorefile.php', array('contextid' => $catcontext->id
));
4628 $categorynode->add(get_string('restorecourse', 'admin'), $url, self
::TYPE_SETTING
, null, 'restorecourse', new pix_icon('i/restore', ''));
4631 return $categorynode;
4635 * Determine whether the user is assuming another role
4637 * This function checks to see if the user is assuming another role by means of
4638 * role switching. In doing this we compare each RSW key (context path) against
4639 * the current context path. This ensures that we can provide the switching
4640 * options against both the course and any page shown under the course.
4642 * @return bool|int The role(int) if the user is in another role, false otherwise
4644 protected function in_alternative_role() {
4646 if (!empty($USER->access
['rsw']) && is_array($USER->access
['rsw'])) {
4647 if (!empty($this->page
->context
) && !empty($USER->access
['rsw'][$this->page
->context
->path
])) {
4648 return $USER->access
['rsw'][$this->page
->context
->path
];
4650 foreach ($USER->access
['rsw'] as $key=>$role) {
4651 if (strpos($this->context
->path
,$key)===0) {
4660 * This function loads all of the front page settings into the settings navigation.
4661 * This function is called when the user is on the front page, or $COURSE==$SITE
4662 * @param bool $forceopen (optional)
4663 * @return navigation_node
4665 protected function load_front_page_settings($forceopen = false) {
4668 $course = clone($SITE);
4669 $coursecontext = context_course
::instance($course->id
); // Course context
4671 $frontpage = $this->add(get_string('frontpagesettings'), null, self
::TYPE_SETTING
, null, 'frontpage');
4673 $frontpage->force_open();
4675 $frontpage->id
= 'frontpagesettings';
4677 if ($this->page
->user_allowed_editing()) {
4679 // Add the turn on/off settings
4680 $url = new moodle_url('/course/view.php', array('id'=>$course->id
, 'sesskey'=>sesskey()));
4681 if ($this->page
->user_is_editing()) {
4682 $url->param('edit', 'off');
4683 $editstring = get_string('turneditingoff');
4685 $url->param('edit', 'on');
4686 $editstring = get_string('turneditingon');
4688 $frontpage->add($editstring, $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/edit', ''));
4691 if (has_capability('moodle/course:update', $coursecontext)) {
4692 // Add the course settings link
4693 $url = new moodle_url('/admin/settings.php', array('section'=>'frontpagesettings'));
4694 $frontpage->add(get_string('editsettings'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/settings', ''));
4698 enrol_add_course_navigation($frontpage, $course);
4701 if (has_capability('moodle/filter:manage', $coursecontext) && count(filter_get_available_in_context($coursecontext))>0) {
4702 $url = new moodle_url('/filter/manage.php', array('contextid'=>$coursecontext->id
));
4703 $frontpage->add(get_string('filters', 'admin'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/filter', ''));
4706 // View course reports.
4707 if (has_capability('moodle/site:viewreports', $coursecontext)) { // Basic capability for listing of reports.
4708 $frontpagenav = $frontpage->add(get_string('reports'), null, self
::TYPE_CONTAINER
, null, 'frontpagereports',
4709 new pix_icon('i/stats', ''));
4710 $coursereports = core_component
::get_plugin_list('coursereport');
4711 foreach ($coursereports as $report=>$dir) {
4712 $libfile = $CFG->dirroot
.'/course/report/'.$report.'/lib.php';
4713 if (file_exists($libfile)) {
4714 require_once($libfile);
4715 $reportfunction = $report.'_report_extend_navigation';
4716 if (function_exists($report.'_report_extend_navigation')) {
4717 $reportfunction($frontpagenav, $course, $coursecontext);
4722 $reports = get_plugin_list_with_function('report', 'extend_navigation_course', 'lib.php');
4723 foreach ($reports as $reportfunction) {
4724 $reportfunction($frontpagenav, $course, $coursecontext);
4728 // Backup this course
4729 if (has_capability('moodle/backup:backupcourse', $coursecontext)) {
4730 $url = new moodle_url('/backup/backup.php', array('id'=>$course->id
));
4731 $frontpage->add(get_string('backup'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/backup', ''));
4734 // Restore to this course
4735 if (has_capability('moodle/restore:restorecourse', $coursecontext)) {
4736 $url = new moodle_url('/backup/restorefile.php', array('contextid'=>$coursecontext->id
));
4737 $frontpage->add(get_string('restore'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/restore', ''));
4741 require_once($CFG->libdir
. '/questionlib.php');
4742 question_extend_settings_navigation($frontpage, $coursecontext)->trim_if_empty();
4745 if ($course->legacyfiles
== 2 and has_capability('moodle/course:managefiles', $this->context
)) {
4746 //hiden in new installs
4747 $url = new moodle_url('/files/index.php', array('contextid'=>$coursecontext->id
));
4748 $frontpage->add(get_string('sitelegacyfiles'), $url, self
::TYPE_SETTING
, null, null, new pix_icon('i/folder', ''));
4751 // Let admin tools hook into frontpage navigation.
4752 $tools = get_plugin_list_with_function('tool', 'extend_navigation_frontpage', 'lib.php');
4753 foreach ($tools as $toolfunction) {
4754 $toolfunction($frontpage, $course, $coursecontext);
4761 * This function gives local plugins an opportunity to modify the settings navigation.
4763 protected function load_local_plugin_settings() {
4765 foreach (core_component
::get_plugin_list_with_file('local', 'lib.php', true) as $plugin => $unused) {
4766 $function = "local_{$plugin}_extend_settings_navigation";
4767 $oldfunction = "local_{$plugin}_extends_settings_navigation";
4769 if (function_exists($function)) {
4770 $function($this, $this->context
);
4772 } else if (function_exists($oldfunction)) {
4773 debugging("Deprecated local plugin navigation callback: Please rename '{$oldfunction}' to '{$function}'. ".
4774 "Support for the old callback will be dropped in Moodle 3.1", DEBUG_DEVELOPER
);
4775 $oldfunction($this, $this->context
);
4781 * This function marks the cache as volatile so it is cleared during shutdown
4783 public function clear_cache() {
4784 $this->cache
->volatile();
4789 * Class used to populate site admin navigation for ajax.
4792 * @category navigation
4793 * @copyright 2013 Rajesh Taneja <rajesh@moodle.com>
4794 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4796 class settings_navigation_ajax
extends settings_navigation
{
4798 * Constructs the navigation for use in an AJAX request
4800 * @param moodle_page $page
4802 public function __construct(moodle_page
&$page) {
4803 $this->page
= $page;
4804 $this->cache
= new navigation_cache(NAVIGATION_CACHE_NAME
);
4805 $this->children
= new navigation_node_collection();
4806 $this->initialise();
4810 * Initialise the site admin navigation.
4812 * @return array An array of the expandable nodes
4814 public function initialise() {
4815 if ($this->initialised ||
during_initial_install()) {
4818 $this->context
= $this->page
->context
;
4819 $this->load_administration_settings();
4821 // Check if local plugins is adding node to site admin.
4822 $this->load_local_plugin_settings();
4824 $this->initialised
= true;
4829 * Simple class used to output a navigation branch in XML
4832 * @category navigation
4833 * @copyright 2009 Sam Hemelryk
4834 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4836 class navigation_json
{
4837 /** @var array An array of different node types */
4838 protected $nodetype = array('node','branch');
4839 /** @var array An array of node keys and types */
4840 protected $expandable = array();
4842 * Turns a branch and all of its children into XML
4844 * @param navigation_node $branch
4845 * @return string XML string
4847 public function convert($branch) {
4848 $xml = $this->convert_child($branch);
4852 * Set the expandable items in the array so that we have enough information
4853 * to attach AJAX events
4854 * @param array $expandable
4856 public function set_expandable($expandable) {
4857 foreach ($expandable as $node) {
4858 $this->expandable
[$node['key'].':'.$node['type']] = $node;
4862 * Recusively converts a child node and its children to XML for output
4864 * @param navigation_node $child The child to convert
4865 * @param int $depth Pointlessly used to track the depth of the XML structure
4866 * @return string JSON
4868 protected function convert_child($child, $depth=1) {
4869 if (!$child->display
) {
4872 $attributes = array();
4873 $attributes['id'] = $child->id
;
4874 $attributes['name'] = (string)$child->text
; // This can be lang_string object so typecast it.
4875 $attributes['type'] = $child->type
;
4876 $attributes['key'] = $child->key
;
4877 $attributes['class'] = $child->get_css_type();
4879 if ($child->icon
instanceof pix_icon
) {
4880 $attributes['icon'] = array(
4881 'component' => $child->icon
->component
,
4882 'pix' => $child->icon
->pix
,
4884 foreach ($child->icon
->attributes
as $key=>$value) {
4885 if ($key == 'class') {
4886 $attributes['icon']['classes'] = explode(' ', $value);
4887 } else if (!array_key_exists($key, $attributes['icon'])) {
4888 $attributes['icon'][$key] = $value;
4892 } else if (!empty($child->icon
)) {
4893 $attributes['icon'] = (string)$child->icon
;
4896 if ($child->forcetitle ||
$child->title
!== $child->text
) {
4897 $attributes['title'] = htmlentities($child->title
, ENT_QUOTES
, 'UTF-8');
4899 if (array_key_exists($child->key
.':'.$child->type
, $this->expandable
)) {
4900 $attributes['expandable'] = $child->key
;
4901 $child->add_class($this->expandable
[$child->key
.':'.$child->type
]['id']);
4904 if (count($child->classes
)>0) {
4905 $attributes['class'] .= ' '.join(' ',$child->classes
);
4907 if (is_string($child->action
)) {
4908 $attributes['link'] = $child->action
;
4909 } else if ($child->action
instanceof moodle_url
) {
4910 $attributes['link'] = $child->action
->out();
4911 } else if ($child->action
instanceof action_link
) {
4912 $attributes['link'] = $child->action
->url
->out();
4914 $attributes['hidden'] = ($child->hidden
);
4915 $attributes['haschildren'] = ($child->children
->count()>0 ||
$child->type
== navigation_node
::TYPE_CATEGORY
);
4916 $attributes['haschildren'] = $attributes['haschildren'] ||
$child->type
== navigation_node
::TYPE_MY_CATEGORY
;
4918 if ($child->children
->count() > 0) {
4919 $attributes['children'] = array();
4920 foreach ($child->children
as $subchild) {
4921 $attributes['children'][] = $this->convert_child($subchild, $depth+
1);
4928 return json_encode($attributes);
4934 * The cache class used by global navigation and settings navigation.
4936 * It is basically an easy access point to session with a bit of smarts to make
4937 * sure that the information that is cached is valid still.
4941 * if (!$cache->viewdiscussion()) {
4942 * // Code to do stuff and produce cachable content
4943 * $cache->viewdiscussion = has_capability('mod/forum:viewdiscussion', $coursecontext);
4945 * $content = $cache->viewdiscussion;
4949 * @category navigation
4950 * @copyright 2009 Sam Hemelryk
4951 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
4953 class navigation_cache
{
4954 /** @var int represents the time created */
4955 protected $creation;
4956 /** @var array An array of session keys */
4959 * The string to use to segregate this particular cache. It can either be
4960 * unique to start a fresh cache or if you want to share a cache then make
4961 * it the string used in the original cache.
4965 /** @var int a time that the information will time out */
4967 /** @var stdClass The current context */
4968 protected $currentcontext;
4969 /** @var int cache time information */
4970 const CACHETIME
= 0;
4971 /** @var int cache user id */
4972 const CACHEUSERID
= 1;
4973 /** @var int cache value */
4974 const CACHEVALUE
= 2;
4975 /** @var null|array An array of navigation cache areas to expire on shutdown */
4976 public static $volatilecaches;
4979 * Contructor for the cache. Requires two arguments
4981 * @param string $area The string to use to segregate this particular cache
4982 * it can either be unique to start a fresh cache or if you want
4983 * to share a cache then make it the string used in the original
4985 * @param int $timeout The number of seconds to time the information out after
4987 public function __construct($area, $timeout=1800) {
4988 $this->creation
= time();
4989 $this->area
= $area;
4990 $this->timeout
= time() - $timeout;
4991 if (rand(0,100) === 0) {
4992 $this->garbage_collection();
4997 * Used to set up the cache within the SESSION.
4999 * This is called for each access and ensure that we don't put anything into the session before
5002 protected function ensure_session_cache_initialised() {
5004 if (empty($this->session
)) {
5005 if (!isset($SESSION->navcache
)) {
5006 $SESSION->navcache
= new stdClass
;
5008 if (!isset($SESSION->navcache
->{$this->area
})) {
5009 $SESSION->navcache
->{$this->area
} = array();
5011 $this->session
= &$SESSION->navcache
->{$this->area
}; // pointer to array, =& is correct here
5016 * Magic Method to retrieve something by simply calling using = cache->key
5018 * @param mixed $key The identifier for the information you want out again
5019 * @return void|mixed Either void or what ever was put in
5021 public function __get($key) {
5022 if (!$this->cached($key)) {
5025 $information = $this->session
[$key][self
::CACHEVALUE
];
5026 return unserialize($information);
5030 * Magic method that simply uses {@link set();} to store something in the cache
5032 * @param string|int $key
5033 * @param mixed $information
5035 public function __set($key, $information) {
5036 $this->set($key, $information);
5040 * Sets some information against the cache (session) for later retrieval
5042 * @param string|int $key
5043 * @param mixed $information
5045 public function set($key, $information) {
5047 $this->ensure_session_cache_initialised();
5048 $information = serialize($information);
5049 $this->session
[$key]= array(self
::CACHETIME
=>time(), self
::CACHEUSERID
=>$USER->id
, self
::CACHEVALUE
=>$information);
5052 * Check the existence of the identifier in the cache
5054 * @param string|int $key
5057 public function cached($key) {
5059 $this->ensure_session_cache_initialised();
5060 if (!array_key_exists($key, $this->session
) ||
!is_array($this->session
[$key]) ||
$this->session
[$key][self
::CACHEUSERID
]!=$USER->id ||
$this->session
[$key][self
::CACHETIME
] < $this->timeout
) {
5066 * Compare something to it's equivilant in the cache
5068 * @param string $key
5069 * @param mixed $value
5070 * @param bool $serialise Whether to serialise the value before comparison
5071 * this should only be set to false if the value is already
5073 * @return bool If the value is the same false if it is not set or doesn't match
5075 public function compare($key, $value, $serialise = true) {
5076 if ($this->cached($key)) {
5078 $value = serialize($value);
5080 if ($this->session
[$key][self
::CACHEVALUE
] === $value) {
5087 * Wipes the entire cache, good to force regeneration
5089 public function clear() {
5091 unset($SESSION->navcache
);
5092 $this->session
= null;
5095 * Checks all cache entries and removes any that have expired, good ole cleanup
5097 protected function garbage_collection() {
5098 if (empty($this->session
)) {
5101 foreach ($this->session
as $key=>$cachedinfo) {
5102 if (is_array($cachedinfo) && $cachedinfo[self
::CACHETIME
]<$this->timeout
) {
5103 unset($this->session
[$key]);
5109 * Marks the cache as being volatile (likely to change)
5111 * Any caches marked as volatile will be destroyed at the on shutdown by
5112 * {@link navigation_node::destroy_volatile_caches()} which is registered
5113 * as a shutdown function if any caches are marked as volatile.
5115 * @param bool $setting True to destroy the cache false not too
5117 public function volatile($setting = true) {
5118 if (self
::$volatilecaches===null) {
5119 self
::$volatilecaches = array();
5120 core_shutdown_manager
::register_function(array('navigation_cache','destroy_volatile_caches'));
5124 self
::$volatilecaches[$this->area
] = $this->area
;
5125 } else if (array_key_exists($this->area
, self
::$volatilecaches)) {
5126 unset(self
::$volatilecaches[$this->area
]);
5131 * Destroys all caches marked as volatile
5133 * This function is static and works in conjunction with the static volatilecaches
5134 * property of navigation cache.
5135 * Because this function is static it manually resets the cached areas back to an
5138 public static function destroy_volatile_caches() {
5140 if (is_array(self
::$volatilecaches) && count(self
::$volatilecaches)>0) {
5141 foreach (self
::$volatilecaches as $area) {
5142 $SESSION->navcache
->{$area} = array();
5145 $SESSION->navcache
= new stdClass
;