MDL-32508 navigation: show empty sections
[moodle.git] / lib / navigationlib.php
CommitLineData
7d2a0492 1<?php
2
3// This file is part of Moodle - http://moodle.org/
4//
5// Moodle is free software: you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// Moodle is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17
18/**
19 * This file contains classes used to manage the navigation structures in Moodle
20 * and was introduced as part of the changes occuring in Moodle 2.0
21 *
78bfb562
PS
22 * @since 2.0
23 * @package core
78bfb562
PS
24 * @copyright 2009 Sam Hemelryk
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
7d2a0492 26 */
27
78bfb562
PS
28defined('MOODLE_INTERNAL') || die();
29
f5b5a822 30/**
2561c4e9 31 * The name that will be used to separate the navigation cache within SESSION
f5b5a822 32 */
33define('NAVIGATION_CACHE_NAME', 'navigation');
34
7d2a0492 35/**
36 * This class is used to represent a node in a navigation tree
37 *
38 * This class is used to represent a node in a navigation tree within Moodle,
39 * the tree could be one of global navigation, settings navigation, or the navbar.
40 * Each node can be one of two types either a Leaf (default) or a branch.
41 * When a node is first created it is created as a leaf, when/if children are added
42 * the node then becomes a branch.
43 *
31fde54f
AG
44 * @package core
45 * @category navigation
7d2a0492 46 * @copyright 2009 Sam Hemelryk
47 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
48 */
3406acde
SH
49class navigation_node implements renderable {
50 /** @var int Used to identify this node a leaf (default) 0 */
507a7a9a 51 const NODETYPE_LEAF = 0;
3406acde 52 /** @var int Used to identify this node a branch, happens with children 1 */
7d2a0492 53 const NODETYPE_BRANCH = 1;
3406acde 54 /** @var null Unknown node type null */
7d2a0492 55 const TYPE_UNKNOWN = null;
3406acde
SH
56 /** @var int System node type 0 */
57 const TYPE_ROOTNODE = 0;
58 /** @var int System node type 1 */
59 const TYPE_SYSTEM = 1;
60 /** @var int Category node type 10 */
7d2a0492 61 const TYPE_CATEGORY = 10;
3406acde 62 /** @var int Course node type 20 */
7d2a0492 63 const TYPE_COURSE = 20;
3406acde 64 /** @var int Course Structure node type 30 */
507a7a9a 65 const TYPE_SECTION = 30;
3406acde 66 /** @var int Activity node type, e.g. Forum, Quiz 40 */
7d2a0492 67 const TYPE_ACTIVITY = 40;
3406acde 68 /** @var int Resource node type, e.g. Link to a file, or label 50 */
7d2a0492 69 const TYPE_RESOURCE = 50;
3406acde 70 /** @var int A custom node type, default when adding without specifing type 60 */
7d2a0492 71 const TYPE_CUSTOM = 60;
3406acde 72 /** @var int Setting node type, used only within settings nav 70 */
7d2a0492 73 const TYPE_SETTING = 70;
3406acde 74 /** @var int Setting node type, used only within settings nav 80 */
507a7a9a 75 const TYPE_USER = 80;
3406acde
SH
76 /** @var int Setting node type, used for containers of no importance 90 */
77 const TYPE_CONTAINER = 90;
7d2a0492 78
79 /** @var int Parameter to aid the coder in tracking [optional] */
80 public $id = null;
81 /** @var string|int The identifier for the node, used to retrieve the node */
82 public $key = null;
83 /** @var string The text to use for the node */
84 public $text = null;
85 /** @var string Short text to use if requested [optional] */
86 public $shorttext = null;
87 /** @var string The title attribute for an action if one is defined */
88 public $title = null;
89 /** @var string A string that can be used to build a help button */
90 public $helpbutton = null;
3406acde 91 /** @var moodle_url|action_link|null An action for the node (link) */
7d2a0492 92 public $action = null;
f9fc1461 93 /** @var pix_icon The path to an icon to use for this node */
7d2a0492 94 public $icon = null;
95 /** @var int See TYPE_* constants defined for this class */
96 public $type = self::TYPE_UNKNOWN;
97 /** @var int See NODETYPE_* constants defined for this class */
98 public $nodetype = self::NODETYPE_LEAF;
99 /** @var bool If set to true the node will be collapsed by default */
100 public $collapse = false;
101 /** @var bool If set to true the node will be expanded by default */
102 public $forceopen = false;
3406acde 103 /** @var array An array of CSS classes for the node */
7d2a0492 104 public $classes = array();
3406acde 105 /** @var navigation_node_collection An array of child nodes */
7d2a0492 106 public $children = array();
107 /** @var bool If set to true the node will be recognised as active */
108 public $isactive = false;
3406acde 109 /** @var bool If set to true the node will be dimmed */
7d2a0492 110 public $hidden = false;
111 /** @var bool If set to false the node will not be displayed */
112 public $display = true;
113 /** @var bool If set to true then an HR will be printed before the node */
114 public $preceedwithhr = false;
115 /** @var bool If set to true the the navigation bar should ignore this node */
116 public $mainnavonly = false;
117 /** @var bool If set to true a title will be added to the action no matter what */
118 public $forcetitle = false;
d38a4849 119 /** @var navigation_node A reference to the node parent, you should never set this directly you should always call set_parent */
3406acde 120 public $parent = null;
493a48f3
SH
121 /** @var bool Override to not display the icon even if one is provided **/
122 public $hideicon = false;
7d2a0492 123 /** @var array */
b14ae498 124 protected $namedtypes = array(0=>'system',10=>'category',20=>'course',30=>'structure',40=>'activity',50=>'resource',60=>'custom',70=>'setting', 80=>'user');
7d2a0492 125 /** @var moodle_url */
126 protected static $fullmeurl = null;
d9d2817a
SH
127 /** @var bool toogles auto matching of active node */
128 public static $autofindactive = true;
d67e4821 129 /** @var mixed If set to an int, that section will be included even if it has no activities */
130 public $includesectionnum = false;
7d2a0492 131
132 /**
3406acde 133 * Constructs a new navigation_node
7d2a0492 134 *
3406acde
SH
135 * @param array|string $properties Either an array of properties or a string to use
136 * as the text for the node
7d2a0492 137 */
138 public function __construct($properties) {
7d2a0492 139 if (is_array($properties)) {
3406acde
SH
140 // Check the array for each property that we allow to set at construction.
141 // text - The main content for the node
142 // shorttext - A short text if required for the node
143 // icon - The icon to display for the node
144 // type - The type of the node
145 // key - The key to use to identify the node
146 // parent - A reference to the nodes parent
147 // action - The action to attribute to this node, usually a URL to link to
7d2a0492 148 if (array_key_exists('text', $properties)) {
149 $this->text = $properties['text'];
150 }
151 if (array_key_exists('shorttext', $properties)) {
152 $this->shorttext = $properties['shorttext'];
153 }
7081714d
SH
154 if (!array_key_exists('icon', $properties)) {
155 $properties['icon'] = new pix_icon('i/navigationitem', 'moodle');
156 }
157 $this->icon = $properties['icon'];
158 if ($this->icon instanceof pix_icon) {
159 if (empty($this->icon->attributes['class'])) {
160 $this->icon->attributes['class'] = 'navicon';
161 } else {
162 $this->icon->attributes['class'] .= ' navicon';
7da3a799 163 }
7d2a0492 164 }
165 if (array_key_exists('type', $properties)) {
166 $this->type = $properties['type'];
167 } else {
168 $this->type = self::TYPE_CUSTOM;
169 }
170 if (array_key_exists('key', $properties)) {
171 $this->key = $properties['key'];
172 }
3406acde
SH
173 // This needs to happen last because of the check_if_active call that occurs
174 if (array_key_exists('action', $properties)) {
175 $this->action = $properties['action'];
176 if (is_string($this->action)) {
177 $this->action = new moodle_url($this->action);
178 }
179 if (self::$autofindactive) {
180 $this->check_if_active();
181 }
182 }
d38a4849
SH
183 if (array_key_exists('parent', $properties)) {
184 $this->set_parent($properties['parent']);
185 }
7d2a0492 186 } else if (is_string($properties)) {
187 $this->text = $properties;
188 }
189 if ($this->text === null) {
190 throw new coding_exception('You must set the text for the node when you create it.');
191 }
3406acde 192 // Default the title to the text
7d2a0492 193 $this->title = $this->text;
3406acde
SH
194 // Instantiate a new navigation node collection for this nodes children
195 $this->children = new navigation_node_collection();
7d2a0492 196 }
197
95b97515 198 /**
3406acde 199 * Checks if this node is the active node.
0baa5d46 200 *
3406acde
SH
201 * This is determined by comparing the action for the node against the
202 * defined URL for the page. A match will see this node marked as active.
0baa5d46 203 *
3406acde
SH
204 * @param int $strength One of URL_MATCH_EXACT, URL_MATCH_PARAMS, or URL_MATCH_BASE
205 * @return bool
7d2a0492 206 */
bf6c37c7 207 public function check_if_active($strength=URL_MATCH_EXACT) {
208 global $FULLME, $PAGE;
3406acde 209 // Set fullmeurl if it hasn't already been set
7d2a0492 210 if (self::$fullmeurl == null) {
bf6c37c7 211 if ($PAGE->has_set_url()) {
3406acde 212 self::override_active_url(new moodle_url($PAGE->url));
bf6c37c7 213 } else {
3406acde 214 self::override_active_url(new moodle_url($FULLME));
7d2a0492 215 }
216 }
bf6c37c7 217
3406acde 218 // Compare the action of this node against the fullmeurl
bf6c37c7 219 if ($this->action instanceof moodle_url && $this->action->compare(self::$fullmeurl, $strength)) {
7d2a0492 220 $this->make_active();
221 return true;
7d2a0492 222 }
223 return false;
224 }
3406acde 225
7d2a0492 226 /**
d0cfbab3
SH
227 * This sets the URL that the URL of new nodes get compared to when locating
228 * the active node.
229 *
230 * The active node is the node that matches the URL set here. By default this
231 * is either $PAGE->url or if that hasn't been set $FULLME.
7d2a0492 232 *
3406acde
SH
233 * @param moodle_url $url The url to use for the fullmeurl.
234 */
235 public static function override_active_url(moodle_url $url) {
633c0843
TH
236 // Clone the URL, in case the calling script changes their URL later.
237 self::$fullmeurl = new moodle_url($url);
3406acde
SH
238 }
239
240 /**
188a8127 241 * Creates a navigation node, ready to add it as a child using add_node
242 * function. (The created node needs to be added before you can use it.)
3406acde
SH
243 * @param string $text
244 * @param moodle_url|action_link $action
245 * @param int $type
246 * @param string $shorttext
247 * @param string|int $key
248 * @param pix_icon $icon
249 * @return navigation_node
7d2a0492 250 */
188a8127 251 public static function create($text, $action=null, $type=self::TYPE_CUSTOM,
252 $shorttext=null, $key=null, pix_icon $icon=null) {
3406acde
SH
253 // Properties array used when creating the new navigation node
254 $itemarray = array(
255 'text' => $text,
256 'type' => $type
257 );
258 // Set the action if one was provided
7d2a0492 259 if ($action!==null) {
260 $itemarray['action'] = $action;
261 }
3406acde 262 // Set the shorttext if one was provided
7d2a0492 263 if ($shorttext!==null) {
264 $itemarray['shorttext'] = $shorttext;
265 }
3406acde 266 // Set the icon if one was provided
7d2a0492 267 if ($icon!==null) {
268 $itemarray['icon'] = $icon;
269 }
3406acde 270 // Set the key
7d2a0492 271 $itemarray['key'] = $key;
188a8127 272 // Construct and return
273 return new navigation_node($itemarray);
274 }
275
276 /**
277 * Adds a navigation node as a child of this node.
278 *
279 * @param string $text
280 * @param moodle_url|action_link $action
281 * @param int $type
282 * @param string $shorttext
283 * @param string|int $key
284 * @param pix_icon $icon
285 * @return navigation_node
286 */
287 public function add($text, $action=null, $type=self::TYPE_CUSTOM, $shorttext=null, $key=null, pix_icon $icon=null) {
288 // Create child node
289 $childnode = self::create($text, $action, $type, $shorttext, $key, $icon);
290
291 // Add the child to end and return
292 return $this->add_node($childnode);
293 }
294
295 /**
296 * Adds a navigation node as a child of this one, given a $node object
297 * created using the create function.
298 * @param navigation_node $childnode Node to add
31fde54f 299 * @param string $beforekey
188a8127 300 * @return navigation_node The added node
301 */
302 public function add_node(navigation_node $childnode, $beforekey=null) {
303 // First convert the nodetype for this node to a branch as it will now have children
304 if ($this->nodetype !== self::NODETYPE_BRANCH) {
305 $this->nodetype = self::NODETYPE_BRANCH;
306 }
3406acde 307 // Set the parent to this node
d38a4849 308 $childnode->set_parent($this);
188a8127 309
310 // Default the key to the number of children if not provided
311 if ($childnode->key === null) {
312 $childnode->key = $this->children->count();
313 }
314
3406acde 315 // Add the child using the navigation_node_collections add method
188a8127 316 $node = $this->children->add($childnode, $beforekey);
317
318 // If added node is a category node or the user is logged in and it's a course
319 // then mark added node as a branch (makes it expandable by AJAX)
320 $type = $childnode->type;
c73e37e0 321 if (($type==self::TYPE_CATEGORY) || (isloggedin() && $type==self::TYPE_COURSE)) {
3406acde 322 $node->nodetype = self::NODETYPE_BRANCH;
7d2a0492 323 }
3406acde 324 // If this node is hidden mark it's children as hidden also
7d2a0492 325 if ($this->hidden) {
3406acde 326 $node->hidden = true;
7d2a0492 327 }
188a8127 328 // Return added node (reference returned by $this->children->add()
3406acde 329 return $node;
7d2a0492 330 }
331
0c2f94e0
TH
332 /**
333 * Return a list of all the keys of all the child nodes.
334 * @return array the keys.
335 */
336 public function get_children_key_list() {
337 return $this->children->get_key_list();
338 }
339
7d2a0492 340 /**
3406acde 341 * Searches for a node of the given type with the given key.
7d2a0492 342 *
3406acde
SH
343 * This searches this node plus all of its children, and their children....
344 * If you know the node you are looking for is a child of this node then please
345 * use the get method instead.
346 *
347 * @param int|string $key The key of the node we are looking for
348 * @param int $type One of navigation_node::TYPE_*
349 * @return navigation_node|false
7d2a0492 350 */
3406acde
SH
351 public function find($key, $type) {
352 return $this->children->find($key, $type);
353 }
354
355 /**
31fde54f 356 * Get the child of this node that has the given key + (optional) type.
3406acde
SH
357 *
358 * If you are looking for a node and want to search all children + thier children
359 * then please use the find method instead.
360 *
361 * @param int|string $key The key of the node we are looking for
362 * @param int $type One of navigation_node::TYPE_*
363 * @return navigation_node|false
364 */
365 public function get($key, $type=null) {
366 return $this->children->get($key, $type);
367 }
368
369 /**
370 * Removes this node.
371 *
372 * @return bool
373 */
374 public function remove() {
375 return $this->parent->children->remove($this->key, $this->type);
376 }
377
378 /**
379 * Checks if this node has or could have any children
380 *
381 * @return bool Returns true if it has children or could have (by AJAX expansion)
382 */
383 public function has_children() {
384 return ($this->nodetype === navigation_node::NODETYPE_BRANCH || $this->children->count()>0);
385 }
386
387 /**
388 * Marks this node as active and forces it open.
d0cfbab3
SH
389 *
390 * Important: If you are here because you need to mark a node active to get
93123b17 391 * the navigation to do what you want have you looked at {@link navigation_node::override_active_url()}?
d0cfbab3
SH
392 * You can use it to specify a different URL to match the active navigation node on
393 * rather than having to locate and manually mark a node active.
3406acde
SH
394 */
395 public function make_active() {
396 $this->isactive = true;
397 $this->add_class('active_tree_node');
398 $this->force_open();
399 if ($this->parent !== null) {
400 $this->parent->make_inactive();
401 }
402 }
403
404 /**
405 * Marks a node as inactive and recusised back to the base of the tree
406 * doing the same to all parents.
407 */
408 public function make_inactive() {
409 $this->isactive = false;
410 $this->remove_class('active_tree_node');
411 if ($this->parent !== null) {
412 $this->parent->make_inactive();
7d2a0492 413 }
414 }
415
416 /**
3406acde
SH
417 * Forces this node to be open and at the same time forces open all
418 * parents until the root node.
117bd748 419 *
3406acde
SH
420 * Recursive.
421 */
422 public function force_open() {
423 $this->forceopen = true;
424 if ($this->parent !== null) {
425 $this->parent->force_open();
426 }
427 }
428
429 /**
430 * Adds a CSS class to this node.
431 *
432 * @param string $class
433 * @return bool
7d2a0492 434 */
435 public function add_class($class) {
436 if (!in_array($class, $this->classes)) {
437 $this->classes[] = $class;
438 }
439 return true;
440 }
441
442 /**
3406acde 443 * Removes a CSS class from this node.
7d2a0492 444 *
445 * @param string $class
3406acde 446 * @return bool True if the class was successfully removed.
7d2a0492 447 */
448 public function remove_class($class) {
449 if (in_array($class, $this->classes)) {
450 $key = array_search($class,$this->classes);
451 if ($key!==false) {
452 unset($this->classes[$key]);
453 return true;
454 }
455 }
456 return false;
457 }
458
459 /**
3406acde
SH
460 * Sets the title for this node and forces Moodle to utilise it.
461 * @param string $title
462 */
463 public function title($title) {
464 $this->title = $title;
465 $this->forcetitle = true;
466 }
467
468 /**
469 * Resets the page specific information on this node if it is being unserialised.
470 */
471 public function __wakeup(){
472 $this->forceopen = false;
473 $this->isactive = false;
474 $this->remove_class('active_tree_node');
475 }
476
477 /**
478 * Checks if this node or any of its children contain the active node.
435a512e 479 *
3406acde 480 * Recursive.
7d2a0492 481 *
3406acde 482 * @return bool
7d2a0492 483 */
3406acde
SH
484 public function contains_active_node() {
485 if ($this->isactive) {
7d2a0492 486 return true;
487 } else {
3406acde
SH
488 foreach ($this->children as $child) {
489 if ($child->isactive || $child->contains_active_node()) {
490 return true;
491 }
492 }
7d2a0492 493 }
3406acde 494 return false;
7d2a0492 495 }
496
497 /**
3406acde
SH
498 * Finds the active node.
499 *
500 * Searches this nodes children plus all of the children for the active node
501 * and returns it if found.
7d2a0492 502 *
3406acde
SH
503 * Recursive.
504 *
505 * @return navigation_node|false
7d2a0492 506 */
3406acde
SH
507 public function find_active_node() {
508 if ($this->isactive) {
509 return $this;
510 } else {
7d2a0492 511 foreach ($this->children as &$child) {
3406acde
SH
512 $outcome = $child->find_active_node();
513 if ($outcome !== false) {
514 return $outcome;
7d2a0492 515 }
516 }
7d2a0492 517 }
3406acde 518 return false;
7d2a0492 519 }
520
7c4efe3b
SH
521 /**
522 * Searches all children for the best matching active node
523 * @return navigation_node|false
524 */
525 public function search_for_active_node() {
526 if ($this->check_if_active(URL_MATCH_BASE)) {
527 return $this;
528 } else {
529 foreach ($this->children as &$child) {
530 $outcome = $child->search_for_active_node();
531 if ($outcome !== false) {
532 return $outcome;
533 }
534 }
535 }
536 return false;
537 }
538
7d2a0492 539 /**
3406acde 540 * Gets the content for this node.
7d2a0492 541 *
3406acde
SH
542 * @param bool $shorttext If true shorttext is used rather than the normal text
543 * @return string
7d2a0492 544 */
3406acde 545 public function get_content($shorttext=false) {
7d2a0492 546 if ($shorttext && $this->shorttext!==null) {
3406acde 547 return format_string($this->shorttext);
7d2a0492 548 } else {
3406acde 549 return format_string($this->text);
1c4eef57 550 }
3406acde 551 }
1c4eef57 552
3406acde
SH
553 /**
554 * Gets the title to use for this node.
435a512e 555 *
3406acde
SH
556 * @return string
557 */
558 public function get_title() {
bbfa9be0 559 if ($this->forcetitle || $this->action != null){
3406acde
SH
560 return $this->title;
561 } else {
9bf16314
PS
562 return '';
563 }
7d2a0492 564 }
117bd748 565
7d2a0492 566 /**
3406acde 567 * Gets the CSS class to add to this node to describe its type
435a512e 568 *
7d2a0492 569 * @return string
570 */
571 public function get_css_type() {
572 if (array_key_exists($this->type, $this->namedtypes)) {
573 return 'type_'.$this->namedtypes[$this->type];
574 }
575 return 'type_unknown';
576 }
577
578 /**
3406acde 579 * Finds all nodes that are expandable by AJAX
7d2a0492 580 *
3406acde 581 * @param array $expandable An array by reference to populate with expandable nodes.
7d2a0492 582 */
3406acde 583 public function find_expandable(array &$expandable) {
3406acde 584 foreach ($this->children as &$child) {
8ad24c1a 585 if ($child->nodetype == self::NODETYPE_BRANCH && $child->children->count() == 0 && $child->display) {
3406acde
SH
586 $child->id = 'expandable_branch_'.(count($expandable)+1);
587 $this->add_class('canexpand');
8ad24c1a 588 $expandable[] = array('id' => $child->id, 'key' => $child->key, 'type' => $child->type);
7d2a0492 589 }
3406acde 590 $child->find_expandable($expandable);
7d2a0492 591 }
7d2a0492 592 }
88f77c3c 593
4766a50c
SH
594 /**
595 * Finds all nodes of a given type (recursive)
596 *
31fde54f 597 * @param int $type One of navigation_node::TYPE_*
4766a50c
SH
598 * @return array
599 */
88f77c3c
SH
600 public function find_all_of_type($type) {
601 $nodes = $this->children->type($type);
602 foreach ($this->children as &$node) {
603 $childnodes = $node->find_all_of_type($type);
604 $nodes = array_merge($nodes, $childnodes);
605 }
606 return $nodes;
607 }
56ed242b
SH
608
609 /**
610 * Removes this node if it is empty
611 */
612 public function trim_if_empty() {
613 if ($this->children->count() == 0) {
614 $this->remove();
615 }
616 }
617
618 /**
619 * Creates a tab representation of this nodes children that can be used
620 * with print_tabs to produce the tabs on a page.
621 *
622 * call_user_func_array('print_tabs', $node->get_tabs_array());
623 *
624 * @param array $inactive
625 * @param bool $return
626 * @return array Array (tabs, selected, inactive, activated, return)
627 */
628 public function get_tabs_array(array $inactive=array(), $return=false) {
629 $tabs = array();
630 $rows = array();
631 $selected = null;
632 $activated = array();
633 foreach ($this->children as $node) {
634 $tabs[] = new tabobject($node->key, $node->action, $node->get_content(), $node->get_title());
635 if ($node->contains_active_node()) {
636 if ($node->children->count() > 0) {
637 $activated[] = $node->key;
638 foreach ($node->children as $child) {
639 if ($child->contains_active_node()) {
640 $selected = $child->key;
641 }
642 $rows[] = new tabobject($child->key, $child->action, $child->get_content(), $child->get_title());
643 }
644 } else {
645 $selected = $node->key;
646 }
647 }
648 }
649 return array(array($tabs, $rows), $selected, $inactive, $activated, $return);
650 }
d38a4849
SH
651
652 /**
653 * Sets the parent for this node and if this node is active ensures that the tree is properly
654 * adjusted as well.
655 *
656 * @param navigation_node $parent
657 */
658 public function set_parent(navigation_node $parent) {
659 // Set the parent (thats the easy part)
660 $this->parent = $parent;
661 // Check if this node is active (this is checked during construction)
662 if ($this->isactive) {
663 // Force all of the parent nodes open so you can see this node
664 $this->parent->force_open();
665 // Make all parents inactive so that its clear where we are.
666 $this->parent->make_inactive();
667 }
668 }
3406acde 669}
7d2a0492 670
3406acde
SH
671/**
672 * Navigation node collection
673 *
674 * This class is responsible for managing a collection of navigation nodes.
675 * It is required because a node's unique identifier is a combination of both its
676 * key and its type.
677 *
678 * Originally an array was used with a string key that was a combination of the two
679 * however it was decided that a better solution would be to use a class that
680 * implements the standard IteratorAggregate interface.
681 *
31fde54f
AG
682 * @package core
683 * @category navigation
3406acde
SH
684 * @copyright 2010 Sam Hemelryk
685 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
686 */
687class navigation_node_collection implements IteratorAggregate {
7d2a0492 688 /**
3406acde
SH
689 * A multidimensional array to where the first key is the type and the second
690 * key is the nodes key.
691 * @var array
7d2a0492 692 */
3406acde 693 protected $collection = array();
7d2a0492 694 /**
3406acde
SH
695 * An array that contains references to nodes in the same order they were added.
696 * This is maintained as a progressive array.
697 * @var array
7d2a0492 698 */
3406acde 699 protected $orderedcollection = array();
da3ab9c4 700 /**
3406acde
SH
701 * A reference to the last node that was added to the collection
702 * @var navigation_node
da3ab9c4 703 */
3406acde 704 protected $last = null;
6644741d 705 /**
3406acde
SH
706 * The total number of items added to this array.
707 * @var int
6644741d 708 */
3406acde 709 protected $count = 0;
0c2f94e0 710
7d2a0492 711 /**
3406acde 712 * Adds a navigation node to the collection
7d2a0492 713 *
188a8127 714 * @param navigation_node $node Node to add
715 * @param string $beforekey If specified, adds before a node with this key,
716 * otherwise adds at end
717 * @return navigation_node Added node
7d2a0492 718 */
188a8127 719 public function add(navigation_node $node, $beforekey=null) {
3406acde
SH
720 global $CFG;
721 $key = $node->key;
722 $type = $node->type;
188a8127 723
3406acde
SH
724 // First check we have a 2nd dimension for this type
725 if (!array_key_exists($type, $this->orderedcollection)) {
726 $this->orderedcollection[$type] = array();
7d2a0492 727 }
3406acde
SH
728 // Check for a collision and report if debugging is turned on
729 if ($CFG->debug && array_key_exists($key, $this->orderedcollection[$type])) {
730 debugging('Navigation node intersect: Adding a node that already exists '.$key, DEBUG_DEVELOPER);
7d2a0492 731 }
188a8127 732
733 // Find the key to add before
734 $newindex = $this->count;
735 $last = true;
736 if ($beforekey !== null) {
737 foreach ($this->collection as $index => $othernode) {
738 if ($othernode->key === $beforekey) {
739 $newindex = $index;
740 $last = false;
741 break;
742 }
743 }
744 if ($newindex === $this->count) {
188a8127 745 debugging('Navigation node add_before: Reference node not found ' . $beforekey .
0c2f94e0 746 ', options: ' . implode(' ', $this->get_key_list()), DEBUG_DEVELOPER);
188a8127 747 }
748 }
749
750 // Add the node to the appropriate place in the by-type structure (which
751 // is not ordered, despite the variable name)
3406acde 752 $this->orderedcollection[$type][$key] = $node;
188a8127 753 if (!$last) {
754 // Update existing references in the ordered collection (which is the
755 // one that isn't called 'ordered') to shuffle them along if required
756 for ($oldindex = $this->count; $oldindex > $newindex; $oldindex--) {
757 $this->collection[$oldindex] = $this->collection[$oldindex - 1];
758 }
759 }
3406acde 760 // Add a reference to the node to the progressive collection.
188a8127 761 $this->collection[$newindex] = &$this->orderedcollection[$type][$key];
3406acde
SH
762 // Update the last property to a reference to this new node.
763 $this->last = &$this->orderedcollection[$type][$key];
5436561c 764
188a8127 765 // Reorder the array by index if needed
766 if (!$last) {
767 ksort($this->collection);
188a8127 768 }
3406acde
SH
769 $this->count++;
770 // Return the reference to the now added node
188a8127 771 return $node;
7d2a0492 772 }
773
0c2f94e0
TH
774 /**
775 * Return a list of all the keys of all the nodes.
776 * @return array the keys.
777 */
778 public function get_key_list() {
779 $keys = array();
780 foreach ($this->collection as $node) {
781 $keys[] = $node->key;
782 }
783 return $keys;
784 }
785
7d2a0492 786 /**
3406acde 787 * Fetches a node from this collection.
7d2a0492 788 *
3406acde
SH
789 * @param string|int $key The key of the node we want to find.
790 * @param int $type One of navigation_node::TYPE_*.
791 * @return navigation_node|null
7d2a0492 792 */
3406acde
SH
793 public function get($key, $type=null) {
794 if ($type !== null) {
795 // If the type is known then we can simply check and fetch
796 if (!empty($this->orderedcollection[$type][$key])) {
797 return $this->orderedcollection[$type][$key];
798 }
799 } else {
800 // Because we don't know the type we look in the progressive array
801 foreach ($this->collection as $node) {
802 if ($node->key === $key) {
803 return $node;
7d2a0492 804 }
805 }
806 }
807 return false;
808 }
0c2f94e0 809
7d2a0492 810 /**
3406acde 811 * Searches for a node with matching key and type.
7d2a0492 812 *
3406acde
SH
813 * This function searches both the nodes in this collection and all of
814 * the nodes in each collection belonging to the nodes in this collection.
7d2a0492 815 *
3406acde 816 * Recursive.
7d2a0492 817 *
3406acde
SH
818 * @param string|int $key The key of the node we want to find.
819 * @param int $type One of navigation_node::TYPE_*.
820 * @return navigation_node|null
7d2a0492 821 */
3406acde
SH
822 public function find($key, $type=null) {
823 if ($type !== null && array_key_exists($type, $this->orderedcollection) && array_key_exists($key, $this->orderedcollection[$type])) {
824 return $this->orderedcollection[$type][$key];
825 } else {
826 $nodes = $this->getIterator();
827 // Search immediate children first
828 foreach ($nodes as &$node) {
d9219fc9 829 if ($node->key === $key && ($type === null || $type === $node->type)) {
3406acde 830 return $node;
d926f4b1 831 }
3406acde
SH
832 }
833 // Now search each childs children
834 foreach ($nodes as &$node) {
835 $result = $node->children->find($key, $type);
836 if ($result !== false) {
837 return $result;
d926f4b1 838 }
7d2a0492 839 }
840 }
841 return false;
842 }
843
d926f4b1 844 /**
3406acde 845 * Fetches the last node that was added to this collection
435a512e 846 *
3406acde 847 * @return navigation_node
d926f4b1 848 */
3406acde
SH
849 public function last() {
850 return $this->last;
851 }
0c2f94e0 852
3406acde
SH
853 /**
854 * Fetches all nodes of a given type from this collection
31fde54f
AG
855 *
856 * @param string|int $type node type being searched for.
857 * @return array ordered collection
3406acde
SH
858 */
859 public function type($type) {
860 if (!array_key_exists($type, $this->orderedcollection)) {
861 $this->orderedcollection[$type] = array();
d926f4b1 862 }
3406acde 863 return $this->orderedcollection[$type];
d926f4b1 864 }
7d2a0492 865 /**
3406acde 866 * Removes the node with the given key and type from the collection
7d2a0492 867 *
31fde54f 868 * @param string|int $key The key of the node we want to find.
3406acde
SH
869 * @param int $type
870 * @return bool
7d2a0492 871 */
3406acde
SH
872 public function remove($key, $type=null) {
873 $child = $this->get($key, $type);
874 if ($child !== false) {
875 foreach ($this->collection as $colkey => $node) {
876 if ($node->key == $key && $node->type == $type) {
877 unset($this->collection[$colkey]);
878 break;
879 }
7d2a0492 880 }
3406acde
SH
881 unset($this->orderedcollection[$child->type][$child->key]);
882 $this->count--;
883 return true;
7d2a0492 884 }
3406acde 885 return false;
7d2a0492 886 }
887
9da1ec27 888 /**
3406acde 889 * Gets the number of nodes in this collection
e26507b3
SH
890 *
891 * This option uses an internal count rather than counting the actual options to avoid
892 * a performance hit through the count function.
893 *
3406acde 894 * @return int
7d2a0492 895 */
3406acde 896 public function count() {
e26507b3 897 return $this->count;
7d2a0492 898 }
7d2a0492 899 /**
3406acde 900 * Gets an array iterator for the collection.
7d2a0492 901 *
3406acde
SH
902 * This is required by the IteratorAggregator interface and is used by routines
903 * such as the foreach loop.
7d2a0492 904 *
3406acde 905 * @return ArrayIterator
7d2a0492 906 */
3406acde
SH
907 public function getIterator() {
908 return new ArrayIterator($this->collection);
7d2a0492 909 }
910}
911
912/**
913 * The global navigation class used for... the global navigation
914 *
915 * This class is used by PAGE to store the global navigation for the site
916 * and is then used by the settings nav and navbar to save on processing and DB calls
917 *
918 * See
93123b17 919 * {@link lib/pagelib.php} {@link moodle_page::initialise_theme_and_output()}
31fde54f 920 * {@link lib/ajax/getnavbranch.php} Called by ajax
7d2a0492 921 *
31fde54f
AG
922 * @package core
923 * @category navigation
7d2a0492 924 * @copyright 2009 Sam Hemelryk
925 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
926 */
927class global_navigation extends navigation_node {
31fde54f 928 /** @var moodle_page The Moodle page this navigation object belongs to. */
3406acde 929 protected $page;
31fde54f 930 /** @var bool switch to let us know if the navigation object is initialised*/
7d2a0492 931 protected $initialised = false;
31fde54f 932 /** @var array An array of course information */
3406acde 933 protected $mycourses = array();
31fde54f 934 /** @var array An array for containing root navigation nodes */
3406acde 935 protected $rootnodes = array();
31fde54f 936 /** @var bool A switch for whether to show empty sections in the navigation */
fe221dd5 937 protected $showemptysections = true;
31fde54f 938 /** @var bool A switch for whether courses should be shown within categories on the navigation. */
9bf5af21 939 protected $showcategories = null;
31fde54f 940 /** @var array An array of stdClasses for users that the navigation is extended for */
7a7e209d 941 protected $extendforuser = array();
3406acde
SH
942 /** @var navigation_cache */
943 protected $cache;
31fde54f 944 /** @var array An array of course ids that are present in the navigation */
3406acde 945 protected $addedcourses = array();
31fde54f 946 /** @var array An array of category ids that are included in the navigation */
e26507b3 947 protected $addedcategories = array();
31fde54f 948 /** @var int expansion limit */
88f77c3c 949 protected $expansionlimit = 0;
31fde54f 950 /** @var int userid to allow parent to see child's profile page navigation */
870815fa 951 protected $useridtouseforparentchecks = 0;
88f77c3c 952
7d2a0492 953 /**
3406acde
SH
954 * Constructs a new global navigation
955 *
3406acde 956 * @param moodle_page $page The page this navigation object belongs to
7d2a0492 957 */
3406acde 958 public function __construct(moodle_page $page) {
4766a50c 959 global $CFG, $SITE, $USER;
3406acde 960
7d2a0492 961 if (during_initial_install()) {
3406acde 962 return;
7d2a0492 963 }
3406acde 964
4766a50c
SH
965 if (get_home_page() == HOMEPAGE_SITE) {
966 // We are using the site home for the root element
967 $properties = array(
968 'key' => 'home',
969 'type' => navigation_node::TYPE_SYSTEM,
970 'text' => get_string('home'),
971 'action' => new moodle_url('/')
972 );
973 } else {
974 // We are using the users my moodle for the root element
975 $properties = array(
976 'key' => 'myhome',
977 'type' => navigation_node::TYPE_SYSTEM,
978 'text' => get_string('myhome'),
979 'action' => new moodle_url('/my/')
980 );
dd8e5011 981 }
4766a50c 982
31fde54f 983 // Use the parents constructor.... good good reuse
3406acde
SH
984 parent::__construct($properties);
985
986 // Initalise and set defaults
987 $this->page = $page;
7d2a0492 988 $this->forceopen = true;
f5b5a822 989 $this->cache = new navigation_cache(NAVIGATION_CACHE_NAME);
7d2a0492 990 }
991
b9bcad24
AB
992 /**
993 * Mutator to set userid to allow parent to see child's profile
994 * page navigation. See MDL-25805 for initial issue. Linked to it
995 * is an issue explaining why this is a REALLY UGLY HACK thats not
996 * for you to use!
997 *
5607036a 998 * @param int $userid userid of profile page that parent wants to navigate around.
b9bcad24 999 */
870815fa
SH
1000 public function set_userid_for_parent_checks($userid) {
1001 $this->useridtouseforparentchecks = $userid;
b9bcad24
AB
1002 }
1003
1004
7d2a0492 1005 /**
3406acde 1006 * Initialises the navigation object.
7d2a0492 1007 *
3406acde
SH
1008 * This causes the navigation object to look at the current state of the page
1009 * that it is associated with and then load the appropriate content.
7d2a0492 1010 *
3406acde
SH
1011 * This should only occur the first time that the navigation structure is utilised
1012 * which will normally be either when the navbar is called to be displayed or
1013 * when a block makes use of it.
7d2a0492 1014 *
3406acde 1015 * @return bool
7d2a0492 1016 */
3406acde 1017 public function initialise() {
4766a50c 1018 global $CFG, $SITE, $USER, $DB;
3406acde 1019 // Check if it has alread been initialised
7d2a0492 1020 if ($this->initialised || during_initial_install()) {
1021 return true;
1022 }
e2b436d0 1023 $this->initialised = true;
3406acde
SH
1024
1025 // Set up the five base root nodes. These are nodes where we will put our
1026 // content and are as follows:
1027 // site: Navigation for the front page.
1028 // myprofile: User profile information goes here.
1029 // mycourses: The users courses get added here.
1030 // courses: Additional courses are added here.
1031 // users: Other users information loaded here.
1032 $this->rootnodes = array();
4766a50c 1033 if (get_home_page() == HOMEPAGE_SITE) {
3f9ccf85 1034 // The home element should be my moodle because the root element is the site
b9d4c7d3 1035 if (isloggedin() && !isguestuser()) { // Makes no sense if you aren't logged in
e26507b3 1036 $this->rootnodes['home'] = $this->add(get_string('myhome'), new moodle_url('/my/'), self::TYPE_SETTING, null, 'home');
3f9ccf85 1037 }
4766a50c
SH
1038 } else {
1039 // The home element should be the site because the root node is my moodle
e26507b3 1040 $this->rootnodes['home'] = $this->add(get_string('sitehome'), new moodle_url('/'), self::TYPE_SETTING, null, 'home');
ab6ec58a 1041 if (!empty($CFG->defaulthomepage) && ($CFG->defaulthomepage == HOMEPAGE_MY)) {
4766a50c
SH
1042 // We need to stop automatic redirection
1043 $this->rootnodes['home']->action->param('redirect', '0');
1044 }
1045 }
3406acde 1046 $this->rootnodes['site'] = $this->add_course($SITE);
e26507b3 1047 $this->rootnodes['myprofile'] = $this->add(get_string('myprofile'), null, self::TYPE_USER, null, 'myprofile');
3406acde 1048 $this->rootnodes['mycourses'] = $this->add(get_string('mycourses'), null, self::TYPE_ROOTNODE, null, 'mycourses');
83f78f8d 1049 $this->rootnodes['courses'] = $this->add(get_string('courses'), new moodle_url('/course/index.php'), self::TYPE_ROOTNODE, null, 'courses');
3406acde
SH
1050 $this->rootnodes['users'] = $this->add(get_string('users'), null, self::TYPE_ROOTNODE, null, 'users');
1051
1052 // Fetch all of the users courses.
4766a50c
SH
1053 $limit = 20;
1054 if (!empty($CFG->navcourselimit)) {
1055 $limit = $CFG->navcourselimit;
1056 }
1057
b0712163 1058 $mycourses = enrol_get_my_courses(NULL, 'visible DESC,sortorder ASC');
e26507b3 1059 $showallcourses = (count($mycourses) == 0 || !empty($CFG->navshowallcourses));
6a16e136
SH
1060 // When checking if we are to show categories there is an additional override.
1061 // If the user is viewing a category then we will load it regardless of settings.
1062 // to ensure that the navigation is consistent.
1063 $showcategories = $this->page->context->contextlevel == CONTEXT_COURSECAT || ($showallcourses && $this->show_categories());
56c062a4 1064 $issite = ($this->page->course->id == SITEID);
e26507b3 1065 $ismycourse = (array_key_exists($this->page->course->id, $mycourses));
ba2789c1 1066
3406acde 1067 // Check if any courses were returned.
e26507b3 1068 if (count($mycourses) > 0) {
b0712163
SH
1069
1070 // Check if categories should be displayed within the my courses branch
1071 if (!empty($CFG->navshowmycoursecategories)) {
1072
1073 // Find the category of each mycourse
1074 $categories = array();
1075 foreach ($mycourses as $course) {
1076 $categories[] = $course->category;
1077 }
1078
1079 // Do a single DB query to get the categories immediately associated with
1080 // courses the user is enrolled in.
1081 $categories = $DB->get_records_list('course_categories', 'id', array_unique($categories), 'depth ASC, sortorder ASC');
1082 // Work out the parent categories that we need to load that we havn't
1083 // already got.
1084 $categoryids = array();
1085 foreach ($categories as $category) {
1086 $categoryids = array_merge($categoryids, explode('/', trim($category->path, '/')));
1087 }
1088 $categoryids = array_unique($categoryids);
1089 $categoryids = array_diff($categoryids, array_keys($categories));
1090
1091 if (count($categoryids)) {
1092 // Fetch any other categories we need.
aad30b6a
SH
1093 $allcategories = $DB->get_records_list('course_categories', 'id', $categoryids, 'depth ASC, sortorder ASC');
1094 if (is_array($allcategories) && count($allcategories) > 0) {
bc40124b 1095 $categories = array_merge($categories, $allcategories);
aad30b6a 1096 }
b0712163
SH
1097 }
1098
1099 // We ONLY want the categories, we need to get rid of the keys
1100 $categories = array_values($categories);
1101 $addedcategories = array();
1102 while (($category = array_shift($categories)) !== null) {
1103 if ($category->parent == '0') {
1104 $categoryparent = $this->rootnodes['mycourses'];
1105 } else if (array_key_exists($category->parent, $addedcategories)) {
1106 $categoryparent = $addedcategories[$category->parent];
1107 } else {
1108 // Prepare to count iterations. We don't want to loop forever
1109 // accidentally if for some reason a category can't be placed.
1110 if (!isset($category->loopcount)) {
1111 $category->loopcount = 0;
1112 }
1113 $category->loopcount++;
1114 if ($category->loopcount > 5) {
1115 // This is a pretty serious problem and this should never happen.
1116 // If it does then for some reason a category has been loaded but
1117 // its parents have now. It could be data corruption.
1118 debugging('Category '.$category->id.' could not be placed within the navigation', DEBUG_DEVELOPER);
1119 } else {
1120 // Add it back to the end of the categories array
1121 array_push($categories, $category);
1122 }
1123 continue;
1124 }
1125
1126 $url = new moodle_url('/course/category.php', array('id' => $category->id));
1127 $addedcategories[$category->id] = $categoryparent->add($category->name, $url, self::TYPE_CATEGORY, $category->name, $category->id);
1128
1129 if (!$category->visible) {
1130 if (!has_capability('moodle/category:viewhiddencategories', get_context_instance(CONTEXT_COURSECAT, $category->parent))) {
1131 $addedcategories[$category->id]->display = false;
1132 } else {
1133 $addedcategories[$category->id]->hidden = true;
1134 }
1135 }
1136 }
1137 }
1138
1139 // Add all of the users courses to the navigation.
e26507b3
SH
1140 foreach ($mycourses as $course) {
1141 $course->coursenode = $this->add_course($course, false, true);
3406acde 1142 }
4766a50c
SH
1143 }
1144
e26507b3 1145 if ($showallcourses) {
ba2789c1
SH
1146 // Load all courses
1147 $this->load_all_courses();
3406acde
SH
1148 }
1149
14d35a26
SH
1150 // We always load the frontpage course to ensure it is available without
1151 // JavaScript enabled.
1152 $frontpagecourse = $this->load_course($SITE);
1153 $this->add_front_page_course_essentials($frontpagecourse, $SITE);
56c062a4 1154 $this->load_course_sections($SITE, $frontpagecourse);
14d35a26 1155
cede87e0
SH
1156 $canviewcourseprofile = true;
1157
6a16e136
SH
1158 // Next load context specific content into the navigation
1159 switch ($this->page->context->contextlevel) {
1160 case CONTEXT_SYSTEM :
1161 // This has already been loaded we just need to map the variable
1162 $coursenode = $frontpagecourse;
1163 $this->load_all_categories(null, $showcategories);
1164 break;
1165 case CONTEXT_COURSECAT :
1166 // This has already been loaded we just need to map the variable
1167 $coursenode = $frontpagecourse;
1168 $this->load_all_categories($this->page->context->instanceid, $showcategories);
1169 if (array_key_exists($this->page->context->instanceid, $this->addedcategories)) {
1170 $this->addedcategories[$this->page->context->instanceid]->make_active();
1171 }
1172 break;
1173 case CONTEXT_BLOCK :
1174 case CONTEXT_COURSE :
1175 if ($issite) {
1176 // If it is the front page course, or a block on it then
1177 // everything has already been loaded.
56c062a4 1178 break;
6a16e136
SH
1179 }
1180 // Load the course associated with the page into the navigation
1181 $course = $this->page->course;
1182 if ($showcategories && !$ismycourse) {
1183 $this->load_all_categories($course->category, $showcategories);
1184 }
1185 $coursenode = $this->load_course($course);
b9bcad24 1186
6a16e136
SH
1187 // If the course wasn't added then don't try going any further.
1188 if (!$coursenode) {
1189 $canviewcourseprofile = false;
1190 break;
1191 }
e26507b3 1192
6a16e136
SH
1193 // If the user is not enrolled then we only want to show the
1194 // course node and not populate it.
1195
1196 // Not enrolled, can't view, and hasn't switched roles
1197 if (!can_access_course($course)) {
1198 // TODO: very ugly hack - do not force "parents" to enrol into course their child is enrolled in,
1199 // this hack has been propagated from user/view.php to display the navigation node. (MDL-25805)
1200 $isparent = false;
1201 if ($this->useridtouseforparentchecks) {
1202 if ($this->useridtouseforparentchecks != $USER->id) {
1203 $usercontext = get_context_instance(CONTEXT_USER, $this->useridtouseforparentchecks, MUST_EXIST);
1204 if ($DB->record_exists('role_assignments', array('userid' => $USER->id, 'contextid' => $usercontext->id))
1205 and has_capability('moodle/user:viewdetails', $usercontext)) {
1206 $isparent = true;
56c062a4
SH
1207 }
1208 }
56c062a4 1209 }
6a16e136
SH
1210
1211 if (!$isparent) {
56c062a4 1212 $coursenode->make_active();
6a16e136
SH
1213 $canviewcourseprofile = false;
1214 break;
1215 }
1216 }
1217 // Add the essentials such as reports etc...
1218 $this->add_course_essentials($coursenode, $course);
1219 if ($this->format_display_course_content($course->format)) {
1220 // Load the course sections
1221 $sections = $this->load_course_sections($course, $coursenode);
1222 }
1223 if (!$coursenode->contains_active_node() && !$coursenode->search_for_active_node()) {
1224 $coursenode->make_active();
1225 }
1226 break;
1227 case CONTEXT_MODULE :
1228 if ($issite) {
1229 // If this is the site course then most information will have
1230 // already been loaded.
1231 // However we need to check if there is more content that can
1232 // yet be loaded for the specific module instance.
1233 $activitynode = $this->rootnodes['site']->get($this->page->cm->id, navigation_node::TYPE_ACTIVITY);
1234 if ($activitynode) {
1235 $this->load_activity($this->page->cm, $this->page->course, $activitynode);
56c062a4 1236 }
2027c10e 1237 break;
6a16e136 1238 }
2027c10e 1239
6a16e136
SH
1240 $course = $this->page->course;
1241 $cm = $this->page->cm;
cede87e0 1242
6a16e136
SH
1243 if ($showcategories && !$ismycourse) {
1244 $this->load_all_categories($course->category, $showcategories);
1245 }
56c062a4 1246
6a16e136
SH
1247 // Load the course associated with the page into the navigation
1248 $coursenode = $this->load_course($course);
56c062a4 1249
6a16e136
SH
1250 // If the course wasn't added then don't try going any further.
1251 if (!$coursenode) {
1252 $canviewcourseprofile = false;
1253 break;
1254 }
1255
1256 // If the user is not enrolled then we only want to show the
1257 // course node and not populate it.
1258 if (!can_access_course($course)) {
1259 $coursenode->make_active();
1260 $canviewcourseprofile = false;
1261 break;
1262 }
56c062a4 1263
6a16e136 1264 $this->add_course_essentials($coursenode, $course);
56c062a4 1265
6a16e136
SH
1266 // Get section number from $cm (if provided) - we need this
1267 // before loading sections in order to tell it to load this section
1268 // even if it would not normally display (=> it contains only
1269 // a label, which we are now editing)
1270 $sectionnum = isset($cm->sectionnum) ? $cm->sectionnum : 0;
1271 if ($sectionnum) {
1272 // This value has to be stored in a member variable because
1273 // otherwise we would have to pass it through a public API
1274 // to course formats and they would need to change their
1275 // functions to pass it along again...
1276 $this->includesectionnum = $sectionnum;
1277 } else {
1278 $this->includesectionnum = false;
1279 }
d67e4821 1280
6a16e136
SH
1281 // Load the course sections into the page
1282 $sections = $this->load_course_sections($course, $coursenode);
1283 if ($course->id != SITEID) {
1284 // Find the section for the $CM associated with the page and collect
1285 // its section number.
d67e4821 1286 if ($sectionnum) {
6a16e136 1287 $cm->sectionnumber = $sectionnum;
d67e4821 1288 } else {
6a16e136
SH
1289 foreach ($sections as $section) {
1290 if ($section->id == $cm->section) {
1291 $cm->sectionnumber = $section->section;
1292 break;
0d8b6a69 1293 }
3406acde 1294 }
6a16e136 1295 }
3406acde 1296
6a16e136
SH
1297 // Load all of the section activities for the section the cm belongs to.
1298 if (isset($cm->sectionnumber) and !empty($sections[$cm->sectionnumber])) {
1299 list($sectionarray, $activityarray) = $this->generate_sections_and_activities($course);
1300 $activities = $this->load_section_activities($sections[$cm->sectionnumber]->sectionnode, $cm->sectionnumber, $activityarray);
2a62743c
PS
1301 } else {
1302 $activities = array();
6a16e136
SH
1303 if ($activity = $this->load_stealth_activity($coursenode, get_fast_modinfo($course))) {
1304 // "stealth" activity from unavailable section
1305 $activities[$cm->id] = $activity;
56c062a4 1306 }
2a62743c 1307 }
6a16e136
SH
1308 } else {
1309 $activities = array();
1310 $activities[$cm->id] = $coursenode->get($cm->id, navigation_node::TYPE_ACTIVITY);
1311 }
1312 if (!empty($activities[$cm->id])) {
1313 // Finally load the cm specific navigaton information
1314 $this->load_activity($cm, $course, $activities[$cm->id]);
1315 // Check if we have an active ndoe
1316 if (!$activities[$cm->id]->contains_active_node() && !$activities[$cm->id]->search_for_active_node()) {
1317 // And make the activity node active.
1318 $activities[$cm->id]->make_active();
e26507b3 1319 }
6a16e136
SH
1320 } else {
1321 //TODO: something is wrong, what to do? (Skodak)
1322 }
1323 break;
1324 case CONTEXT_USER :
1325 if ($issite) {
1326 // The users profile information etc is already loaded
1327 // for the front page.
96e78552 1328 break;
6a16e136
SH
1329 }
1330 $course = $this->page->course;
1331 if ($showcategories && !$ismycourse) {
1332 $this->load_all_categories($course->category, $showcategories);
1333 }
1334 // Load the course associated with the user into the navigation
1335 $coursenode = $this->load_course($course);
2027c10e 1336
6a16e136
SH
1337 // If the course wasn't added then don't try going any further.
1338 if (!$coursenode) {
1339 $canviewcourseprofile = false;
1340 break;
1341 }
2027c10e 1342
6a16e136
SH
1343 // If the user is not enrolled then we only want to show the
1344 // course node and not populate it.
1345 if (!can_access_course($course)) {
1346 $coursenode->make_active();
1347 $canviewcourseprofile = false;
56c062a4 1348 break;
e52a5d3a 1349 }
6a16e136
SH
1350 $this->add_course_essentials($coursenode, $course);
1351 $sections = $this->load_course_sections($course, $coursenode);
1352 break;
7d2a0492 1353 }
7a7e209d 1354
ba2789c1
SH
1355 $limit = 20;
1356 if (!empty($CFG->navcourselimit)) {
1357 $limit = $CFG->navcourselimit;
1358 }
1359 if ($showcategories) {
1360 $categories = $this->find_all_of_type(self::TYPE_CATEGORY);
1361 foreach ($categories as &$category) {
1362 if ($category->children->count() >= $limit) {
1363 $url = new moodle_url('/course/category.php', array('id'=>$category->key));
1364 $category->add(get_string('viewallcourses'), $url, self::TYPE_SETTING);
1365 }
1366 }
1367 } else if ($this->rootnodes['courses']->children->count() >= $limit) {
1368 $this->rootnodes['courses']->add(get_string('viewallcoursescategories'), new moodle_url('/course/index.php'), self::TYPE_SETTING);
1369 }
1370
3406acde
SH
1371 // Load for the current user
1372 $this->load_for_user();
cede87e0 1373 if ($this->page->context->contextlevel >= CONTEXT_COURSE && $this->page->context->instanceid != SITEID && $canviewcourseprofile) {
87c215de
SH
1374 $this->load_for_user(null, true);
1375 }
7a7e209d
SH
1376 // Load each extending user into the navigation.
1377 foreach ($this->extendforuser as $user) {
44303ca6 1378 if ($user->id != $USER->id) {
7a7e209d
SH
1379 $this->load_for_user($user);
1380 }
1381 }
7a7e209d 1382
a683da3c
SH
1383 // Give the local plugins a chance to include some navigation if they want.
1384 foreach (get_list_of_plugins('local') as $plugin) {
1385 if (!file_exists($CFG->dirroot.'/local/'.$plugin.'/lib.php')) {
1386 continue;
1387 }
1388 require_once($CFG->dirroot.'/local/'.$plugin.'/lib.php');
1389 $function = $plugin.'_extends_navigation';
1390 if (function_exists($function)) {
1391 $function($this);
1392 }
1393 }
1394
3406acde
SH
1395 // Remove any empty root nodes
1396 foreach ($this->rootnodes as $node) {
4766a50c
SH
1397 // Dont remove the home node
1398 if ($node->key !== 'home' && !$node->has_children()) {
3406acde
SH
1399 $node->remove();
1400 }
1401 }
1402
7c4efe3b
SH
1403 if (!$this->contains_active_node()) {
1404 $this->search_for_active_node();
1405 }
1406
3406acde 1407 // If the user is not logged in modify the navigation structure as detailed
728ebac7 1408 // in {@link http://docs.moodle.org/dev/Navigation_2.0_structure}
3406acde
SH
1409 if (!isloggedin()) {
1410 $activities = clone($this->rootnodes['site']->children);
1411 $this->rootnodes['site']->remove();
1412 $children = clone($this->children);
1413 $this->children = new navigation_node_collection();
1414 foreach ($activities as $child) {
1415 $this->children->add($child);
1416 }
1417 foreach ($children as $child) {
1418 $this->children->add($child);
1419 }
3406acde 1420 }
7d2a0492 1421 return true;
1422 }
9bf5af21
SH
1423
1424 /**
31fde54f 1425 * Returns true if courses should be shown within categories on the navigation.
9bf5af21
SH
1426 *
1427 * @return bool
1428 */
1429 protected function show_categories() {
1430 global $CFG, $DB;
1431 if ($this->showcategories === null) {
6a16e136
SH
1432 $show = $this->page->context->contextlevel == CONTEXT_COURSECAT;
1433 $show = $show || (!empty($CFG->navshowcategories) && $DB->count_records('course_categories') > 1);
1434 $this->showcategories = $show;
9bf5af21
SH
1435 }
1436 return $this->showcategories;
1437 }
1438
7d2a0492 1439 /**
3406acde
SH
1440 * Checks the course format to see whether it wants the navigation to load
1441 * additional information for the course.
1442 *
1443 * This function utilises a callback that can exist within the course format lib.php file
1444 * The callback should be a function called:
1445 * callback_{formatname}_display_content()
1446 * It doesn't get any arguments and should return true if additional content is
1447 * desired. If the callback doesn't exist we assume additional content is wanted.
1448 *
3406acde
SH
1449 * @param string $format The course format
1450 * @return bool
1451 */
1452 protected function format_display_course_content($format) {
1453 global $CFG;
1454 $formatlib = $CFG->dirroot.'/course/format/'.$format.'/lib.php';
1455 if (file_exists($formatlib)) {
1456 require_once($formatlib);
1457 $displayfunc = 'callback_'.$format.'_display_content';
1458 if (function_exists($displayfunc) && !$displayfunc()) {
1459 return $displayfunc();
1460 }
1461 }
1462 return true;
1463 }
1464
1465 /**
31fde54f 1466 * Loads the courses in Moodle into the navigation.
3406acde 1467 *
31fde54f 1468 * @param mixed $categoryids Either a string or array of category ids to load courses for
3406acde
SH
1469 * @return array An array of navigation_node
1470 */
4766a50c
SH
1471 protected function load_all_courses($categoryids=null) {
1472 global $CFG, $DB, $USER;
1473
1474 if ($categoryids !== null) {
1475 if (is_array($categoryids)) {
e26507b3 1476 list ($categoryselect, $params) = $DB->get_in_or_equal($categoryids, SQL_PARAMS_NAMED, 'catid');
4766a50c 1477 } else {
e26507b3
SH
1478 $categoryselect = '= :categoryid';
1479 $params = array('categoryid', $categoryids);
4766a50c 1480 }
e26507b3
SH
1481 $params['siteid'] = SITEID;
1482 $categoryselect = ' AND c.category '.$categoryselect;
4766a50c 1483 } else {
e26507b3
SH
1484 $params = array('siteid' => SITEID);
1485 $categoryselect = '';
1486 }
1487
e141bc81
SH
1488 $ccselect = context_helper::get_preload_record_columns_sql('ctx');
1489 $params['contextlevel'] = CONTEXT_COURSE;
e26507b3 1490 list($courseids, $courseparams) = $DB->get_in_or_equal(array_keys($this->addedcourses) + array(SITEID), SQL_PARAMS_NAMED, 'lcourse', false);
e141bc81 1491 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category, cat.path AS categorypath, $ccselect
e26507b3 1492 FROM {course} c
e141bc81 1493 JOIN {context} ctx ON c.id = ctx.instanceid
e26507b3 1494 LEFT JOIN {course_categories} cat ON cat.id=c.category
e141bc81
SH
1495 WHERE c.id {$courseids} AND
1496 ctx.contextlevel = :contextlevel
1497 {$categoryselect}
e26507b3 1498 ORDER BY c.sortorder ASC";
4766a50c
SH
1499 $limit = 20;
1500 if (!empty($CFG->navcourselimit)) {
1501 $limit = $CFG->navcourselimit;
1502 }
e26507b3 1503 $courses = $DB->get_records_sql($sql, $params + $courseparams, 0, $limit);
4766a50c 1504
3406acde
SH
1505 $coursenodes = array();
1506 foreach ($courses as $course) {
e141bc81 1507 context_helper::preload_from_record($course);
3406acde
SH
1508 $coursenodes[$course->id] = $this->add_course($course);
1509 }
1510 return $coursenodes;
1511 }
1512
4766a50c
SH
1513 /**
1514 * Loads all categories (top level or if an id is specified for that category)
1515 *
e26507b3
SH
1516 * @param int $categoryid The category id to load or null/0 to load all base level categories
1517 * @param bool $showbasecategories If set to true all base level categories will be loaded as well
1518 * as the requested category and any parent categories.
31fde54f 1519 * @return navigation_node|void returns a navigation node if a category has been loaded.
4766a50c 1520 */
e26507b3 1521 protected function load_all_categories($categoryid = null, $showbasecategories = false) {
4766a50c 1522 global $DB;
e26507b3
SH
1523
1524 // Check if this category has already been loaded
1525 if ($categoryid !== null && array_key_exists($categoryid, $this->addedcategories) && $this->addedcategories[$categoryid]->children->count() > 0) {
1526 return $this->addedcategories[$categoryid];
1527 }
1528
1529 $coursestoload = array();
1530 if (empty($categoryid)) { // can be 0
1531 // We are going to load all of the first level categories (categories without parents)
c4afcf84 1532 $categories = $DB->get_records('course_categories', array('parent'=>'0'), 'sortorder ASC, id ASC');
e26507b3
SH
1533 } else if (array_key_exists($categoryid, $this->addedcategories)) {
1534 // The category itself has been loaded already so we just need to ensure its subcategories
1535 // have been loaded
1536 list($sql, $params) = $DB->get_in_or_equal(array_keys($this->addedcategories), SQL_PARAMS_NAMED, 'parent', false);
1537 if ($showbasecategories) {
1538 // We need to include categories with parent = 0 as well
1539 $sql = "SELECT *
1540 FROM {course_categories} cc
1541 WHERE (parent = :categoryid OR parent = 0) AND
1542 parent {$sql}
c4afcf84 1543 ORDER BY depth DESC, sortorder ASC, id ASC";
e26507b3
SH
1544 } else {
1545 $sql = "SELECT *
1546 FROM {course_categories} cc
1547 WHERE parent = :categoryid AND
1548 parent {$sql}
c4afcf84 1549 ORDER BY depth DESC, sortorder ASC, id ASC";
e26507b3
SH
1550 }
1551 $params['categoryid'] = $categoryid;
1552 $categories = $DB->get_records_sql($sql, $params);
1553 if (count($categories) == 0) {
1554 // There are no further categories that require loading.
1555 return;
1556 }
4766a50c 1557 } else {
e26507b3
SH
1558 // This category hasn't been loaded yet so we need to fetch it, work out its category path
1559 // and load this category plus all its parents and subcategories
3992a46e 1560 $category = $DB->get_record('course_categories', array('id' => $categoryid), 'path', MUST_EXIST);
e26507b3
SH
1561 $coursestoload = explode('/', trim($category->path, '/'));
1562 list($select, $params) = $DB->get_in_or_equal($coursestoload);
4766a50c 1563 $select = 'id '.$select.' OR parent '.$select;
e26507b3
SH
1564 if ($showbasecategories) {
1565 $select .= ' OR parent = 0';
1566 }
4766a50c
SH
1567 $params = array_merge($params, $params);
1568 $categories = $DB->get_records_select('course_categories', $select, $params, 'sortorder');
1569 }
e26507b3
SH
1570
1571 // Now we have an array of categories we need to add them to the navigation.
1572 while (!empty($categories)) {
1573 $category = reset($categories);
1574 if (array_key_exists($category->id, $this->addedcategories)) {
1575 // Do nothing
1576 } else if ($category->parent == '0') {
1577 $this->add_category($category, $this->rootnodes['courses']);
1578 } else if (array_key_exists($category->parent, $this->addedcategories)) {
1579 $this->add_category($category, $this->addedcategories[$category->parent]);
4766a50c 1580 } else {
e26507b3
SH
1581 // This category isn't in the navigation and niether is it's parent (yet).
1582 // We need to go through the category path and add all of its components in order.
1583 $path = explode('/', trim($category->path, '/'));
1584 foreach ($path as $catid) {
1585 if (!array_key_exists($catid, $this->addedcategories)) {
1586 // This category isn't in the navigation yet so add it.
1587 $subcategory = $categories[$catid];
c4afcf84
SH
1588 if ($subcategory->parent == '0') {
1589 // Yay we have a root category - this likely means we will now be able
1590 // to add categories without problems.
1591 $this->add_category($subcategory, $this->rootnodes['courses']);
1592 } else if (array_key_exists($subcategory->parent, $this->addedcategories)) {
e26507b3
SH
1593 // The parent is in the category (as we'd expect) so add it now.
1594 $this->add_category($subcategory, $this->addedcategories[$subcategory->parent]);
1595 // Remove the category from the categories array.
1596 unset($categories[$catid]);
1597 } else {
1598 // We should never ever arrive here - if we have then there is a bigger
1599 // problem at hand.
5607036a 1600 throw new coding_exception('Category path order is incorrect and/or there are missing categories');
e26507b3 1601 }
4766a50c 1602 }
4766a50c
SH
1603 }
1604 }
e26507b3
SH
1605 // Remove the category from the categories array now that we know it has been added.
1606 unset($categories[$category->id]);
4766a50c 1607 }
e26507b3
SH
1608 // Check if there are any categories to load.
1609 if (count($coursestoload) > 0) {
1610 $this->load_all_courses($coursestoload);
4766a50c
SH
1611 }
1612 }
1613
1614 /**
1615 * Adds a structured category to the navigation in the correct order/place
1616 *
e26507b3 1617 * @param stdClass $category
435a512e 1618 * @param navigation_node $parent
4766a50c 1619 */
e26507b3
SH
1620 protected function add_category(stdClass $category, navigation_node $parent) {
1621 if (array_key_exists($category->id, $this->addedcategories)) {
563329e8 1622 return;
e26507b3
SH
1623 }
1624 $url = new moodle_url('/course/category.php', array('id' => $category->id));
63390481
SH
1625 $context = get_context_instance(CONTEXT_COURSECAT, $category->id);
1626 $categoryname = format_string($category->name, true, array('context' => $context));
1627 $categorynode = $parent->add($categoryname, $url, self::TYPE_CATEGORY, $categoryname, $category->id);
e26507b3
SH
1628 if (empty($category->visible)) {
1629 if (has_capability('moodle/category:viewhiddencategories', get_system_context())) {
1630 $categorynode->hidden = true;
1631 } else {
1632 $categorynode->display = false;
14337688 1633 }
4766a50c 1634 }
e26507b3 1635 $this->addedcategories[$category->id] = &$categorynode;
4766a50c
SH
1636 }
1637
3406acde
SH
1638 /**
1639 * Loads the given course into the navigation
7d2a0492 1640 *
3406acde
SH
1641 * @param stdClass $course
1642 * @return navigation_node
1643 */
1644 protected function load_course(stdClass $course) {
1645 if ($course->id == SITEID) {
e26507b3
SH
1646 return $this->rootnodes['site'];
1647 } else if (array_key_exists($course->id, $this->addedcourses)) {
1648 return $this->addedcourses[$course->id];
3406acde 1649 } else {
e26507b3 1650 return $this->add_course($course);
3406acde 1651 }
3406acde
SH
1652 }
1653
1654 /**
1655 * Loads all of the courses section into the navigation.
1656 *
1657 * This function utilisies a callback that can be implemented within the course
1658 * formats lib.php file to customise the navigation that is generated at this
1659 * point for the course.
1660 *
93123b17 1661 * By default (if not defined) the method {@link global_navigation::load_generic_course_sections()} is
3406acde
SH
1662 * called instead.
1663 *
3406acde
SH
1664 * @param stdClass $course Database record for the course
1665 * @param navigation_node $coursenode The course node within the navigation
1666 * @return array Array of navigation nodes for the section with key = section id
1667 */
1668 protected function load_course_sections(stdClass $course, navigation_node $coursenode) {
1669 global $CFG;
1670 $structurefile = $CFG->dirroot.'/course/format/'.$course->format.'/lib.php';
1671 $structurefunc = 'callback_'.$course->format.'_load_content';
1672 if (function_exists($structurefunc)) {
1673 return $structurefunc($this, $course, $coursenode);
1674 } else if (file_exists($structurefile)) {
1675 require_once $structurefile;
1676 if (function_exists($structurefunc)) {
1677 return $structurefunc($this, $course, $coursenode);
1678 } else {
0f4ab67d 1679 return $this->load_generic_course_sections($course, $coursenode);
3406acde
SH
1680 }
1681 } else {
0f4ab67d 1682 return $this->load_generic_course_sections($course, $coursenode);
3406acde
SH
1683 }
1684 }
1685
e26507b3
SH
1686 /**
1687 * Generates an array of sections and an array of activities for the given course.
1688 *
1689 * This method uses the cache to improve performance and avoid the get_fast_modinfo call
1690 *
1691 * @param stdClass $course
1692 * @return array Array($sections, $activities)
1693 */
1694 protected function generate_sections_and_activities(stdClass $course) {
1695 global $CFG;
1696 require_once($CFG->dirroot.'/course/lib.php');
1697
c18facf2 1698 $modinfo = get_fast_modinfo($course);
e26507b3 1699
c18facf2
SH
1700 $sections = array_slice(get_all_sections($course->id), 0, $course->numsections+1, true);
1701 $activities = array();
e26507b3 1702
c18facf2
SH
1703 foreach ($sections as $key => $section) {
1704 $sections[$key]->hasactivites = false;
1705 if (!array_key_exists($section->section, $modinfo->sections)) {
1706 continue;
1707 }
1708 foreach ($modinfo->sections[$section->section] as $cmid) {
1709 $cm = $modinfo->cms[$cmid];
1710 if (!$cm->uservisible) {
e26507b3
SH
1711 continue;
1712 }
c18facf2
SH
1713 $activity = new stdClass;
1714 $activity->id = $cm->id;
1715 $activity->course = $course->id;
1716 $activity->section = $section->section;
1717 $activity->name = $cm->name;
1718 $activity->icon = $cm->icon;
1719 $activity->iconcomponent = $cm->iconcomponent;
1720 $activity->hidden = (!$cm->visible);
1721 $activity->modname = $cm->modname;
1722 $activity->nodetype = navigation_node::NODETYPE_LEAF;
1723 $activity->onclick = $cm->get_on_click();
1724 $url = $cm->get_url();
1725 if (!$url) {
1726 $activity->url = null;
1727 $activity->display = false;
1728 } else {
1729 $activity->url = $cm->get_url()->out();
1730 $activity->display = true;
1731 if (self::module_extends_navigation($cm->modname)) {
1732 $activity->nodetype = navigation_node::NODETYPE_BRANCH;
d67e4821 1733 }
e26507b3 1734 }
c18facf2
SH
1735 $activities[$cmid] = $activity;
1736 if ($activity->display) {
1737 $sections[$key]->hasactivites = true;
1738 }
e26507b3 1739 }
e26507b3 1740 }
c18facf2 1741
e26507b3
SH
1742 return array($sections, $activities);
1743 }
1744
3406acde
SH
1745 /**
1746 * Generically loads the course sections into the course's navigation.
1747 *
1748 * @param stdClass $course
1749 * @param navigation_node $coursenode
e26507b3 1750 * @param string $courseformat The course format
3406acde
SH
1751 * @return array An array of course section nodes
1752 */
0f4ab67d 1753 public function load_generic_course_sections(stdClass $course, navigation_node $coursenode, $courseformat='unknown') {
df997f84 1754 global $CFG, $DB, $USER;
df997f84 1755 require_once($CFG->dirroot.'/course/lib.php');
435a512e 1756
e26507b3 1757 list($sections, $activities) = $this->generate_sections_and_activities($course);
0f4ab67d
SH
1758
1759 $namingfunction = 'callback_'.$courseformat.'_get_section_name';
1760 $namingfunctionexists = (function_exists($namingfunction));
ad470097 1761
e26507b3 1762 $viewhiddensections = has_capability('moodle/course:viewhiddensections', $this->page->context);
435a512e 1763
ad470097 1764 $urlfunction = 'callback_'.$courseformat.'_get_section_url';
d9e13265
DP
1765 if (function_exists($urlfunction)) {
1766 debugging('Depricated callback_'.$courseformat.'_get_section_url in use.
1767 Please switch your code to use the standard section url param');
1768 } else {
ad470097
SH
1769 $urlfunction = null;
1770 }
1771
b9bcdb54 1772 $key = 0;
f7558683
DP
1773 if (defined('AJAX_SCRIPT') && AJAX_SCRIPT == '0' && $this->page->url->compare(new moodle_url('/course/view.php'), URL_MATCH_BASE)) {
1774 $key = optional_param('section', $key, PARAM_INT);
ad470097
SH
1775 }
1776
7487c856 1777 $navigationsections = array();
e26507b3 1778 foreach ($sections as $sectionid => $section) {
7487c856 1779 $section = clone($section);
3406acde 1780 if ($course->id == SITEID) {
e26507b3 1781 $this->load_section_activities($coursenode, $section->section, $activities);
3406acde 1782 } else {
d67e4821 1783 if ((!$viewhiddensections && !$section->visible) || (!$this->showemptysections &&
1784 !$section->hasactivites && $this->includesectionnum !== $section->section)) {
3406acde
SH
1785 continue;
1786 }
0f4ab67d
SH
1787 if ($namingfunctionexists) {
1788 $sectionname = $namingfunction($course, $section, $sections);
3406acde 1789 } else {
0f4ab67d 1790 $sectionname = get_string('section').' '.$section->section;
3406acde 1791 }
ad470097 1792
dbe5050d 1793 $url = null;
d9e13265
DP
1794 if ($urlfunction) {
1795 // pre 2.3 style format url
ad470097 1796 $url = $urlfunction($course->id, $section->section);
d9e13265
DP
1797 }else{
1798 if ($course->coursedisplay == COURSE_DISPLAY_MULTIPAGE) {
1799 $url = course_get_url($course, $section->section);
1800 }
ad470097 1801 }
3406acde
SH
1802 $sectionnode = $coursenode->add($sectionname, $url, navigation_node::TYPE_SECTION, null, $section->id);
1803 $sectionnode->nodetype = navigation_node::NODETYPE_BRANCH;
1804 $sectionnode->hidden = (!$section->visible);
ad470097
SH
1805 if ($key != '0' && $section->section != '0' && $section->section == $key && $this->page->context->contextlevel != CONTEXT_MODULE && $section->hasactivites) {
1806 $sectionnode->make_active();
e26507b3 1807 $this->load_section_activities($sectionnode, $section->section, $activities);
3406acde
SH
1808 }
1809 $section->sectionnode = $sectionnode;
7487c856 1810 $navigationsections[$sectionid] = $section;
3406acde
SH
1811 }
1812 }
7487c856 1813 return $navigationsections;
3406acde
SH
1814 }
1815 /**
1816 * Loads all of the activities for a section into the navigation structure.
1817 *
1818 * @param navigation_node $sectionnode
1819 * @param int $sectionnumber
93123b17 1820 * @param array $activities An array of activites as returned by {@link global_navigation::generate_sections_and_activities()}
1580cfdb 1821 * @param stdClass $course The course object the section and activities relate to.
3406acde
SH
1822 * @return array Array of activity nodes
1823 */
1580cfdb 1824 protected function load_section_activities(navigation_node $sectionnode, $sectionnumber, array $activities, $course = null) {
4037098e 1825 global $CFG;
dee1a0fd
SH
1826 // A static counter for JS function naming
1827 static $legacyonclickcounter = 0;
3406acde 1828
e26507b3 1829 $activitynodes = array();
4037098e
SH
1830 if (empty($activities)) {
1831 return $activitynodes;
1832 }
1833
1834 if (!is_object($course)) {
1835 $activity = reset($activities);
1836 $courseid = $activity->course;
1837 } else {
1838 $courseid = $course->id;
1839 }
1840 $showactivities = ($courseid != SITEID || !empty($CFG->navshowfrontpagemods));
1841
e26507b3
SH
1842 foreach ($activities as $activity) {
1843 if ($activity->section != $sectionnumber) {
3406acde
SH
1844 continue;
1845 }
e26507b3
SH
1846 if ($activity->icon) {
1847 $icon = new pix_icon($activity->icon, get_string('modulename', $activity->modname), $activity->iconcomponent);
3406acde 1848 } else {
e26507b3 1849 $icon = new pix_icon('icon', get_string('modulename', $activity->modname), $activity->modname);
3406acde 1850 }
dee1a0fd
SH
1851
1852 // Prepare the default name and url for the node
1853 $activityname = format_string($activity->name, true, array('context' => get_context_instance(CONTEXT_MODULE, $activity->id)));
1854 $action = new moodle_url($activity->url);
1855
1856 // Check if the onclick property is set (puke!)
1857 if (!empty($activity->onclick)) {
1858 // Increment the counter so that we have a unique number.
1859 $legacyonclickcounter++;
1860 // Generate the function name we will use
1861 $functionname = 'legacy_activity_onclick_handler_'.$legacyonclickcounter;
1862 $propogrationhandler = '';
1863 // Check if we need to cancel propogation. Remember inline onclick
1864 // events would return false if they wanted to prevent propogation and the
1865 // default action.
1866 if (strpos($activity->onclick, 'return false')) {
1867 $propogrationhandler = 'e.halt();';
1868 }
1869 // Decode the onclick - it has already been encoded for display (puke)
1870 $onclick = htmlspecialchars_decode($activity->onclick);
1871 // Build the JS function the click event will call
1872 $jscode = "function {$functionname}(e) { $propogrationhandler $onclick }";
1873 $this->page->requires->js_init_code($jscode);
1874 // Override the default url with the new action link
1875 $action = new action_link($action, $activityname, new component_action('click', $functionname));
1876 }
1877
1878 $activitynode = $sectionnode->add($activityname, $action, navigation_node::TYPE_ACTIVITY, null, $activity->id, $icon);
e26507b3
SH
1879 $activitynode->title(get_string('modulename', $activity->modname));
1880 $activitynode->hidden = $activity->hidden;
4037098e 1881 $activitynode->display = $showactivities && $activity->display;
e26507b3
SH
1882 $activitynode->nodetype = $activity->nodetype;
1883 $activitynodes[$activity->id] = $activitynode;
3406acde
SH
1884 }
1885
e26507b3 1886 return $activitynodes;
3406acde 1887 }
2a62743c
PS
1888 /**
1889 * Loads a stealth module from unavailable section
1890 * @param navigation_node $coursenode
1891 * @param stdClass $modinfo
1892 * @return navigation_node or null if not accessible
1893 */
1894 protected function load_stealth_activity(navigation_node $coursenode, $modinfo) {
1895 if (empty($modinfo->cms[$this->page->cm->id])) {
1896 return null;
1897 }
1898 $cm = $modinfo->cms[$this->page->cm->id];
1899 if (!$cm->uservisible) {
1900 return null;
1901 }
1902 if ($cm->icon) {
1903 $icon = new pix_icon($cm->icon, get_string('modulename', $cm->modname), $cm->iconcomponent);
1904 } else {
1905 $icon = new pix_icon('icon', get_string('modulename', $cm->modname), $cm->modname);
1906 }
0d8b6a69 1907 $url = $cm->get_url();
2a62743c
PS
1908 $activitynode = $coursenode->add(format_string($cm->name), $url, navigation_node::TYPE_ACTIVITY, null, $cm->id, $icon);
1909 $activitynode->title(get_string('modulename', $cm->modname));
1910 $activitynode->hidden = (!$cm->visible);
0d8b6a69 1911 if (!$url) {
1912 // Don't show activities that don't have links!
2a62743c 1913 $activitynode->display = false;
e26507b3 1914 } else if (self::module_extends_navigation($cm->modname)) {
2a62743c
PS
1915 $activitynode->nodetype = navigation_node::NODETYPE_BRANCH;
1916 }
1917 return $activitynode;
1918 }
3406acde
SH
1919 /**
1920 * Loads the navigation structure for the given activity into the activities node.
1921 *
1922 * This method utilises a callback within the modules lib.php file to load the
1923 * content specific to activity given.
1924 *
1925 * The callback is a method: {modulename}_extend_navigation()
1926 * Examples:
93123b17
EL
1927 * * {@link forum_extend_navigation()}
1928 * * {@link workshop_extend_navigation()}
3406acde 1929 *
f0dcc212 1930 * @param cm_info|stdClass $cm
3406acde
SH
1931 * @param stdClass $course
1932 * @param navigation_node $activity
1933 * @return bool
1934 */
0d8b6a69 1935 protected function load_activity($cm, stdClass $course, navigation_node $activity) {
3406acde 1936 global $CFG, $DB;
44303ca6 1937
f0dcc212
SH
1938 // make sure we have a $cm from get_fast_modinfo as this contains activity access details
1939 if (!($cm instanceof cm_info)) {
1940 $modinfo = get_fast_modinfo($course);
1941 $cm = $modinfo->get_cm($cm->id);
1942 }
3406acde 1943
577c8964 1944 $activity->nodetype = navigation_node::NODETYPE_LEAF;
3406acde
SH
1945 $activity->make_active();
1946 $file = $CFG->dirroot.'/mod/'.$cm->modname.'/lib.php';
1947 $function = $cm->modname.'_extend_navigation';
1948
1949 if (file_exists($file)) {
1950 require_once($file);
1951 if (function_exists($function)) {
1952 $activtyrecord = $DB->get_record($cm->modname, array('id' => $cm->instance), '*', MUST_EXIST);
1953 $function($activity, $course, $activtyrecord, $cm);
3406acde
SH
1954 }
1955 }
577c8964
MG
1956
1957 // Allow the active advanced grading method plugin to append module navigation
1958 $featuresfunc = $cm->modname.'_supports';
1959 if (function_exists($featuresfunc) && $featuresfunc(FEATURE_ADVANCED_GRADING)) {
1960 require_once($CFG->dirroot.'/grade/grading/lib.php');
1961 $gradingman = get_grading_manager($cm->context, $cm->modname);
1962 $gradingman->extend_navigation($this, $activity);
1963 }
1964
1965 return $activity->has_children();
3406acde
SH
1966 }
1967 /**
4d00fded 1968 * Loads user specific information into the navigation in the appropriate place.
3406acde
SH
1969 *
1970 * If no user is provided the current user is assumed.
1971 *
3406acde 1972 * @param stdClass $user
4d00fded 1973 * @param bool $forceforcontext probably force something to be loaded somewhere (ask SamH if not sure what this means)
3406acde 1974 * @return bool
7a7e209d 1975 */
87c215de 1976 protected function load_for_user($user=null, $forceforcontext=false) {
3406acde 1977 global $DB, $CFG, $USER;
4f0c2d00 1978
7a7e209d
SH
1979 if ($user === null) {
1980 // We can't require login here but if the user isn't logged in we don't
1981 // want to show anything
b9d4c7d3 1982 if (!isloggedin() || isguestuser()) {
7a7e209d
SH
1983 return false;
1984 }
1985 $user = $USER;
7a7e209d
SH
1986 } else if (!is_object($user)) {
1987 // If the user is not an object then get them from the database
e141bc81
SH
1988 $select = context_helper::get_preload_record_columns_sql('ctx');
1989 $sql = "SELECT u.*, $select
1990 FROM {user} u
1991 JOIN {context} ctx ON u.id = ctx.instanceid
1992 WHERE u.id = :userid AND
1993 ctx.contextlevel = :contextlevel";
1994 $user = $DB->get_record_sql($sql, array('userid' => (int)$user, 'contextlevel' => CONTEXT_USER), MUST_EXIST);
1995 context_helper::preload_from_record($user);
7a7e209d 1996 }
136ca7c8
SH
1997
1998 $iscurrentuser = ($user->id == $USER->id);
1999
507a7a9a 2000 $usercontext = get_context_instance(CONTEXT_USER, $user->id);
7a7e209d
SH
2001
2002 // Get the course set against the page, by default this will be the site
3406acde
SH
2003 $course = $this->page->course;
2004 $baseargs = array('id'=>$user->id);
44303ca6 2005 if ($course->id != SITEID && (!$iscurrentuser || $forceforcontext)) {
e26507b3 2006 $coursenode = $this->load_course($course);
7a7e209d 2007 $baseargs['course'] = $course->id;
3406acde 2008 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
7a7e209d 2009 $issitecourse = false;
7d2a0492 2010 } else {
7a7e209d 2011 // Load all categories and get the context for the system
507a7a9a 2012 $coursecontext = get_context_instance(CONTEXT_SYSTEM);
7a7e209d
SH
2013 $issitecourse = true;
2014 }
2015
2016 // Create a node to add user information under.
87c215de 2017 if ($iscurrentuser && !$forceforcontext) {
3406acde
SH
2018 // If it's the current user the information will go under the profile root node
2019 $usernode = $this->rootnodes['myprofile'];
e96bc3f9
SH
2020 $course = get_site();
2021 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
2022 $issitecourse = true;
7a7e209d
SH
2023 } else {
2024 if (!$issitecourse) {
2025 // Not the current user so add it to the participants node for the current course
3406acde 2026 $usersnode = $coursenode->get('participants', navigation_node::TYPE_CONTAINER);
ad93ddd5 2027 $userviewurl = new moodle_url('/user/view.php', $baseargs);
7a7e209d
SH
2028 } else {
2029 // This is the site so add a users node to the root branch
3406acde 2030 $usersnode = $this->rootnodes['users'];
8b0614d9
DP
2031 if (has_capability('moodle/course:viewparticipants', $coursecontext)) {
2032 $usersnode->action = new moodle_url('/user/index.php', array('id'=>$course->id));
2033 }
ad93ddd5 2034 $userviewurl = new moodle_url('/user/profile.php', $baseargs);
7a7e209d 2035 }
f5c1e621
SH
2036 if (!$usersnode) {
2037 // We should NEVER get here, if the course hasn't been populated
2038 // with a participants node then the navigaiton either wasn't generated
2039 // for it (you are missing a require_login or set_context call) or
2040 // you don't have access.... in the interests of no leaking informatin
2041 // we simply quit...
2042 return false;
2043 }
7a7e209d 2044 // Add a branch for the current user
76565fa1
AG
2045 $canseefullname = has_capability('moodle/site:viewfullnames', $coursecontext);
2046 $usernode = $usersnode->add(fullname($user, $canseefullname), $userviewurl, self::TYPE_USER, null, $user->id);
3406acde 2047
5ac851fb
SH
2048 if ($this->page->context->contextlevel == CONTEXT_USER && $user->id == $this->page->context->instanceid) {
2049 $usernode->make_active();
2050 }
7a7e209d
SH
2051 }
2052
2053 // If the user is the current user or has permission to view the details of the requested
2054 // user than add a view profile link.
507a7a9a 2055 if ($iscurrentuser || has_capability('moodle/user:viewdetails', $coursecontext) || has_capability('moodle/user:viewdetails', $usercontext)) {
87c215de 2056 if ($issitecourse || ($iscurrentuser && !$forceforcontext)) {
03d9401e
MD
2057 $usernode->add(get_string('viewprofile'), new moodle_url('/user/profile.php',$baseargs));
2058 } else {
2059 $usernode->add(get_string('viewprofile'), new moodle_url('/user/view.php',$baseargs));
2060 }
7a7e209d
SH
2061 }
2062
356a6de3
SH
2063 if (!empty($CFG->navadduserpostslinks)) {
2064 // Add nodes for forum posts and discussions if the user can view either or both
2065 // There are no capability checks here as the content of the page is based
2066 // purely on the forums the current user has access too.
2067 $forumtab = $usernode->add(get_string('forumposts', 'forum'));
2068 $forumtab->add(get_string('posts', 'forum'), new moodle_url('/mod/forum/user.php', $baseargs));
2069 $forumtab->add(get_string('discussions', 'forum'), new moodle_url('/mod/forum/user.php', array_merge($baseargs, array('mode'=>'discussions'))));
2070 }
7a7e209d 2071
27bad0a6
SH
2072 // Add blog nodes
2073 if (!empty($CFG->bloglevel)) {
e26507b3
SH
2074 if (!$this->cache->cached('userblogoptions'.$user->id)) {
2075 require_once($CFG->dirroot.'/blog/lib.php');
2076 // Get all options for the user
2077 $options = blog_get_options_for_user($user);
2078 $this->cache->set('userblogoptions'.$user->id, $options);
2079 } else {
2080 $options = $this->cache->{'userblogoptions'.$user->id};
2081 }
2082
27bad0a6
SH
2083 if (count($options) > 0) {
2084 $blogs = $usernode->add(get_string('blogs', 'blog'), null, navigation_node::TYPE_CONTAINER);
c000545d
JF
2085 foreach ($options as $type => $option) {
2086 if ($type == "rss") {
2087 $blogs->add($option['string'], $option['link'], settings_navigation::TYPE_SETTING, null, null, new pix_icon('i/rss', ''));
2088 } else {
2089 $blogs->add($option['string'], $option['link']);
2090 }
27bad0a6
SH
2091 }
2092 }
2093 }
2094
5ac851fb
SH
2095 if (!empty($CFG->messaging)) {
2096 $messageargs = null;
2097 if ($USER->id!=$user->id) {
2098 $messageargs = array('id'=>$user->id);
2099 }
2100 $url = new moodle_url('/message/index.php',$messageargs);
2101 $usernode->add(get_string('messages', 'message'), $url, self::TYPE_SETTING, null, 'messages');
c81b9f69 2102 }
c81b9f69 2103
52d1a804
JG
2104 $context = get_context_instance(CONTEXT_USER, $USER->id);
2105 if ($iscurrentuser && has_capability('moodle/user:manageownfiles', $context)) {
82af55d7
MD
2106 $url = new moodle_url('/user/files.php');
2107 $usernode->add(get_string('myfiles'), $url, self::TYPE_SETTING);
78765507
DC
2108 }
2109
7a7e209d 2110 // Add a node to view the users notes if permitted
507a7a9a 2111 if (!empty($CFG->enablenotes) && has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $coursecontext)) {
3406acde
SH
2112 $url = new moodle_url('/notes/index.php',array('user'=>$user->id));
2113 if ($coursecontext->instanceid) {
2114 $url->param('course', $coursecontext->instanceid);
2115 }
2116 $usernode->add(get_string('notes', 'notes'), $url);
7a7e209d
SH
2117 }
2118
beda8fa8 2119 // Add reports node
4d00fded 2120 $reporttab = $usernode->add(get_string('activityreports'));
4d00fded
PS
2121 $reports = get_plugin_list_with_function('report', 'extend_navigation_user', 'lib.php');
2122 foreach ($reports as $reportfunction) {
2123 $reportfunction($reporttab, $user, $course);
2124 }
beda8fa8
PS
2125 $anyreport = has_capability('moodle/user:viewuseractivitiesreport', $usercontext);
2126 if ($anyreport || ($course->showreports && $iscurrentuser && $forceforcontext)) {
2127 // Add grade hardcoded grade report if necessary
03d9401e
MD
2128 $gradeaccess = false;
2129 if (has_capability('moodle/grade:viewall', $coursecontext)) {
2130 //ok - can view all course grades
7a7e209d 2131 $gradeaccess = true;
03d9401e
MD
2132 } else if ($course->showgrades) {
2133 if ($iscurrentuser && has_capability('moodle/grade:view', $coursecontext)) {
2134 //ok - can view own grades
2135 $gradeaccess = true;
2136 } else if (has_capability('moodle/grade:viewall', $usercontext)) {
2137 // ok - can view grades of this user - parent most probably
2138 $gradeaccess = true;
2139 } else if ($anyreport) {
2140 // ok - can view grades of this user - parent most probably
2141 $gradeaccess = true;
2142 }
2143 }
2144 if ($gradeaccess) {
a0b15989 2145 $reporttab->add(get_string('grade'), new moodle_url('/course/user.php', array('mode'=>'grade', 'id'=>$course->id, 'user'=>$usercontext->instanceid)));
7a7e209d 2146 }
7a7e209d 2147 }
beda8fa8 2148 // Check the number of nodes in the report node... if there are none remove the node
4d00fded
PS
2149 $reporttab->trim_if_empty();
2150
7a7e209d 2151 // If the user is the current user add the repositories for the current user
9acb8241 2152 $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields));
7a7e209d 2153 if ($iscurrentuser) {
e26507b3
SH
2154 if (!$this->cache->cached('contexthasrepos'.$usercontext->id)) {
2155 require_once($CFG->dirroot . '/repository/lib.php');
2156 $editabletypes = repository::get_editable_types($usercontext);
2157 $haseditabletypes = !empty($editabletypes);
2158 unset($editabletypes);
2159 $this->cache->set('contexthasrepos'.$usercontext->id, $haseditabletypes);
2160 } else {
2161 $haseditabletypes = $this->cache->{'contexthasrepos'.$usercontext->id};
2162 }
2163 if ($haseditabletypes) {
ad70376c 2164 $usernode->add(get_string('repositories', 'repository'), new moodle_url('/repository/manage_instances.php', array('contextid' => $usercontext->id)));
7a7e209d 2165 }
9acb8241
SH
2166 } else if ($course->id == SITEID && has_capability('moodle/user:viewdetails', $usercontext) && (!in_array('mycourses', $hiddenfields) || has_capability('moodle/user:viewhiddendetails', $coursecontext))) {
2167
2168 // Add view grade report is permitted
2169 $reports = get_plugin_list('gradereport');
2170 arsort($reports); // user is last, we want to test it first
2171
2172 $userscourses = enrol_get_users_courses($user->id);
2173 $userscoursesnode = $usernode->add(get_string('courses'));
69816a5c 2174
9acb8241
SH
2175 foreach ($userscourses as $usercourse) {
2176 $usercoursecontext = get_context_instance(CONTEXT_COURSE, $usercourse->id);
8ebbb06a
SH
2177 $usercourseshortname = format_string($usercourse->shortname, true, array('context' => $usercoursecontext));
2178 $usercoursenode = $userscoursesnode->add($usercourseshortname, new moodle_url('/user/view.php', array('id'=>$user->id, 'course'=>$usercourse->id)), self::TYPE_CONTAINER);
9acb8241
SH
2179
2180 $gradeavailable = has_capability('moodle/grade:viewall', $usercoursecontext);
2181 if (!$gradeavailable && !empty($usercourse->showgrades) && is_array($reports) && !empty($reports)) {
2182 foreach ($reports as $plugin => $plugindir) {
2183 if (has_capability('gradereport/'.$plugin.':view', $usercoursecontext)) {
2184 //stop when the first visible plugin is found
2185 $gradeavailable = true;
2186 break;
deaf04c7 2187 }
9acb8241
SH
2188 }
2189 }
2190
2191 if ($gradeavailable) {
2192 $url = new moodle_url('/grade/report/index.php', array('id'=>$usercourse->id));
2193 $usercoursenode->add(get_string('grades'), $url, self::TYPE_SETTING, null, null, new pix_icon('i/grades', ''));
2194 }
2195
2196 // Add a node to view the users notes if permitted
2197 if (!empty($CFG->enablenotes) && has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $usercoursecontext)) {
2198 $url = new moodle_url('/notes/index.php',array('user'=>$user->id, 'course'=>$usercourse->id));
2199 $usercoursenode->add(get_string('notes', 'notes'), $url, self::TYPE_SETTING);
2200 }
2201
1344b0ca 2202 if (can_access_course($usercourse, $user->id)) {
9acb8241
SH
2203 $usercoursenode->add(get_string('entercourse'), new moodle_url('/course/view.php', array('id'=>$usercourse->id)), self::TYPE_SETTING, null, null, new pix_icon('i/course', ''));
2204 }
2205
4d00fded
PS
2206 $reporttab = $usercoursenode->add(get_string('activityreports'));
2207
2208 $reports = get_plugin_list_with_function('report', 'extend_navigation_user', 'lib.php');
2209 foreach ($reports as $reportfunction) {
2210 $reportfunction($reporttab, $user, $usercourse);
2211 }
2212
4d00fded 2213 $reporttab->trim_if_empty();
9acb8241 2214 }
7a7e209d
SH
2215 }
2216 return true;
2217 }
2218
2219 /**
3406acde 2220 * This method simply checks to see if a given module can extend the navigation.
7d2a0492 2221 *
31fde54f 2222 * @todo (MDL-25290) A shared caching solution should be used to save details on what extends navigation.
e26507b3 2223 *
7d2a0492 2224 * @param string $modname
2225 * @return bool
2226 */
e26507b3 2227 protected static function module_extends_navigation($modname) {
7d2a0492 2228 global $CFG;
e26507b3
SH
2229 static $extendingmodules = array();
2230 if (!array_key_exists($modname, $extendingmodules)) {
2231 $extendingmodules[$modname] = false;
2232 $file = $CFG->dirroot.'/mod/'.$modname.'/lib.php';
2233 if (file_exists($file)) {
2234 $function = $modname.'_extend_navigation';
2235 require_once($file);
2236 $extendingmodules[$modname] = (function_exists($function));
7d2a0492 2237 }
2238 }
e26507b3 2239 return $extendingmodules[$modname];
7d2a0492 2240 }
2241 /**
3406acde 2242 * Extends the navigation for the given user.
435a512e 2243 *
3406acde 2244 * @param stdClass $user A user from the database
7d2a0492 2245 */
3406acde
SH
2246 public function extend_for_user($user) {
2247 $this->extendforuser[] = $user;
5d07e957
SH
2248 }
2249
2250 /**
2251 * Returns all of the users the navigation is being extended for
2252 *
31fde54f 2253 * @return array An array of extending users.
5d07e957
SH
2254 */
2255 public function get_extending_users() {
2256 return $this->extendforuser;
7d2a0492 2257 }
7d2a0492 2258 /**
3406acde 2259 * Adds the given course to the navigation structure.
7d2a0492 2260 *
3406acde 2261 * @param stdClass $course
31fde54f
AG
2262 * @param bool $forcegeneric (optional)
2263 * @param bool $ismycourse (optional)
3406acde 2264 * @return navigation_node
7d2a0492 2265 */
e26507b3 2266 public function add_course(stdClass $course, $forcegeneric = false, $ismycourse = false) {
4766a50c 2267 global $CFG;
44303ca6 2268
e26507b3
SH
2269 // We found the course... we can return it now :)
2270 if (!$forcegeneric && array_key_exists($course->id, $this->addedcourses)) {
2271 return $this->addedcourses[$course->id];
2272 }
2273
8ebbb06a
SH
2274 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
2275
e26507b3
SH
2276 if ($course->id != SITEID && !$course->visible) {
2277 if (is_role_switched($course->id)) {
2278 // user has to be able to access course in order to switch, let's skip the visibility test here
8ebbb06a 2279 } else if (!has_capability('moodle/course:viewhiddencourses', $coursecontext)) {
e26507b3 2280 return false;
44303ca6 2281 }
7d2a0492 2282 }
7d2a0492 2283
4766a50c 2284 $issite = ($course->id == SITEID);
e26507b3 2285 $ismycourse = ($ismycourse && !$forcegeneric);
8ebbb06a 2286 $shortname = format_string($course->shortname, true, array('context' => $coursecontext));
4766a50c
SH
2287
2288 if ($issite) {
3406acde 2289 $parent = $this;
4766a50c 2290 $url = null;
016ba638
SH
2291 if (empty($CFG->usesitenameforsitepages)) {
2292 $shortname = get_string('sitepages');
2293 }
4766a50c 2294 } else if ($ismycourse) {
b0712163
SH
2295 if (!empty($CFG->navshowmycoursecategories) && ($parent = $this->rootnodes['mycourses']->find($course->category, self::TYPE_CATEGORY))) {
2296 // Nothing to do here the above statement set $parent to the category within mycourses.
2297 } else {
2298 $parent = $this->rootnodes['mycourses'];
2299 }
3406acde 2300 $url = new moodle_url('/course/view.php', array('id'=>$course->id));
7a7e209d 2301 } else {
3406acde 2302 $parent = $this->rootnodes['courses'];
a6855934 2303 $url = new moodle_url('/course/view.php', array('id'=>$course->id));
7d2a0492 2304 }
4766a50c 2305
3992a46e 2306 if (!$ismycourse && !$issite && !empty($course->category)) {
9bf5af21 2307 if ($this->show_categories()) {
3992a46e
SH
2308 // We need to load the category structure for this course
2309 $this->load_all_categories($course->category);
2310 }
2311 if (array_key_exists($course->category, $this->addedcategories)) {
2312 $parent = $this->addedcategories[$course->category];
2313 // This could lead to the course being created so we should check whether it is the case again
2314 if (!$forcegeneric && array_key_exists($course->id, $this->addedcourses)) {
2315 return $this->addedcourses[$course->id];
2316 }
4766a50c
SH
2317 }
2318 }
2319
95892197 2320 $coursenode = $parent->add($shortname, $url, self::TYPE_COURSE, $shortname, $course->id);
3406acde
SH
2321 $coursenode->nodetype = self::NODETYPE_BRANCH;
2322 $coursenode->hidden = (!$course->visible);
91d284c1 2323 $coursenode->title(format_string($course->fullname, true, array('context' => get_context_instance(CONTEXT_COURSE, $course->id))));
e26507b3
SH
2324 if (!$forcegeneric) {
2325 $this->addedcourses[$course->id] = &$coursenode;
2326 }
4766a50c
SH
2327 if ($ismycourse && !empty($CFG->navshowallcourses)) {
2328 // We need to add this course to the general courses node as well as the
2329 // my courses node, rerun the function with the kill param
2330 $genericcourse = $this->add_course($course, true);
2331 if ($genericcourse->isactive) {
2332 $genericcourse->make_inactive();
2333 $genericcourse->collapse = true;
2334 if ($genericcourse->parent && $genericcourse->parent->type == self::TYPE_CATEGORY) {
2335 $parent = $genericcourse->parent;
2336 while ($parent && $parent->type == self::TYPE_CATEGORY) {
2337 $parent->collapse = true;
2338 $parent = $parent->parent;
2339 }
2340 }
2341 }
2342 }
e26507b3 2343
3406acde 2344 return $coursenode;
7d2a0492 2345 }
2346 /**
3406acde 2347 * Adds essential course nodes to the navigation for the given course.
7d2a0492 2348 *
3406acde 2349 * This method adds nodes such as reports, blogs and participants
7d2a0492 2350 *
3406acde
SH
2351 * @param navigation_node $coursenode
2352 * @param stdClass $course
31fde54f 2353 * @return bool returns true on successful addition of a node.
7d2a0492 2354 */
2027c10e 2355 public function add_course_essentials($coursenode, stdClass $course) {
3406acde 2356 global $CFG;
7d2a0492 2357
4766a50c 2358 if ($course->id == SITEID) {
3406acde 2359 return $this->add_front_page_course_essentials($coursenode, $course);
7d2a0492 2360 }
7d2a0492 2361
2027c10e 2362 if ($coursenode == false || !($coursenode instanceof navigation_node) || $coursenode->get('participants', navigation_node::TYPE_CONTAINER)) {
3406acde 2363 return true;
7d2a0492 2364 }
7d2a0492 2365
3406acde
SH
2366 //Participants
2367 if (has_capability('moodle/course:viewparticipants', $this->page->context)) {
3406acde
SH
2368 $participants = $coursenode->add(get_string('participants'), new moodle_url('/user/index.php?id='.$course->id), self::TYPE_CONTAINER, get_string('participants'), 'participants');
2369 $currentgroup = groups_get_course_group($course, true);
2370 if ($course->id == SITEID) {
2371 $filterselect = '';
2372 } else if ($course->id && !$currentgroup) {
2373 $filterselect = $course->id;
2374 } else {
2375 $filterselect = $currentgroup;
2376 }
2377 $filterselect = clean_param($filterselect, PARAM_INT);
8f6c1f34
PS
2378 if (($CFG->bloglevel == BLOG_GLOBAL_LEVEL or ($CFG->bloglevel == BLOG_SITE_LEVEL and (isloggedin() and !isguestuser())))
2379 and has_capability('moodle/blog:view', get_context_instance(CONTEXT_SYSTEM))) {
3406acde 2380 $blogsurls = new moodle_url('/blog/index.php', array('courseid' => $filterselect));
ec21eaba 2381 $participants->add(get_string('blogscourse','blog'), $blogsurls->out());
3406acde
SH
2382 }
2383 if (!empty($CFG->enablenotes) && (has_capability('moodle/notes:manage', $this->page->context) || has_capability('moodle/notes:view', $this->page->context))) {
41eae0d9 2384 $participants->add(get_string('notes','notes'), new moodle_url('/notes/index.php', array('filtertype'=>'course', 'filterselect'=>$course->id)));
3406acde 2385 }
533299cb 2386 } else if (count($this->extendforuser) > 0 || $this->page->course->id == $course->id) {
3406acde
SH
2387 $participants = $coursenode->add(get_string('participants'), null, self::TYPE_CONTAINER, get_string('participants'), 'participants');
2388 }
2389
2390 // View course reports
2391 if (has_capability('moodle/site:viewreports', $this->page->context)) { // basic capability for listing of reports
275cbac7
PS
2392 $reportnav = $coursenode->add(get_string('reports'), null, self::TYPE_CONTAINER, null, null, new pix_icon('i/stats', ''));
2393 $coursereports = get_plugin_list('coursereport'); // deprecated
3406acde
SH
2394 foreach ($coursereports as $report=>$dir) {
2395 $libfile = $CFG->dirroot.'/course/report/'.$report.'/lib.php';
2396 if (file_exists($libfile)) {
2397 require_once($libfile);
2398 $reportfunction = $report.'_report_extend_navigation';
2399 if (function_exists($report.'_report_extend_navigation')) {
2400 $reportfunction($reportnav, $course, $this->page->context);
7d2a0492 2401 }
2402 }
2403 }
275cbac7
PS
2404
2405 $reports = get_plugin_list_with_function('report', 'extend_navigation_course', 'lib.php');
2406 foreach ($reports as $reportfunction) {
2407 $reportfunction($reportnav, $course, $this->page->context);
2408 }
7d2a0492 2409 }
2410 return true;
2411 }
deaf04c7 2412 /**
31fde54f 2413 * This generates the structure of the course that won't be generated when
deaf04c7
SH
2414 * the modules and sections are added.
2415 *
2416 * Things such as the reports branch, the participants branch, blogs... get
2417 * added to the course node by this method.
2418 *
2419 * @param navigation_node $coursenode
2420 * @param stdClass $course
2421 * @return bool True for successfull generation
2422 */
3406acde
SH
2423 public function add_front_page_course_essentials(navigation_node $coursenode, stdClass $course) {
2424 global $CFG;
7d2a0492 2425
1fa692ed 2426 if ($coursenode == false || $coursenode->get('frontpageloaded', navigation_node::TYPE_CUSTOM)) {
3406acde 2427 return true;
7a7e209d
SH
2428 }
2429
1fa692ed
SH
2430 // Hidden node that we use to determine if the front page navigation is loaded.
2431 // This required as there are not other guaranteed nodes that may be loaded.
2432 $coursenode->add('frontpageloaded', null, self::TYPE_CUSTOM, null, 'frontpageloaded')->display = false;
2433
3406acde 2434 //Participants
b475cf4c 2435 if (has_capability('moodle/course:viewparticipants', get_system_context())) {
3406acde
SH
2436 $coursenode->add(get_string('participants'), new moodle_url('/user/index.php?id='.$course->id), self::TYPE_CUSTOM, get_string('participants'), 'participants');
2437 }
435a512e 2438
83a5e4fc 2439 $filterselect = 0;
593270c6
MD
2440
2441 // Blogs
8f6c1f34
PS
2442 if (!empty($CFG->bloglevel)
2443 and ($CFG->bloglevel == BLOG_GLOBAL_LEVEL or ($CFG->bloglevel == BLOG_SITE_LEVEL and (isloggedin() and !isguestuser())))
2444 and has_capability('moodle/blog:view', get_context_instance(CONTEXT_SYSTEM))) {
2445 $blogsurls = new moodle_url('/blog/index.php', array('courseid' => $filterselect));
ec21eaba 2446 $coursenode->add(get_string('blogssite','blog'), $blogsurls->out());
7d2a0492 2447 }
593270c6
MD
2448
2449 // Notes
3406acde
SH
2450 if (!empty($CFG->enablenotes) && (has_capability('moodle/notes:manage', $this->page->context) || has_capability('moodle/notes:view', $this->page->context))) {
2451 $coursenode->add(get_string('notes','notes'), new moodle_url('/notes/index.php', array('filtertype'=>'course', 'filterselect'=>$filterselect)));
2452 }
593270c6
MD
2453
2454 // Tags
2455 if (!empty($CFG->usetags) && isloggedin()) {
3406acde 2456 $coursenode->add(get_string('tags', 'tag'), new moodle_url('/tag/search.php'));
7d2a0492 2457 }
6644741d 2458
e7f9b7ab
SH
2459 if (isloggedin()) {
2460 // Calendar
2461 $calendarurl = new moodle_url('/calendar/view.php', array('view' => 'month'));
2462 $coursenode->add(get_string('calendar', 'calendar'), $calendarurl, self::TYPE_CUSTOM, null, 'calendar');
2463 }
6644741d 2464
3406acde
SH
2465 // View course reports
2466 if (has_capability('moodle/site:viewreports', $this->page->context)) { // basic capability for listing of reports
275cbac7
PS
2467 $reportnav = $coursenode->add(get_string('reports'), null, self::TYPE_CONTAINER, null, null, new pix_icon('i/stats', ''));
2468 $coursereports = get_plugin_list('coursereport'); // deprecated
3406acde
SH
2469 foreach ($coursereports as $report=>$dir) {
2470 $libfile = $CFG->dirroot.'/course/report/'.$report.'/lib.php';
2471 if (file_exists($libfile)) {
2472 require_once($libfile);
2473 $reportfunction = $report.'_report_extend_navigation';
2474 if (function_exists($report.'_report_extend_navigation')) {
2475 $reportfunction($reportnav, $course, $this->page->context);
2476 }
6644741d 2477 }
6644741d 2478 }
275cbac7
PS
2479
2480 $reports = get_plugin_list_with_function('report', 'extend_navigation_course', 'lib.php');
2481 foreach ($reports as $reportfunction) {
2482 $reportfunction($reportnav, $course, $this->page->context);
2483 }
6644741d 2484 }
3406acde 2485 return true;
6644741d 2486 }
da3ab9c4 2487
3406acde
SH
2488 /**
2489 * Clears the navigation cache
2490 */
2491 public function clear_cache() {
2492 $this->cache->clear();
da3ab9c4 2493 }
88f77c3c 2494
deaf04c7
SH
2495 /**
2496 * Sets an expansion limit for the navigation
2497 *
2498 * The expansion limit is used to prevent the display of content that has a type
2499 * greater than the provided $type.
2500 *
2501 * Can be used to ensure things such as activities or activity content don't get
2502 * shown on the navigation.
2503 * They are still generated in order to ensure the navbar still makes sense.
2504 *
2505 * @param int $type One of navigation_node::TYPE_*
31fde54f 2506 * @return bool true when complete.
deaf04c7 2507 */
88f77c3c
SH
2508 public function set_expansion_limit($type) {
2509 $nodes = $this->find_all_of_type($type);
2510 foreach ($nodes as &$node) {
1af67ecb
SH
2511 // We need to generate the full site node
2512 if ($type == self::TYPE_COURSE && $node->key == SITEID) {
2513 continue;
2514 }
88f77c3c 2515 foreach ($node->children as &$child) {
1af67ecb
SH
2516 // We still want to show course reports and participants containers
2517 // or there will be navigation missing.
2518 if ($type == self::TYPE_COURSE && $child->type === self::TYPE_CONTAINER) {
2519 continue;
2520 }
88f77c3c
SH
2521 $child->display = false;
2522 }
2523 }
2524 return true;
2525 }
deaf04c7
SH
2526 /**
2527 * Attempts to get the navigation with the given key from this nodes children.
2528 *
2529 * This function only looks at this nodes children, it does NOT look recursivily.
2530 * If the node can't be found then false is returned.
2531 *
93123b17 2532 * If you need to search recursivily then use the {@link global_navigation::find()} method.
deaf04c7 2533 *
93123b17 2534 * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
deaf04c7
SH
2535 * may be of more use to you.
2536 *
2537 * @param string|int $key The key of the node you wish to receive.
2538 * @param int $type One of navigation_node::TYPE_*
2539 * @return navigation_node|false
2540 */
e2b436d0 2541 public function get($key, $type = null) {
246a9b05
SH
2542 if (!$this->initialised) {
2543 $this->initialise();
2544 }
54dc15ab 2545 return parent::get($key, $type);
e2b436d0
SH
2546 }
2547
deaf04c7 2548 /**
31fde54f 2549 * Searches this nodes children and their children to find a navigation node
deaf04c7
SH
2550 * with the matching key and type.
2551 *
2552 * This method is recursive and searches children so until either a node is
31fde54f 2553 * found or there are no more nodes to search.
deaf04c7
SH
2554 *
2555 * If you know that the node being searched for is a child of this node
93123b17 2556 * then use the {@link global_navigation::get()} method instead.
deaf04c7 2557 *
93123b17 2558 * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
deaf04c7
SH
2559 * may be of more use to you.
2560 *
2561 * @param string|int $key The key of the node you wish to receive.
2562 * @param int $type One of navigation_node::TYPE_*
2563 * @return navigation_node|false
2564 */
e2b436d0 2565 public function find($key, $type) {
246a9b05
SH
2566 if (!$this->initialised) {
2567 $this->initialise();
2568 }
54dc15ab 2569 return parent::find($key, $type);
e2b436d0 2570 }
7d2a0492 2571}
2572
2573/**
2574 * The limited global navigation class used for the AJAX extension of the global
2575 * navigation class.
2576 *
2577 * The primary methods that are used in the global navigation class have been overriden
2578 * to ensure that only the relevant branch is generated at the root of the tree.
2579 * This can be done because AJAX is only used when the backwards structure for the
2580 * requested branch exists.
2581 * This has been done only because it shortens the amounts of information that is generated
2582 * which of course will speed up the response time.. because no one likes laggy AJAX.
2583 *
31fde54f
AG
2584 * @package core
2585 * @category navigation
7d2a0492 2586 * @copyright 2009 Sam Hemelryk
2587 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2588 */
507a7a9a 2589class global_navigation_for_ajax extends global_navigation {
3406acde 2590
31fde54f 2591 /** @var int used for determining what type of navigation_node::TYPE_* is being used */
39ae5e54 2592 protected $branchtype;
31fde54f
AG
2593
2594 /** @var int the instance id */
39ae5e54
SH
2595 protected $instanceid;
2596
31fde54f 2597 /** @var array Holds an array of expandable nodes */
3406acde
SH
2598 protected $expandable = array();
2599
7d2a0492 2600 /**
31fde54f
AG
2601 * Constructs the navigation for use in an AJAX request
2602 *
2603 * @param moodle_page $page moodle_page object
2604 * @param int $branchtype
2605 * @param int $id
3406acde 2606 */
246a9b05 2607 public function __construct($page, $branchtype, $id) {
4766a50c 2608 $this->page = $page;
3406acde
SH
2609 $this->cache = new navigation_cache(NAVIGATION_CACHE_NAME);
2610 $this->children = new navigation_node_collection();
39ae5e54
SH
2611 $this->branchtype = $branchtype;
2612 $this->instanceid = $id;
2613 $this->initialise();
3406acde
SH
2614 }
2615 /**
2616 * Initialise the navigation given the type and id for the branch to expand.
7d2a0492 2617 *
31fde54f 2618 * @return array An array of the expandable nodes
7d2a0492 2619 */
39ae5e54
SH
2620 public function initialise() {
2621 global $CFG, $DB, $SITE;
507a7a9a 2622
7d2a0492 2623 if ($this->initialised || during_initial_install()) {
95b97515 2624 return $this->expandable;
7d2a0492 2625 }
246a9b05
SH
2626 $this->initialised = true;
2627
2628 $this->rootnodes = array();
e26507b3 2629 $this->rootnodes['site'] = $this->add_course($SITE);
246a9b05 2630 $this->rootnodes['courses'] = $this->add(get_string('courses'), null, self::TYPE_ROOTNODE, null, 'courses');
507a7a9a
SH
2631
2632 // Branchtype will be one of navigation_node::TYPE_*
39ae5e54 2633 switch ($this->branchtype) {
4766a50c 2634 case self::TYPE_CATEGORY :
39ae5e54 2635 $this->load_all_categories($this->instanceid);
4766a50c
SH
2636 $limit = 20;
2637 if (!empty($CFG->navcourselimit)) {
2638 $limit = (int)$CFG->navcourselimit;
2639 }
39ae5e54 2640 $courses = $DB->get_records('course', array('category' => $this->instanceid), 'sortorder','*', 0, $limit);
4766a50c
SH
2641 foreach ($courses as $course) {
2642 $this->add_course($course);
2643 }
2644 break;
507a7a9a 2645 case self::TYPE_COURSE :
39ae5e54 2646 $course = $DB->get_record('course', array('id' => $this->instanceid), '*', MUST_EXIST);
04bcd1ce 2647 require_course_login($course, true, null, false, true);
87c215de 2648 $this->page->set_context(get_context_instance(CONTEXT_COURSE, $course->id));
3406acde
SH
2649 $coursenode = $this->add_course($course);
2650 $this->add_course_essentials($coursenode, $course);
2651 if ($this->format_display_course_content($course->format)) {
2652 $this->load_course_sections($course, $coursenode);
2653 }
7d2a0492 2654 break;
507a7a9a 2655 case self::TYPE_SECTION :
3406acde 2656 $sql = 'SELECT c.*, cs.section AS sectionnumber
507a7a9a
SH
2657 FROM {course} c
2658 LEFT JOIN {course_sections} cs ON cs.course = c.id
2659 WHERE cs.id = ?';
39ae5e54 2660 $course = $DB->get_record_sql($sql, array($this->instanceid), MUST_EXIST);
04bcd1ce 2661 require_course_login($course, true, null, false, true);
87c215de 2662 $this->page->set_context(get_context_instance(CONTEXT_COURSE, $course->id));
3406acde
SH
2663 $coursenode = $this->add_course($course);
2664 $this->add_course_essentials($coursenode, $course);
2665 $sections = $this->load_course_sections($course, $coursenode);
e26507b3
SH
2666 list($sectionarray, $activities) = $this->generate_sections_and_activities($course);
2667 $this->load_section_activities($sections[$course->sectionnumber]->sectionnode, $course->sectionnumber, $activities);
7d2a0492 2668 break;
507a7a9a 2669 case self::TYPE_ACTIVITY :
c78262b5
SH
2670 $sql = "SELECT c.*
2671 FROM {course} c
2672 JOIN {course_modules} cm ON cm.course = c.id
2673 WHERE cm.id = :cmid";
2674 $params = array('cmid' => $this->instanceid);
2675 $course = $DB->get_record_sql($sql, $params, MUST_EXIST);
f0dcc212
SH
2676 $modinfo = get_fast_modinfo($course);
2677 $cm = $modinfo->get_cm($this->instanceid);
04bcd1ce 2678 require_course_login($course, true, $cm, false, true);
87c215de 2679 $this->page->set_context(get_context_instance(CONTEXT_MODULE, $cm->id));
3406acde 2680 $coursenode = $this->load_course($course);
1aa1e9b5
SH
2681 if ($course->id == SITEID) {
2682 $modulenode = $this->load_activity($cm, $course, $coursenode->find($cm->id, self::TYPE_ACTIVITY));
2683 } else {
c78262b5 2684 $sections = $this->load_course_sections($course, $coursenode);
e26507b3
SH
2685 list($sectionarray, $activities) = $this->generate_sections_and_activities($course);
2686 $activities = $this->load_section_activities($sections[$cm->sectionnum]->sectionnode, $cm->sectionnum, $activities);
1aa1e9b5
SH
2687 $modulenode = $this->load_activity($cm, $course, $activities[$cm->id]);
2688 }
7d2a0492 2689 break;
507a7a9a 2690 default:
3406acde 2691 throw new Exception('Unknown type');
507a7a9a 2692 return $this->expandable;
7d2a0492 2693 }
588a3953
SH
2694
2695 if ($this->page->context->contextlevel == CONTEXT_COURSE && $this->page->context->instanceid != SITEID) {
2696 $this->load_for_user(null, true);
2697 }
2698
507a7a9a 2699 $this->find_expandable($this->expandable);
507a7a9a 2700 return $this->expandable;
246a9b05
SH
2701 }
2702
deaf04c7
SH
2703 /**
2704 * Returns an array of expandable nodes
2705 * @return array
2706 */
246a9b05
SH
2707 public function get_expandable() {
2708 return $this->expandable;
7d2a0492 2709 }
7d2a0492 2710}
2711
2712/**
2713 * Navbar class
2714 *
2715 * This class is used to manage the navbar, which is initialised from the navigation
2716 * object held by PAGE
2717 *
31fde54f
AG
2718 * @package core
2719 * @category navigation
7d2a0492 2720 * @copyright 2009 Sam Hemelryk
2721 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2722 */
2723class navbar extends navigation_node {
31fde54f 2724 /** @var bool A switch for whether the navbar is initialised or not */
7d2a0492 2725 protected $initialised = false;
31fde54f 2726 /** @var mixed keys used to reference the nodes on the navbar */
7d2a0492 2727 protected $keys = array();
31fde54f 2728 /** @var null|string content of the navbar */
7d2a0492 2729 protected $content = null;
31fde54f 2730 /** @var moodle_page object the moodle page that this navbar belongs to */
7d2a0492 2731 protected $page;
31fde54f 2732 /** @var bool A switch for whether to ignore the active navigation information */
31759089 2733 protected $ignoreactive = false;
31fde54f 2734 /** @var bool A switch to let us know if we are in the middle of an install */
7d2a0492 2735 protected $duringinstall = false;
31fde54f 2736 /** @var bool A switch for whether the navbar has items */
7a7e209d 2737 protected $hasitems = false;
31fde54f 2738 /** @var array An array of navigation nodes for the navbar */
3406acde 2739 protected $items;
31fde54f 2740 /** @var array An array of child node objects */
3406acde 2741 public $children = array();
31fde54f 2742 /** @var bool A switch for whether we want to include the root node in the navbar */
4d5059d4 2743 public $includesettingsbase = false;
7d2a0492 2744 /**
2745 * The almighty constructor
3406acde
SH
2746 *
2747 * @param moodle_page $page
7d2a0492 2748 */
3406acde 2749 public function __construct(moodle_page $page) {
507a7a9a 2750 global $CFG;
7d2a0492 2751 if (during_initial_install()) {
2752 $this->duringinstall = true;
2753 return false;
2754 }
2755 $this->page = $page;
2756 $this->text = get_string('home');
2757 $this->shorttext = get_string('home');
2758 $this->action = new moodle_url($CFG->wwwroot);
2759 $this->nodetype = self::NODETYPE_BRANCH;
2760 $this->type = self::TYPE_SYSTEM;
2761 }
2762
2763 /**
2764 * Quick check to see if the navbar will have items in.
2765 *
2766 * @return bool Returns true if the navbar will have items, false otherwise
2767 */
2768 public function has_items() {
2769 if ($this->duringinstall) {
2770 return false;
7a7e209d
SH
2771 } else if ($this->hasitems !== false) {
2772 return true;
7d2a0492 2773 }
3406acde 2774 $this->page->navigation->initialise($this->page);
bf6c37c7 2775
7a7e209d 2776 $activenodefound = ($this->page->navigation->contains_active_node() ||
3406acde 2777 $this->page->settingsnav->contains_active_node());
bf6c37c7 2778
3406acde 2779 $outcome = (count($this->children)>0 || (!$this->ignoreactive && $activenodefound));
7a7e209d 2780 $this->hasitems = $outcome;
bf6c37c7 2781 return $outcome;
31759089 2782 }
2783
3406acde
SH
2784 /**
2785 * Turn on/off ignore active
2786 *
2787 * @param bool $setting
2788 */
31759089 2789 public function ignore_active($setting=true) {
2790 $this->ignoreactive = ($setting);
7d2a0492 2791 }
31fde54f
AG
2792
2793 /**
2794 * Gets a navigation node
2795 *
2796 * @param string|int $key for referencing the navbar nodes
2797 * @param int $type navigation_node::TYPE_*
2798 * @return navigation_node|bool
2799 */
3406acde
SH
2800 public function get($key, $type = null) {
2801 foreach ($this->children as &$child) {
2802 if ($child->key === $key && ($type == null || $type == $child->type)) {
2803 return $child;
2804 }
2805 }
2806 return false;
2807 }
7d2a0492 2808 /**
3406acde 2809 * Returns an array of navigation_node's that make up the navbar.
435a512e 2810 *
3406acde 2811 * @return array
7d2a0492 2812 */
3406acde
SH
2813 public function get_items() {
2814 $items = array();
7d2a0492 2815 // Make sure that navigation is initialised
7a7e209d 2816 if (!$this->has_items()) {
3406acde 2817 return $items;
7a7e209d 2818 }
3406acde
SH
2819 if ($this->items !== null) {
2820 return $this->items;
7d2a0492 2821 }
2822
3406acde
SH
2823 if (count($this->children) > 0) {
2824 // Add the custom children
2825 $items = array_reverse($this->children);
2826 }
117bd748 2827
3406acde
SH
2828 $navigationactivenode = $this->page->navigation->find_active_node();
2829 $settingsactivenode = $this->page->settingsnav->find_active_node();
0b29477b 2830
7d2a0492 2831 // Check if navigation contains the active node
0b29477b 2832 if (!$this->ignoreactive) {
435a512e 2833
3406acde 2834 if ($navigationactivenode && $settingsactivenode) {
0b29477b 2835 // Parse a combined navigation tree
3406acde
SH
2836 while ($settingsactivenode && $settingsactivenode->parent !== null) {
2837 if (!$settingsactivenode->mainnavonly) {
2838 $items[] = $settingsactivenode;
2839 }
2840 $settingsactivenode = $settingsactivenode->parent;
2841 }
4d5059d4
SH
2842 if (!$this->includesettingsbase) {
2843 // Removes the first node from the settings (root node) from the list
2844 array_pop($items);
2845 }
3406acde
SH
2846 while ($navigationactivenode && $navigationactivenode->parent !== null) {
2847 if (!$navigationactivenode->mainnavonly) {
2848 $items[] = $navigationactivenode;
2849 }
2850 $navigationactivenode = $navigationactivenode->parent;
0b29477b 2851 }
3406acde 2852 } else if ($navigationactivenode) {
0b29477b 2853 // Parse the navigation tree to get the active node
3406acde
SH
2854 while ($navigationactivenode && $navigationactivenode->parent !== null) {
2855 if (!$navigationactivenode->mainnavonly) {
2856 $items[] = $navigationactivenode;
2857 }
2858 $navigationactivenode = $navigationactivenode->parent;
2859 }
2860 } else if ($settingsactivenode) {
0b29477b 2861 // Parse the settings navigation to get the active node
3406acde
SH
2862 while ($settingsactivenode && $settingsactivenode->parent !== null) {
2863 if (!$settingsactivenode->mainnavonly) {
2864 $items[] = $settingsactivenode;
2865 }
2866 $settingsactivenode = $settingsactivenode->parent;
2867 }
0b29477b 2868 }
7d2a0492 2869 }
a3bbac8b 2870
3406acde
SH
2871 $items[] = new navigation_node(array(
2872 'text'=>$this->page->navigation->text,
2873 'shorttext'=>$this->page->navigation->shorttext,
2874 'key'=>$this->page->navigation->key,
2875 'action'=>$this->page->navigation->action
2876 ));
a3bbac8b 2877
3406acde
SH
2878 $this->items = array_reverse($items);
2879 return $this->items;
7d2a0492 2880 }
507a7a9a 2881
7d2a0492 2882 /**
3406acde 2883 * Add a new navigation_node to the navbar, overrides parent::add
7d2a0492 2884 *
2885 * This function overrides {@link navigation_node::add()} so that we can change
2886 * the way nodes get added to allow us to simply call add and have the node added to the
2887 * end of the navbar
2888 *
2889 * @param string $text
7d2a0492 2890 * @param string|moodle_url $action
d972bad1 2891 * @param int $type
2892 * @param string|int $key
2893 * @param string $shorttext
7d2a0492 2894 * @param string $icon
3406acde 2895 * @return navigation_node
7d2a0492 2896 */
f9fc1461 2897 public function add($text, $action=null, $type=self::TYPE_CUSTOM, $shorttext=null, $key=null, pix_icon $icon=null) {
3406acde
SH
2898 if ($this->content !== null) {
2899 debugging('Nav bar items must be printed before $OUTPUT->header() has been called', DEBUG_DEVELOPER);
2900 }
435a512e 2901
3406acde
SH
2902 // Properties array used when creating the new navigation node
2903 $itemarray = array(
2904 'text' => $text,
2905 'type' => $type
2906 );
2907 // Set the action if one was provided
2908 if ($action!==null) {
2909 $itemarray['action'] = $action;
2910 }
2911 // Set the shorttext if one was provided
2912 if ($shorttext!==null) {
2913 $itemarray['shorttext'] = $shorttext;
2914 }
2915 // Set the icon if one was provided
2916 if ($icon!==null) {
2917 $itemarray['icon'] = $icon;
7d2a0492 2918 }
3406acde
SH
2919 // Default the key to the number of children if not provided
2920 if ($key === null) {
2921 $key = count($this->children);
7d2a0492 2922 }
3406acde
SH
2923 // Set the key
2924 $itemarray['key'] = $key;
2925 // Set the parent to this node
2926 $itemarray['parent'] = $this;
2927 // Add the child using the navigation_node_collections add method
2928 $this->children[] = new navigation_node($itemarray);
2929 return $this;
7d2a0492 2930 }
2931}
2932
2933/**
2934 * Class used to manage the settings option for the current page
2935 *
2936 * This class is used to manage the settings options in a tree format (recursively)
2937 * and was created initially for use with the settings blocks.
2938 *
31fde54f
AG
2939 * @package core
2940 * @category navigation
7d2a0492 2941 * @copyright 2009 Sam Hemelryk
2942 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2943 */
2944class settings_navigation extends navigation_node {
31fde54f 2945 /** @var stdClass the current context */
7d2a0492 2946 protected $context;
31fde54f 2947 /** @var moodle_page the moodle page that the navigation belongs to */
7d2a0492 2948 protected $page;
31fde54f 2949 /** @var string contains administration section navigation_nodes */
d9d2817a 2950 protected $adminsection;
31fde54f 2951 /** @var bool A switch to see if the navigation node is initialised */
4766a50c 2952 protected $initialised = false;
31fde54f 2953 /** @var array An array of users that the nodes can extend for. */
87c215de 2954 protected $userstoextendfor = array();
e26507b3
SH
2955 /** @var navigation_cache **/
2956 protected $cache;
4766a50c 2957
7d2a0492 2958 /**
2959 * Sets up the object with basic settings and preparse it for use
435a512e 2960 *
3406acde 2961 * @param moodle_page $page
7d2a0492 2962 */
507a7a9a 2963 public function __construct(moodle_page &$page) {
7d2a0492 2964 if (during_initial_install()) {
2965 return false;
2966 }
7d2a0492 2967 $this->page = $page;
2968 // Initialise the main navigation. It is most important that this is done
2969 // before we try anything
2970 $this->page->navigation->initialise();
2971 // Initialise the navigation cache
f5b5a822 2972 $this->cache = new navigation_cache(NAVIGATION_CACHE_NAME);
3406acde 2973 $this->children = new navigation_node_collection();
7d2a0492 2974 }
2975 /**
2976 * Initialise the settings navigation based on the current context
2977 *
2978 * This function initialises the settings navigation tree for a given context
2979 * by calling supporting functions to generate major parts of the tree.
3406acde 2980 *
7d2a0492 2981 */
2982 public function initialise() {
7e90d3a4 2983 global $DB, $SESSION;
4f0c2d00 2984
7d2a0492 2985 if (during_initial_install()) {
2986 return false;
4766a50c
SH
2987 } else if ($this->initialised) {
2988 return true;
7d2a0492 2989 }
2990 $this->id = 'settingsnav';
2991 $this->context = $this->page->context;
0b29477b
SH
2992
2993 $context = $this->context;
2994 if ($context->contextlevel == CONTEXT_BLOCK) {
2995 $this->load_block_settings();
e922fe23 2996 $context = $context->get_parent_context();
0b29477b
SH
2997 }
2998
2999 switch ($context->contextlevel) {
7d2a0492 3000 case CONTEXT_SYSTEM:
0b29477b
SH
3001 if ($this->page->url->compare(new moodle_url('/admin/settings.php', array('section'=>'frontpagesettings')))) {
3002 $this->load_front_page_settings(($context->id == $this->context->id));
3003 }
7d2a0492 3004 break;
3005 case CONTEXT_COURSECAT:
0b29477b 3006 $this->load_category_settings();
7d2a0492 3007 break;
3008 case CONTEXT_COURSE:
0b29477b
SH
3009 if ($this->page->course->id != SITEID) {
3010 $this->load_course_settings(($context->id == $this->context->id));
7d2a0492 3011 } else {
0b29477b 3012 $this->load_front_page_settings(($context->id == $this->context->id));
7d2a0492 3013 }
3014 break;
3015 case CONTEXT_MODULE:
0b29477b
SH
3016 $this->load_module_settings();
3017 $this->load_course_settings();
7d2a0492 3018 break;
3019 case CONTEXT_USER:
0b29477b
SH
3020 if ($this->page->course->id != SITEID) {
3021 $this->load_course_settings();
7d2a0492 3022 }
7d2a0492 3023 break;
3024 }
3025
3406acde 3026 $settings = $this->load_user_settings($this->page->course->id);
7e90d3a4
SH
3027
3028 if (isloggedin() && !isguestuser() && (!property_exists($SESSION, 'load_navigation_admin') || $SESSION->load_navigation_admin)) {
3029 $admin = $this->load_administration_settings();
3030 $SESSION->load_navigation_admin = ($admin->has_children());
3031 } else {
3032 $admin = false;
3033 }
0b29477b 3034
3406acde
SH
3035 if ($context->contextlevel == CONTEXT_SYSTEM && $admin) {
3036 $admin->force_open();
3037 } else if ($context->contextlevel == CONTEXT_USER && $settings) {
3038 $settings->force_open();
0b29477b
SH
3039 }
3040
7d2a0492 3041 // Check if the user is currently logged in as another user
3042 if (session_is_loggedinas()) {
3043 // Get the actual user, we need this so we can display an informative return link
3044 $realuser = session_get_realuser();
3045 // Add the informative return to original user link
a6855934 3046 $url = new moodle_url('/course/loginas.php',array('id'=>$this->page->course->id, 'return'=>1,'sesskey'=>sesskey()));
f9fc1461 3047 $this->add(get_string('returntooriginaluser', 'moodle', fullname($realuser, true)), $url, self::TYPE_SETTING, null, null, new pix_icon('t/left', ''));
7d2a0492 3048 }
3049
3406acde
SH
3050 foreach ($this->children as $key=>$node) {
3051 if ($node->nodetype != self::NODETYPE_BRANCH || $node->children->count()===0) {
3052 $node->remove();
3053 }
3054 }
4766a50c 3055 $this->initialised = true;
7d2a0492 3056 }
3057 /**
3058 * Override the parent function so that we can add preceeding hr's and set a
3059 * root node class against all first level element
3060 *
3061 * It does this by first calling the parent's add method {@link navigation_node::add()}
117bd748 3062 * and then proceeds to use the key to set class and hr
7d2a0492 3063 *
31fde54f
AG
3064 * @param string $text text to be used for the link.
3065 * @param string|moodle_url $url url for the new node
3066 * @param int $type the type of node navigation_node::TYPE_*
7d2a0492 3067 * @param string $shorttext
31fde54f
AG
3068 * @param string|int $key a key to access the node by.
3069 * @param pix_icon $icon An icon that appears next to the node.
3070 * @return navigation_node with the new node added to it.
7d2a0492 3071 */
f9fc1461 3072 public function add($text, $url=null, $type=null, $shorttext=null, $key=null, pix_icon $icon=null) {
3406acde
SH
3073 $node = parent::add($text, $url, $type, $shorttext, $key, $icon);
3074 $node->add_class('root_node');
3075 return $node;
7d2a0492 3076 }
a6e34701 3077
3078 /**
3079 * This function allows the user to add something to the start of the settings
3080 * navigation, which means it will be at the top of the settings navigation block
3081 *
31fde54f
AG
3082 * @param string $text text to be used for the link.
3083 * @param string|moodle_url $url url for the new node
3084 * @param int $type the type of node navigation_node::TYPE_*
a6e34701 3085 * @param string $shorttext
31fde54f
AG
3086 * @param string|int $key a key to access the node by.
3087 * @param pix_icon $icon An icon that appears next to the node.
3088 * @return navigation_node $node with the new node added to it.
a6e34701 3089 */
f9fc1461 3090 public function prepend($text, $url=null, $type=null, $shorttext=null, $key=null, pix_icon $icon=null) {
a6e34701 3091 $children = $this->children;
b499db57
SH
3092 $childrenclass = get_class($children);
3093 $this->children = new $childrenclass;
3406acde
SH
3094 $node = $this->add($text, $url, $type, $shorttext, $key, $icon);
3095 foreach ($children as $child) {
3096 $this->children->add($child);
a6e34701 3097 }
3406acde 3098 return $node;
a6e34701 3099 }
7d2a0492 3100 /**
3101 * Load the site administration tree
3102 *
3103 * This function loads the site administration tree by using the lib/adminlib library functions
3104 *
3406acde 3105 * @param navigation_node $referencebranch A reference to a branch in the settings
7d2a0492 3106 * navigation tree
3406acde 3107 * @param part_of_admin_tree $adminbranch The branch to add, if null generate the admin
7d2a0492 3108 * tree and start at the beginning