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