2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This file contains classes used to manage the navigation structures within Moodle.
22 * @copyright 2009 Sam Hemelryk
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
29 * The name that will be used to separate the navigation cache within SESSION
31 define('NAVIGATION_CACHE_NAME', 'navigation');
34 * This class is used to represent a node in a navigation tree
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.
43 * @category navigation
44 * @copyright 2009 Sam Hemelryk
45 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
47 class navigation_node implements renderable {
48 /** @var int Used to identify this node a leaf (default) 0 */
49 const NODETYPE_LEAF = 0;
50 /** @var int Used to identify this node a branch, happens with children 1 */
51 const NODETYPE_BRANCH = 1;
52 /** @var null Unknown node type null */
53 const TYPE_UNKNOWN = null;
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 */
59 const TYPE_CATEGORY = 10;
60 /** @var int Course node type 20 */
61 const TYPE_COURSE = 20;
62 /** @var int Course Structure node type 30 */
63 const TYPE_SECTION = 30;
64 /** @var int Activity node type, e.g. Forum, Quiz 40 */
65 const TYPE_ACTIVITY = 40;
66 /** @var int Resource node type, e.g. Link to a file, or label 50 */
67 const TYPE_RESOURCE = 50;
68 /** @var int A custom node type, default when adding without specifing type 60 */
69 const TYPE_CUSTOM = 60;
70 /** @var int Setting node type, used only within settings nav 70 */
71 const TYPE_SETTING = 70;
72 /** @var int Setting node type, used only within settings nav 80 */
74 /** @var int Setting node type, used for containers of no importance 90 */
75 const TYPE_CONTAINER = 90;
77 /** @var int Parameter to aid the coder in tracking [optional] */
79 /** @var string|int The identifier for the node, used to retrieve the node */
81 /** @var string The text to use for the node */
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 */
87 /** @var string A string that can be used to build a help button */
88 public $helpbutton = null;
89 /** @var moodle_url|action_link|null An action for the node (link) */
90 public $action = null;
91 /** @var pix_icon The path to an icon to use for this node */
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;
101 /** @var array An array of CSS classes for the node */
102 public $classes = array();
103 /** @var navigation_node_collection An array of child nodes */
104 public $children = array();
105 /** @var bool If set to true the node will be recognised as active */
106 public $isactive = false;
107 /** @var bool If set to true the node will be dimmed */
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;
117 /** @var navigation_node A reference to the node parent, you should never set this directly you should always call set_parent */
118 public $parent = null;
119 /** @var bool Override to not display the icon even if one is provided **/
120 public $hideicon = false;
122 protected $namedtypes = array(0=>'system',10=>'category',20=>'course',30=>'structure',40=>'activity',50=>'resource',60=>'custom',70=>'setting', 80=>'user');
123 /** @var moodle_url */
124 protected static $fullmeurl = null;
125 /** @var bool toogles auto matching of active node */
126 public static $autofindactive = true;
127 /** @var mixed If set to an int, that section will be included even if it has no activities */
128 public $includesectionnum = false;
131 * Constructs a new navigation_node
133 * @param array|string $properties Either an array of properties or a string to use
134 * as the text for the node
136 public function __construct($properties) {
137 if (is_array($properties)) {
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
146 if (array_key_exists('text', $properties)) {
147 $this->text = $properties['text'];
149 if (array_key_exists('shorttext', $properties)) {
150 $this->shorttext = $properties['shorttext'];
152 if (!array_key_exists('icon', $properties)) {
153 $properties['icon'] = new pix_icon('i/navigationitem', '');
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';
160 $this->icon->attributes['class'] .= ' navicon';
163 if (array_key_exists('type', $properties)) {
164 $this->type = $properties['type'];
166 $this->type = self::TYPE_CUSTOM;
168 if (array_key_exists('key', $properties)) {
169 $this->key = $properties['key'];
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);
177 if (self::$autofindactive) {
178 $this->check_if_active();
181 if (array_key_exists('parent', $properties)) {
182 $this->set_parent($properties['parent']);
184 } else if (is_string($properties)) {
185 $this->text = $properties;
187 if ($this->text === null) {
188 throw new coding_exception('You must set the text for the node when you create it.');
190 // Default the title to the text
191 $this->title = $this->text;
192 // Instantiate a new navigation node collection for this nodes children
193 $this->children = new navigation_node_collection();
197 * Checks if this node is the active node.
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.
202 * @param int $strength One of URL_MATCH_EXACT, URL_MATCH_PARAMS, or URL_MATCH_BASE
205 public function check_if_active($strength=URL_MATCH_EXACT) {
206 global $FULLME, $PAGE;
207 // Set fullmeurl if it hasn't already been set
208 if (self::$fullmeurl == null) {
209 if ($PAGE->has_set_url()) {
210 self::override_active_url(new moodle_url($PAGE->url));
212 self::override_active_url(new moodle_url($FULLME));
216 // Compare the action of this node against the fullmeurl
217 if ($this->action instanceof moodle_url && $this->action->compare(self::$fullmeurl, $strength)) {
218 $this->make_active();
225 * This sets the URL that the URL of new nodes get compared to when locating
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.
231 * @param moodle_url $url The url to use for the fullmeurl.
233 public static function override_active_url(moodle_url $url) {
234 // Clone the URL, in case the calling script changes their URL later.
235 self::$fullmeurl = new moodle_url($url);
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.)
241 * @param string $text
242 * @param moodle_url|action_link $action
244 * @param string $shorttext
245 * @param string|int $key
246 * @param pix_icon $icon
247 * @return navigation_node
249 public static function create($text, $action=null, $type=self::TYPE_CUSTOM,
250 $shorttext=null, $key=null, pix_icon $icon=null) {
251 // Properties array used when creating the new navigation node
256 // Set the action if one was provided
257 if ($action!==null) {
258 $itemarray['action'] = $action;
260 // Set the shorttext if one was provided
261 if ($shorttext!==null) {
262 $itemarray['shorttext'] = $shorttext;
264 // Set the icon if one was provided
266 $itemarray['icon'] = $icon;
269 $itemarray['key'] = $key;
270 // Construct and return
271 return new navigation_node($itemarray);
275 * Adds a navigation node as a child of this node.
277 * @param string $text
278 * @param moodle_url|action_link $action
280 * @param string $shorttext
281 * @param string|int $key
282 * @param pix_icon $icon
283 * @return navigation_node
285 public function add($text, $action=null, $type=self::TYPE_CUSTOM, $shorttext=null, $key=null, pix_icon $icon=null) {
287 $childnode = self::create($text, $action, $type, $shorttext, $key, $icon);
289 // Add the child to end and return
290 return $this->add_node($childnode);
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
297 * @param string $beforekey
298 * @return navigation_node The added node
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;
305 // Set the parent to this node
306 $childnode->set_parent($this);
308 // Default the key to the number of children if not provided
309 if ($childnode->key === null) {
310 $childnode->key = $this->children->count();
313 // Add the child using the navigation_node_collections add method
314 $node = $this->children->add($childnode, $beforekey);
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;
319 if (($type==self::TYPE_CATEGORY) || (isloggedin() && $type==self::TYPE_COURSE)) {
320 $node->nodetype = self::NODETYPE_BRANCH;
322 // If this node is hidden mark it's children as hidden also
324 $node->hidden = true;
326 // Return added node (reference returned by $this->children->add()
331 * Return a list of all the keys of all the child nodes.
332 * @return array the keys.
334 public function get_children_key_list() {
335 return $this->children->get_key_list();
339 * Searches for a node of the given type with the given key.
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.
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
349 public function find($key, $type) {
350 return $this->children->find($key, $type);
354 * Get the child of this node that has the given key + (optional) type.
356 * If you are looking for a node and want to search all children + thier children
357 * then please use the find method instead.
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
363 public function get($key, $type=null) {
364 return $this->children->get($key, $type);
372 public function remove() {
373 return $this->parent->children->remove($this->key, $this->type);
377 * Checks if this node has or could have any children
379 * @return bool Returns true if it has children or could have (by AJAX expansion)
381 public function has_children() {
382 return ($this->nodetype === navigation_node::NODETYPE_BRANCH || $this->children->count()>0);
386 * Marks this node as active and forces it open.
388 * Important: If you are here because you need to mark a node active to get
389 * the navigation to do what you want have you looked at {@link navigation_node::override_active_url()}?
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.
393 public function make_active() {
394 $this->isactive = true;
395 $this->add_class('active_tree_node');
397 if ($this->parent !== null) {
398 $this->parent->make_inactive();
403 * Marks a node as inactive and recusised back to the base of the tree
404 * doing the same to all parents.
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();
415 * Forces this node to be open and at the same time forces open all
416 * parents until the root node.
420 public function force_open() {
421 $this->forceopen = true;
422 if ($this->parent !== null) {
423 $this->parent->force_open();
428 * Adds a CSS class to this node.
430 * @param string $class
433 public function add_class($class) {
434 if (!in_array($class, $this->classes)) {
435 $this->classes[] = $class;
441 * Removes a CSS class from this node.
443 * @param string $class
444 * @return bool True if the class was successfully removed.
446 public function remove_class($class) {
447 if (in_array($class, $this->classes)) {
448 $key = array_search($class,$this->classes);
450 unset($this->classes[$key]);
458 * Sets the title for this node and forces Moodle to utilise it.
459 * @param string $title
461 public function title($title) {
462 $this->title = $title;
463 $this->forcetitle = true;
467 * Resets the page specific information on this node if it is being unserialised.
469 public function __wakeup(){
470 $this->forceopen = false;
471 $this->isactive = false;
472 $this->remove_class('active_tree_node');
476 * Checks if this node or any of its children contain the active node.
482 public function contains_active_node() {
483 if ($this->isactive) {
486 foreach ($this->children as $child) {
487 if ($child->isactive || $child->contains_active_node()) {
496 * Finds the active node.
498 * Searches this nodes children plus all of the children for the active node
499 * and returns it if found.
503 * @return navigation_node|false
505 public function find_active_node() {
506 if ($this->isactive) {
509 foreach ($this->children as &$child) {
510 $outcome = $child->find_active_node();
511 if ($outcome !== false) {
520 * Searches all children for the best matching active node
521 * @return navigation_node|false
523 public function search_for_active_node() {
524 if ($this->check_if_active(URL_MATCH_BASE)) {
527 foreach ($this->children as &$child) {
528 $outcome = $child->search_for_active_node();
529 if ($outcome !== false) {
538 * Gets the content for this node.
540 * @param bool $shorttext If true shorttext is used rather than the normal text
543 public function get_content($shorttext=false) {
544 if ($shorttext && $this->shorttext!==null) {
545 return format_string($this->shorttext);
547 return format_string($this->text);
552 * Gets the title to use for this node.
556 public function get_title() {
557 if ($this->forcetitle || $this->action != null){
565 * Gets the CSS class to add to this node to describe its type
569 public function get_css_type() {
570 if (array_key_exists($this->type, $this->namedtypes)) {
571 return 'type_'.$this->namedtypes[$this->type];
573 return 'type_unknown';
577 * Finds all nodes that are expandable by AJAX
579 * @param array $expandable An array by reference to populate with expandable nodes.
581 public function find_expandable(array &$expandable) {
582 foreach ($this->children as &$child) {
583 if ($child->nodetype == self::NODETYPE_BRANCH && $child->children->count() == 0 && $child->display) {
584 $child->id = 'expandable_branch_'.(count($expandable)+1);
585 $this->add_class('canexpand');
586 $expandable[] = array('id' => $child->id, 'key' => $child->key, 'type' => $child->type);
588 $child->find_expandable($expandable);
593 * Finds all nodes of a given type (recursive)
595 * @param int $type One of navigation_node::TYPE_*
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);
608 * Removes this node if it is empty
610 public function trim_if_empty() {
611 if ($this->children->count() == 0) {
617 * Creates a tab representation of this nodes children that can be used
618 * with print_tabs to produce the tabs on a page.
620 * call_user_func_array('print_tabs', $node->get_tabs_array());
622 * @param array $inactive
623 * @param bool $return
624 * @return array Array (tabs, selected, inactive, activated, return)
626 public function get_tabs_array(array $inactive=array(), $return=false) {
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;
640 $rows[] = new tabobject($child->key, $child->action, $child->get_content(), $child->get_title());
643 $selected = $node->key;
647 return array(array($tabs, $rows), $selected, $inactive, $activated, $return);
651 * Sets the parent for this node and if this node is active ensures that the tree is properly
654 * @param navigation_node $parent
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();
670 * Navigation node collection
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
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.
681 * @category navigation
682 * @copyright 2010 Sam Hemelryk
683 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
685 class navigation_node_collection implements IteratorAggregate {
687 * A multidimensional array to where the first key is the type and the second
688 * key is the nodes key.
691 protected $collection = array();
693 * An array that contains references to nodes in the same order they were added.
694 * This is maintained as a progressive array.
697 protected $orderedcollection = array();
699 * A reference to the last node that was added to the collection
700 * @var navigation_node
702 protected $last = null;
704 * The total number of items added to this array.
707 protected $count = 0;
710 * Adds a navigation node to the collection
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
717 public function add(navigation_node $node, $beforekey=null) {
722 // First check we have a 2nd dimension for this type
723 if (!array_key_exists($type, $this->orderedcollection)) {
724 $this->orderedcollection[$type] = array();
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);
731 // Find the key to add before
732 $newindex = $this->count;
734 if ($beforekey !== null) {
735 foreach ($this->collection as $index => $othernode) {
736 if ($othernode->key === $beforekey) {
742 if ($newindex === $this->count) {
743 debugging('Navigation node add_before: Reference node not found ' . $beforekey .
744 ', options: ' . implode(' ', $this->get_key_list()), DEBUG_DEVELOPER);
748 // Add the node to the appropriate place in the by-type structure (which
749 // is not ordered, despite the variable name)
750 $this->orderedcollection[$type][$key] = $node;
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];
758 // Add a reference to the node to the progressive collection.
759 $this->collection[$newindex] = $this->orderedcollection[$type][$key];
760 // Update the last property to a reference to this new node.
761 $this->last = $this->orderedcollection[$type][$key];
763 // Reorder the array by index if needed
765 ksort($this->collection);
768 // Return the reference to the now added node
773 * Return a list of all the keys of all the nodes.
774 * @return array the keys.
776 public function get_key_list() {
778 foreach ($this->collection as $node) {
779 $keys[] = $node->key;
785 * Fetches a node from this collection.
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
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];
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) {
809 * Searches for a node with matching key and type.
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.
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
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];
824 $nodes = $this->getIterator();
825 // Search immediate children first
826 foreach ($nodes as &$node) {
827 if ($node->key === $key && ($type === null || $type === $node->type)) {
831 // Now search each childs children
832 foreach ($nodes as &$node) {
833 $result = $node->children->find($key, $type);
834 if ($result !== false) {
843 * Fetches the last node that was added to this collection
845 * @return navigation_node
847 public function last() {
852 * Fetches all nodes of a given type from this collection
854 * @param string|int $type node type being searched for.
855 * @return array ordered collection
857 public function type($type) {
858 if (!array_key_exists($type, $this->orderedcollection)) {
859 $this->orderedcollection[$type] = array();
861 return $this->orderedcollection[$type];
864 * Removes the node with the given key and type from the collection
866 * @param string|int $key The key of the node we want to find.
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]);
879 unset($this->orderedcollection[$child->type][$child->key]);
887 * Gets the number of nodes in this collection
889 * This option uses an internal count rather than counting the actual options to avoid
890 * a performance hit through the count function.
894 public function count() {
898 * Gets an array iterator for the collection.
900 * This is required by the IteratorAggregator interface and is used by routines
901 * such as the foreach loop.
903 * @return ArrayIterator
905 public function getIterator() {
906 return new ArrayIterator($this->collection);
911 * The global navigation class used for... the global navigation
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
917 * {@link lib/pagelib.php} {@link moodle_page::initialise_theme_and_output()}
918 * {@link lib/ajax/getnavbranch.php} Called by ajax
921 * @category navigation
922 * @copyright 2009 Sam Hemelryk
923 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
925 class global_navigation extends navigation_node {
926 /** @var moodle_page The Moodle page this navigation object belongs to. */
928 /** @var bool switch to let us know if the navigation object is initialised*/
929 protected $initialised = false;
930 /** @var array An array of course information */
931 protected $mycourses = array();
932 /** @var array An array for containing root navigation nodes */
933 protected $rootnodes = array();
934 /** @var bool A switch for whether to show empty sections in the navigation */
935 protected $showemptysections = true;
936 /** @var bool A switch for whether courses should be shown within categories on the navigation. */
937 protected $showcategories = null;
938 /** @var array An array of stdClasses for users that the navigation is extended for */
939 protected $extendforuser = array();
940 /** @var navigation_cache */
942 /** @var array An array of course ids that are present in the navigation */
943 protected $addedcourses = array();
945 protected $allcategoriesloaded = false;
946 /** @var array An array of category ids that are included in the navigation */
947 protected $addedcategories = array();
948 /** @var int expansion limit */
949 protected $expansionlimit = 0;
950 /** @var int userid to allow parent to see child's profile page navigation */
951 protected $useridtouseforparentchecks = 0;
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;
959 * Constructs a new global navigation
961 * @param moodle_page $page The page this navigation object belongs to
963 public function __construct(moodle_page $page) {
964 global $CFG, $SITE, $USER;
966 if (during_initial_install()) {
970 if (get_home_page() == HOMEPAGE_SITE) {
971 // We are using the site home for the root element
974 'type' => navigation_node::TYPE_SYSTEM,
975 'text' => get_string('home'),
976 'action' => new moodle_url('/')
979 // We are using the users my moodle for the root element
982 'type' => navigation_node::TYPE_SYSTEM,
983 'text' => get_string('myhome'),
984 'action' => new moodle_url('/my/')
988 // Use the parents constructor.... good good reuse
989 parent::__construct($properties);
991 // Initalise and set defaults
993 $this->forceopen = true;
994 $this->cache = new navigation_cache(NAVIGATION_CACHE_NAME);
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
1003 * @param int $userid userid of profile page that parent wants to navigate around.
1005 public function set_userid_for_parent_checks($userid) {
1006 $this->useridtouseforparentchecks = $userid;
1011 * Initialises the navigation object.
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.
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.
1022 public function initialise() {
1023 global $CFG, $SITE, $USER, $DB;
1024 // Check if it has alread been initialised
1025 if ($this->initialised || during_initial_install()) {
1028 $this->initialised = true;
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();
1038 if (get_home_page() == HOMEPAGE_SITE) {
1039 // The home element should be my moodle because the root element is the site
1040 if (isloggedin() && !isguestuser()) { // Makes no sense if you aren't logged in
1041 $this->rootnodes['home'] = $this->add(get_string('myhome'), new moodle_url('/my/'), self::TYPE_SETTING, null, 'home');
1044 // The home element should be the site because the root node is my moodle
1045 $this->rootnodes['home'] = $this->add(get_string('sitehome'), new moodle_url('/'), self::TYPE_SETTING, null, 'home');
1046 if (!empty($CFG->defaulthomepage) && ($CFG->defaulthomepage == HOMEPAGE_MY)) {
1047 // We need to stop automatic redirection
1048 $this->rootnodes['home']->action->param('redirect', '0');
1051 $this->rootnodes['site'] = $this->add_course($SITE);
1052 $this->rootnodes['myprofile'] = $this->add(get_string('myprofile'), null, self::TYPE_USER, null, 'myprofile');
1053 $this->rootnodes['mycourses'] = $this->add(get_string('mycourses'), null, self::TYPE_ROOTNODE, null, 'mycourses');
1054 $this->rootnodes['courses'] = $this->add(get_string('courses'), new moodle_url('/course/index.php'), self::TYPE_ROOTNODE, null, 'courses');
1055 $this->rootnodes['users'] = $this->add(get_string('users'), null, self::TYPE_ROOTNODE, null, 'users');
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']);
1062 // Fetch all of the users courses.
1063 $mycourses = enrol_get_my_courses();
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
1067 $issite = ($this->page->course->id == $SITE->id);
1068 // $ismycourse gets set to true if the user is enrolled in the current pages course.
1069 $ismycourse = !$issite && (array_key_exists($this->page->course->id, $mycourses));
1071 // Check if any courses were returned.
1072 if (count($mycourses) > 0) {
1074 // Check if categories should be displayed within the my courses branch
1075 if (!empty($CFG->navshowmycoursecategories)) {
1077 // Find the category of each mycourse
1078 $categories = array();
1079 foreach ($mycourses as $course) {
1080 $categories[] = $course->category;
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
1088 $categoryids = array();
1089 foreach ($categories as $category) {
1090 $categoryids = array_merge($categoryids, explode('/', trim($category->path, '/')));
1092 $categoryids = array_unique($categoryids);
1093 $categoryids = array_diff($categoryids, array_keys($categories));
1095 if (count($categoryids)) {
1096 // Fetch any other categories we need.
1097 $allcategories = $DB->get_records_list('course_categories', 'id', $categoryids, 'depth ASC, sortorder ASC');
1098 if (is_array($allcategories) && count($allcategories) > 0) {
1099 $categories = array_merge($categories, $allcategories);
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];
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;
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);
1124 // Add it back to the end of the categories array
1125 array_push($categories, $category);
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);
1133 if (!$category->visible) {
1134 // Let's decide the context where viewhidden cap checks will happen.
1135 if ($category->parent == '0') {
1136 $contexttocheck = context_system::instance();
1138 $contexttocheck = context_coursecat::instance($category->parent);
1140 if (!has_capability('moodle/category:viewhiddencategories', $contexttocheck)) {
1141 $addedcategories[$category->id]->display = false;
1143 $addedcategories[$category->id]->hidden = true;
1149 // Add all of the users courses to the navigation.
1150 // First up we need to add to the mycourses section.
1151 foreach ($mycourses as $course) {
1152 $course->coursenode = $this->add_course($course, false, true);
1155 if (!empty($CFG->navshowallcourses)) {
1157 $this->load_all_courses();
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)) {
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;
1183 } else if (!empty($CFG->navshowallcourses) || !$this->show_categories()) {
1185 $this->load_all_courses();
1188 $canviewcourseprofile = true;
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
1194 if ($showcategories) {
1195 $this->load_all_categories(self::LOAD_ROOT_CATEGORIES, true);
1198 case CONTEXT_COURSECAT :
1199 // This has already been loaded we just need to map the variable
1200 if ($showcategories) {
1201 $this->load_all_categories($this->page->context->instanceid, true);
1204 case CONTEXT_BLOCK :
1205 case CONTEXT_COURSE :
1207 // If it is the front page course, or a block on it then
1208 // all we need to do is load the root categories if required
1209 if ($showcategories) {
1210 $this->load_all_categories(self::LOAD_ROOT_CATEGORIES, true);
1214 // Load the course associated with the page into the navigation
1215 $course = $this->page->course;
1216 if ($this->show_categories() && !$ismycourse) {
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.
1219 $this->load_all_categories($course->category, $showcategories);
1221 $coursenode = $this->load_course($course);
1223 // If the course wasn't added then don't try going any further.
1225 $canviewcourseprofile = false;
1229 // If the user is not enrolled then we only want to show the
1230 // course node and not populate it.
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)
1237 if ($this->useridtouseforparentchecks) {
1238 if ($this->useridtouseforparentchecks != $USER->id) {
1239 $usercontext = context_user::instance($this->useridtouseforparentchecks, MUST_EXIST);
1240 if ($DB->record_exists('role_assignments', array('userid' => $USER->id, 'contextid' => $usercontext->id))
1241 and has_capability('moodle/user:viewdetails', $usercontext)) {
1248 $coursenode->make_active();
1249 $canviewcourseprofile = false;
1253 // Add the essentials such as reports etc...
1254 $this->add_course_essentials($coursenode, $course);
1255 if ($this->format_display_course_content($course->format)) {
1256 // Load the course sections
1257 $sections = $this->load_course_sections($course, $coursenode);
1259 if (!$coursenode->contains_active_node() && !$coursenode->search_for_active_node()) {
1260 $coursenode->make_active();
1263 case CONTEXT_MODULE :
1265 // If this is the site course then most information will have
1266 // already been loaded.
1267 // However we need to check if there is more content that can
1268 // yet be loaded for the specific module instance.
1269 $activitynode = $this->rootnodes['site']->get($this->page->cm->id, navigation_node::TYPE_ACTIVITY);
1270 if ($activitynode) {
1271 $this->load_activity($this->page->cm, $this->page->course, $activitynode);
1276 $course = $this->page->course;
1277 $cm = $this->page->cm;
1279 if ($this->show_categories() && !$ismycourse) {
1280 $this->load_all_categories($course->category, $showcategories);
1283 // Load the course associated with the page into the navigation
1284 $coursenode = $this->load_course($course);
1286 // If the course wasn't added then don't try going any further.
1288 $canviewcourseprofile = false;
1292 // If the user is not enrolled then we only want to show the
1293 // course node and not populate it.
1294 if (!can_access_course($course)) {
1295 $coursenode->make_active();
1296 $canviewcourseprofile = false;
1300 $this->add_course_essentials($coursenode, $course);
1302 // Get section number from $cm (if provided) - we need this
1303 // before loading sections in order to tell it to load this section
1304 // even if it would not normally display (=> it contains only
1305 // a label, which we are now editing)
1306 $sectionnum = isset($cm->sectionnum) ? $cm->sectionnum : 0;
1308 // This value has to be stored in a member variable because
1309 // otherwise we would have to pass it through a public API
1310 // to course formats and they would need to change their
1311 // functions to pass it along again...
1312 $this->includesectionnum = $sectionnum;
1314 $this->includesectionnum = false;
1317 // Load the course sections into the page
1318 $sections = $this->load_course_sections($course, $coursenode);
1319 if ($course->id != $SITE->id) {
1320 // Find the section for the $CM associated with the page and collect
1321 // its section number.
1323 $cm->sectionnumber = $sectionnum;
1325 foreach ($sections as $section) {
1326 if ($section->id == $cm->section) {
1327 $cm->sectionnumber = $section->section;
1333 // Load all of the section activities for the section the cm belongs to.
1334 if (isset($cm->sectionnumber) and !empty($sections[$cm->sectionnumber])) {
1335 list($sectionarray, $activityarray) = $this->generate_sections_and_activities($course);
1336 $activities = $this->load_section_activities($sections[$cm->sectionnumber]->sectionnode, $cm->sectionnumber, $activityarray);
1338 $activities = array();
1339 if ($activity = $this->load_stealth_activity($coursenode, get_fast_modinfo($course))) {
1340 // "stealth" activity from unavailable section
1341 $activities[$cm->id] = $activity;
1345 $activities = array();
1346 $activities[$cm->id] = $coursenode->get($cm->id, navigation_node::TYPE_ACTIVITY);
1348 if (!empty($activities[$cm->id])) {
1349 // Finally load the cm specific navigaton information
1350 $this->load_activity($cm, $course, $activities[$cm->id]);
1351 // Check if we have an active ndoe
1352 if (!$activities[$cm->id]->contains_active_node() && !$activities[$cm->id]->search_for_active_node()) {
1353 // And make the activity node active.
1354 $activities[$cm->id]->make_active();
1357 //TODO: something is wrong, what to do? (Skodak)
1362 // The users profile information etc is already loaded
1363 // for the front page.
1366 $course = $this->page->course;
1367 if ($this->show_categories() && !$ismycourse) {
1368 $this->load_all_categories($course->category, $showcategories);
1370 // Load the course associated with the user into the navigation
1371 $coursenode = $this->load_course($course);
1373 // If the course wasn't added then don't try going any further.
1375 $canviewcourseprofile = false;
1379 // If the user is not enrolled then we only want to show the
1380 // course node and not populate it.
1381 if (!can_access_course($course)) {
1382 $coursenode->make_active();
1383 $canviewcourseprofile = false;
1386 $this->add_course_essentials($coursenode, $course);
1387 $sections = $this->load_course_sections($course, $coursenode);
1391 // Look for all categories which have been loaded
1392 if ($showcategories) {
1393 $categories = $this->find_all_of_type(self::TYPE_CATEGORY);
1394 if (count($categories) !== 0) {
1395 $categoryids = array();
1396 foreach ($categories as $category) {
1397 $categoryids[] = $category->key;
1399 list($categoriessql, $params) = $DB->get_in_or_equal($categoryids, SQL_PARAMS_NAMED);
1400 $params['limit'] = (!empty($CFG->navcourselimit))?$CFG->navcourselimit:20;
1401 $sql = "SELECT cc.id, COUNT(c.id) AS coursecount
1402 FROM {course_categories} cc
1403 JOIN {course} c ON c.category = cc.id
1404 WHERE cc.id {$categoriessql}
1406 HAVING COUNT(c.id) > :limit";
1407 $excessivecategories = $DB->get_records_sql($sql, $params);
1408 foreach ($categories as &$category) {
1409 if (array_key_exists($category->key, $excessivecategories) && !$this->can_add_more_courses_to_category($category)) {
1410 $url = new moodle_url('/course/category.php', array('id'=>$category->key));
1411 $category->add(get_string('viewallcourses'), $url, self::TYPE_SETTING);
1415 } else if ((!empty($CFG->navshowallcourses) || empty($mycourses)) && !$this->can_add_more_courses_to_category($this->rootnodes['courses'])) {
1416 $this->rootnodes['courses']->add(get_string('viewallcoursescategories'), new moodle_url('/course/index.php'), self::TYPE_SETTING);
1419 // Load for the current user
1420 $this->load_for_user();
1421 if ($this->page->context->contextlevel >= CONTEXT_COURSE && $this->page->context->instanceid != $SITE->id && $canviewcourseprofile) {
1422 $this->load_for_user(null, true);
1424 // Load each extending user into the navigation.
1425 foreach ($this->extendforuser as $user) {
1426 if ($user->id != $USER->id) {
1427 $this->load_for_user($user);
1431 // Give the local plugins a chance to include some navigation if they want.
1432 foreach (get_plugin_list_with_file('local', 'lib.php', true) as $plugin => $file) {
1433 $function = "local_{$plugin}_extends_navigation";
1434 $oldfunction = "{$plugin}_extends_navigation";
1435 if (function_exists($function)) {
1436 // This is the preferred function name as there is less chance of conflicts
1438 } else if (function_exists($oldfunction)) {
1439 // We continue to support the old function name to ensure backwards compatability
1440 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);
1441 $oldfunction($this);
1445 // Remove any empty root nodes
1446 foreach ($this->rootnodes as $node) {
1447 // Dont remove the home node
1448 if ($node->key !== 'home' && !$node->has_children()) {
1453 if (!$this->contains_active_node()) {
1454 $this->search_for_active_node();
1457 // If the user is not logged in modify the navigation structure as detailed
1458 // in {@link http://docs.moodle.org/dev/Navigation_2.0_structure}
1459 if (!isloggedin()) {
1460 $activities = clone($this->rootnodes['site']->children);
1461 $this->rootnodes['site']->remove();
1462 $children = clone($this->children);
1463 $this->children = new navigation_node_collection();
1464 foreach ($activities as $child) {
1465 $this->children->add($child);
1467 foreach ($children as $child) {
1468 $this->children->add($child);
1475 * Returns true if courses should be shown within categories on the navigation.
1479 protected function show_categories() {
1481 if ($this->showcategories === null) {
1482 $show = $this->page->context->contextlevel == CONTEXT_COURSECAT;
1483 $show = $show || (!empty($CFG->navshowcategories) && $DB->count_records('course_categories') > 1);
1484 $this->showcategories = $show;
1486 return $this->showcategories;
1490 * Checks the course format to see whether it wants the navigation to load
1491 * additional information for the course.
1493 * This function utilises a callback that can exist within the course format lib.php file
1494 * The callback should be a function called:
1495 * callback_{formatname}_display_content()
1496 * It doesn't get any arguments and should return true if additional content is
1497 * desired. If the callback doesn't exist we assume additional content is wanted.
1499 * @param string $format The course format
1502 protected function format_display_course_content($format) {
1504 $formatlib = $CFG->dirroot.'/course/format/'.$format.'/lib.php';
1505 if (file_exists($formatlib)) {
1506 require_once($formatlib);
1507 $displayfunc = 'callback_'.$format.'_display_content';
1508 if (function_exists($displayfunc) && !$displayfunc()) {
1509 return $displayfunc();
1516 * Loads the courses in Moodle into the navigation.
1518 * @global moodle_database $DB
1519 * @param string|array $categoryids An array containing categories to load courses
1520 * for, OR null to load courses for all categories.
1521 * @return array An array of navigation_nodes one for each course
1523 protected function load_all_courses($categoryids = null) {
1524 global $CFG, $DB, $SITE;
1526 // Work out the limit of courses.
1528 if (!empty($CFG->navcourselimit)) {
1529 $limit = $CFG->navcourselimit;
1532 $toload = (empty($CFG->navshowallcourses))?self::LOAD_ROOT_CATEGORIES:self::LOAD_ALL_CATEGORIES;
1534 // If we are going to show all courses AND we are showing categories then
1535 // to save us repeated DB calls load all of the categories now
1536 if ($this->show_categories()) {
1537 $this->load_all_categories($toload);
1540 // Will be the return of our efforts
1541 $coursenodes = array();
1543 // Check if we need to show categories.
1544 if ($this->show_categories()) {
1545 // Hmmm we need to show categories... this is going to be painful.
1546 // We now need to fetch up to $limit courses for each category to
1548 if ($categoryids !== null) {
1549 if (!is_array($categoryids)) {
1550 $categoryids = array($categoryids);
1552 list($categorywhere, $categoryparams) = $DB->get_in_or_equal($categoryids, SQL_PARAMS_NAMED, 'cc');
1553 $categorywhere = 'WHERE cc.id '.$categorywhere;
1554 } else if ($toload == self::LOAD_ROOT_CATEGORIES) {
1555 $categorywhere = 'WHERE cc.depth = 1 OR cc.depth = 2';
1556 $categoryparams = array();
1558 $categorywhere = '';
1559 $categoryparams = array();
1562 // First up we are going to get the categories that we are going to
1563 // need so that we can determine how best to load the courses from them.
1564 $sql = "SELECT cc.id, COUNT(c.id) AS coursecount
1565 FROM {course_categories} cc
1566 LEFT JOIN {course} c ON c.category = cc.id
1569 $categories = $DB->get_recordset_sql($sql, $categoryparams);
1570 $fullfetch = array();
1571 $partfetch = array();
1572 foreach ($categories as $category) {
1573 if (!$this->can_add_more_courses_to_category($category->id)) {
1576 if ($category->coursecount > $limit * 5) {
1577 $partfetch[] = $category->id;
1578 } else if ($category->coursecount > 0) {
1579 $fullfetch[] = $category->id;
1582 $categories->close();
1584 if (count($fullfetch)) {
1585 // First up fetch all of the courses in categories where we know that we are going to
1586 // need the majority of courses.
1587 list($ccselect, $ccjoin) = context_instance_preload_sql('c.id', CONTEXT_COURSE, 'ctx');
1588 list($categoryids, $categoryparams) = $DB->get_in_or_equal($fullfetch, SQL_PARAMS_NAMED, 'lcategory');
1589 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category $ccselect
1592 WHERE c.category {$categoryids}
1593 ORDER BY c.sortorder ASC";
1594 $coursesrs = $DB->get_recordset_sql($sql, $categoryparams);
1595 foreach ($coursesrs as $course) {
1596 if ($course->id == $SITE->id) {
1597 // This should not be necessary, frontpage is not in any category.
1600 if (array_key_exists($course->id, $this->addedcourses)) {
1601 // It is probably better to not include the already loaded courses
1602 // directly in SQL because inequalities may confuse query optimisers
1603 // and may interfere with query caching.
1606 if (!$this->can_add_more_courses_to_category($course->category)) {
1609 context_instance_preload($course);
1610 if (!$course->visible && !is_role_switched($course->id) && !has_capability('moodle/course:viewhiddencourses', context_course::instance($course->id))) {
1613 $coursenodes[$course->id] = $this->add_course($course);
1615 $coursesrs->close();
1618 if (count($partfetch)) {
1619 // Next we will work our way through the categories where we will likely only need a small
1620 // proportion of the courses.
1621 foreach ($partfetch as $categoryid) {
1622 list($ccselect, $ccjoin) = context_instance_preload_sql('c.id', CONTEXT_COURSE, 'ctx');
1623 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category $ccselect
1626 WHERE c.category = :categoryid
1627 ORDER BY c.sortorder ASC";
1628 $courseparams = array('categoryid' => $categoryid);
1629 $coursesrs = $DB->get_recordset_sql($sql, $courseparams, 0, $limit * 5);
1630 foreach ($coursesrs as $course) {
1631 if ($course->id == $SITE->id) {
1632 // This should not be necessary, frontpage is not in any category.
1635 if (array_key_exists($course->id, $this->addedcourses)) {
1636 // It is probably better to not include the already loaded courses
1637 // directly in SQL because inequalities may confuse query optimisers
1638 // and may interfere with query caching.
1639 // This also helps to respect expected $limit on repeated executions.
1642 if (!$this->can_add_more_courses_to_category($course->category)) {
1645 context_instance_preload($course);
1646 if (!$course->visible && !is_role_switched($course->id) && !has_capability('moodle/course:viewhiddencourses', context_course::instance($course->id))) {
1649 $coursenodes[$course->id] = $this->add_course($course);
1651 $coursesrs->close();
1655 // Prepare the SQL to load the courses and their contexts
1656 list($ccselect, $ccjoin) = context_instance_preload_sql('c.id', CONTEXT_COURSE, 'ctx');
1657 list($courseids, $courseparams) = $DB->get_in_or_equal(array_keys($this->addedcourses), SQL_PARAMS_NAMED, 'lc', false);
1658 $sql = "SELECT c.id, c.sortorder, c.visible, c.fullname, c.shortname, c.category $ccselect
1661 WHERE c.id {$courseids}
1662 ORDER BY c.sortorder ASC";
1663 $coursesrs = $DB->get_recordset_sql($sql, $courseparams);
1664 foreach ($coursesrs as $course) {
1665 if ($course->id == $SITE->id) {
1666 // frotpage is not wanted here
1669 context_instance_preload($course);
1670 if (!$course->visible && !is_role_switched($course->id) && !has_capability('moodle/course:viewhiddencourses', context_course::instance($course->id))) {
1673 $coursenodes[$course->id] = $this->add_course($course);
1674 if (count($coursenodes) >= $limit) {
1678 $coursesrs->close();
1681 return $coursenodes;
1685 * Returns true if more courses can be added to the provided category.
1687 * @param int|navigation_node|stdClass $category
1690 protected function can_add_more_courses_to_category($category) {
1693 if (!empty($CFG->navcourselimit)) {
1694 $limit = (int)$CFG->navcourselimit;
1696 if (is_numeric($category)) {
1697 if (!array_key_exists($category, $this->addedcategories)) {
1700 $coursecount = count($this->addedcategories[$category]->children->type(self::TYPE_COURSE));
1701 } else if ($category instanceof navigation_node) {
1702 if ($category->type != self::TYPE_CATEGORY) {
1705 $coursecount = count($category->children->type(self::TYPE_COURSE));
1706 } else if (is_object($category) && property_exists($category,'id')) {
1707 $coursecount = count($this->addedcategories[$category->id]->children->type(self::TYPE_COURSE));
1709 return ($coursecount <= $limit);
1713 * Loads all categories (top level or if an id is specified for that category)
1715 * @param int $categoryid The category id to load or null/0 to load all base level categories
1716 * @param bool $showbasecategories If set to true all base level categories will be loaded as well
1717 * as the requested category and any parent categories.
1718 * @return navigation_node|void returns a navigation node if a category has been loaded.
1720 protected function load_all_categories($categoryid = self::LOAD_ROOT_CATEGORIES, $showbasecategories = false) {
1723 // Check if this category has already been loaded
1724 if ($this->allcategoriesloaded || ($categoryid < 1 && $this->is_category_fully_loaded($categoryid))) {
1728 $catcontextsql = context_helper::get_preload_record_columns_sql('ctx');
1729 $sqlselect = "SELECT cc.*, $catcontextsql
1730 FROM {course_categories} cc
1731 JOIN {context} ctx ON cc.id = ctx.instanceid";
1732 $sqlwhere = "WHERE ctx.contextlevel = ".CONTEXT_COURSECAT;
1733 $sqlorder = "ORDER BY cc.depth ASC, cc.sortorder ASC, cc.id ASC";
1736 $categoriestoload = array();
1737 if ($categoryid == self::LOAD_ALL_CATEGORIES) {
1738 // We are going to load all categories regardless... prepare to fire
1739 // on the database server!
1740 } else if ($categoryid == self::LOAD_ROOT_CATEGORIES) { // can be 0
1741 // We are going to load all of the first level categories (categories without parents)
1742 $sqlwhere .= " AND cc.parent = 0";
1743 } else if (array_key_exists($categoryid, $this->addedcategories)) {
1744 // The category itself has been loaded already so we just need to ensure its subcategories
1746 list($sql, $params) = $DB->get_in_or_equal(array_keys($this->addedcategories), SQL_PARAMS_NAMED, 'parent', false);
1747 if ($showbasecategories) {
1748 // We need to include categories with parent = 0 as well
1749 $sqlwhere .= " AND (cc.parent = :categoryid OR cc.parent = 0) AND cc.parent {$sql}";
1751 // All we need is categories that match the parent
1752 $sqlwhere .= " AND cc.parent = :categoryid AND cc.parent {$sql}";
1754 $params['categoryid'] = $categoryid;
1756 // This category hasn't been loaded yet so we need to fetch it, work out its category path
1757 // and load this category plus all its parents and subcategories
1758 $category = $DB->get_record('course_categories', array('id' => $categoryid), 'path', MUST_EXIST);
1759 $categoriestoload = explode('/', trim($category->path, '/'));
1760 list($select, $params) = $DB->get_in_or_equal($categoriestoload);
1761 // We are going to use select twice so double the params
1762 $params = array_merge($params, $params);
1763 $basecategorysql = ($showbasecategories)?' OR cc.depth = 1':'';
1764 $sqlwhere .= " AND (cc.id {$select} OR cc.parent {$select}{$basecategorysql})";
1767 $categoriesrs = $DB->get_recordset_sql("$sqlselect $sqlwhere $sqlorder", $params);
1768 $categories = array();
1769 foreach ($categoriesrs as $category) {
1770 // Preload the context.. we'll need it when adding the category in order
1771 // to format the category name.
1772 context_helper::preload_from_record($category);
1773 if (array_key_exists($category->id, $this->addedcategories)) {
1774 // Do nothing, its already been added.
1775 } else if ($category->parent == '0') {
1776 // This is a root category lets add it immediately
1777 $this->add_category($category, $this->rootnodes['courses']);
1778 } else if (array_key_exists($category->parent, $this->addedcategories)) {
1779 // This categories parent has already been added we can add this immediately
1780 $this->add_category($category, $this->addedcategories[$category->parent]);
1782 $categories[] = $category;
1785 $categoriesrs->close();
1787 // Now we have an array of categories we need to add them to the navigation.
1788 while (!empty($categories)) {
1789 $category = reset($categories);
1790 if (array_key_exists($category->id, $this->addedcategories)) {
1792 } else if ($category->parent == '0') {
1793 $this->add_category($category, $this->rootnodes['courses']);
1794 } else if (array_key_exists($category->parent, $this->addedcategories)) {
1795 $this->add_category($category, $this->addedcategories[$category->parent]);
1797 // This category isn't in the navigation and niether is it's parent (yet).
1798 // We need to go through the category path and add all of its components in order.
1799 $path = explode('/', trim($category->path, '/'));
1800 foreach ($path as $catid) {
1801 if (!array_key_exists($catid, $this->addedcategories)) {
1802 // This category isn't in the navigation yet so add it.
1803 $subcategory = $categories[$catid];
1804 if ($subcategory->parent == '0') {
1805 // Yay we have a root category - this likely means we will now be able
1806 // to add categories without problems.
1807 $this->add_category($subcategory, $this->rootnodes['courses']);
1808 } else if (array_key_exists($subcategory->parent, $this->addedcategories)) {
1809 // The parent is in the category (as we'd expect) so add it now.
1810 $this->add_category($subcategory, $this->addedcategories[$subcategory->parent]);
1811 // Remove the category from the categories array.
1812 unset($categories[$catid]);
1814 // We should never ever arrive here - if we have then there is a bigger
1816 throw new coding_exception('Category path order is incorrect and/or there are missing categories');
1821 // Remove the category from the categories array now that we know it has been added.
1822 unset($categories[$category->id]);
1824 if ($categoryid === self::LOAD_ALL_CATEGORIES) {
1825 $this->allcategoriesloaded = true;
1827 // Check if there are any categories to load.
1828 if (count($categoriestoload) > 0) {
1829 $readytoloadcourses = array();
1830 foreach ($categoriestoload as $category) {
1831 if ($this->can_add_more_courses_to_category($category)) {
1832 $readytoloadcourses[] = $category;
1835 if (count($readytoloadcourses)) {
1836 $this->load_all_courses($readytoloadcourses);
1842 * Adds a structured category to the navigation in the correct order/place
1844 * @param stdClass $category
1845 * @param navigation_node $parent
1847 protected function add_category(stdClass $category, navigation_node $parent) {
1848 if (array_key_exists($category->id, $this->addedcategories)) {
1851 $url = new moodle_url('/course/category.php', array('id' => $category->id));
1852 $context = context_coursecat::instance($category->id);
1853 $categoryname = format_string($category->name, true, array('context' => $context));
1854 $categorynode = $parent->add($categoryname, $url, self::TYPE_CATEGORY, $categoryname, $category->id);
1855 if (empty($category->visible)) {
1856 if (has_capability('moodle/category:viewhiddencategories', get_system_context())) {
1857 $categorynode->hidden = true;
1859 $categorynode->display = false;
1862 $this->addedcategories[$category->id] = $categorynode;
1866 * Loads the given course into the navigation
1868 * @param stdClass $course
1869 * @return navigation_node
1871 protected function load_course(stdClass $course) {
1873 if ($course->id == $SITE->id) {
1874 // This is always loaded during initialisation
1875 return $this->rootnodes['site'];
1876 } else if (array_key_exists($course->id, $this->addedcourses)) {
1877 // The course has already been loaded so return a reference
1878 return $this->addedcourses[$course->id];
1881 return $this->add_course($course);
1886 * Loads all of the courses section into the navigation.
1888 * This function utilisies a callback that can be implemented within the course
1889 * formats lib.php file to customise the navigation that is generated at this
1890 * point for the course.
1892 * By default (if not defined) the method {@link global_navigation::load_generic_course_sections()} is
1895 * @param stdClass $course Database record for the course
1896 * @param navigation_node $coursenode The course node within the navigation
1897 * @return array Array of navigation nodes for the section with key = section id
1899 protected function load_course_sections(stdClass $course, navigation_node $coursenode) {
1901 $structurefile = $CFG->dirroot.'/course/format/'.$course->format.'/lib.php';
1902 $structurefunc = 'callback_'.$course->format.'_load_content';
1903 if (function_exists($structurefunc)) {
1904 return $structurefunc($this, $course, $coursenode);
1905 } else if (file_exists($structurefile)) {
1906 require_once $structurefile;
1907 if (function_exists($structurefunc)) {
1908 return $structurefunc($this, $course, $coursenode);
1910 return $this->load_generic_course_sections($course, $coursenode);
1913 return $this->load_generic_course_sections($course, $coursenode);
1918 * Generates an array of sections and an array of activities for the given course.
1920 * This method uses the cache to improve performance and avoid the get_fast_modinfo call
1922 * @param stdClass $course
1923 * @return array Array($sections, $activities)
1925 protected function generate_sections_and_activities(stdClass $course) {
1927 require_once($CFG->dirroot.'/course/lib.php');
1929 $modinfo = get_fast_modinfo($course);
1930 $sections = array_slice($modinfo->get_section_info_all(), 0, $course->numsections+1, true);
1931 $activities = array();
1933 foreach ($sections as $key => $section) {
1934 // Clone and unset summary to prevent $SESSION bloat (MDL-31802).
1935 $sections[$key] = clone($section);
1936 unset($sections[$key]->summary);
1937 $sections[$key]->hasactivites = false;
1938 if (!array_key_exists($section->section, $modinfo->sections)) {
1941 foreach ($modinfo->sections[$section->section] as $cmid) {
1942 $cm = $modinfo->cms[$cmid];
1943 if (!$cm->uservisible) {
1946 $activity = new stdClass;
1947 $activity->id = $cm->id;
1948 $activity->course = $course->id;
1949 $activity->section = $section->section;
1950 $activity->name = $cm->name;
1951 $activity->icon = $cm->icon;
1952 $activity->iconcomponent = $cm->iconcomponent;
1953 $activity->hidden = (!$cm->visible);
1954 $activity->modname = $cm->modname;
1955 $activity->nodetype = navigation_node::NODETYPE_LEAF;
1956 $activity->onclick = $cm->get_on_click();
1957 $url = $cm->get_url();
1959 $activity->url = null;
1960 $activity->display = false;
1962 $activity->url = $cm->get_url()->out();
1963 $activity->display = true;
1964 if (self::module_extends_navigation($cm->modname)) {
1965 $activity->nodetype = navigation_node::NODETYPE_BRANCH;
1968 $activities[$cmid] = $activity;
1969 if ($activity->display) {
1970 $sections[$key]->hasactivites = true;
1975 return array($sections, $activities);
1979 * Generically loads the course sections into the course's navigation.
1981 * @param stdClass $course
1982 * @param navigation_node $coursenode
1983 * @param string $courseformat The course format
1984 * @return array An array of course section nodes
1986 public function load_generic_course_sections(stdClass $course, navigation_node $coursenode, $courseformat='unknown') {
1987 global $CFG, $DB, $USER, $SITE;
1988 require_once($CFG->dirroot.'/course/lib.php');
1990 list($sections, $activities) = $this->generate_sections_and_activities($course);
1992 $namingfunction = 'callback_'.$courseformat.'_get_section_name';
1993 $namingfunctionexists = (function_exists($namingfunction));
1995 $urlfunction = 'callback_'.$courseformat.'_get_section_url';
1996 if (function_exists($urlfunction)) {
1997 // This code path is deprecated but we decided not to warn developers as
1998 // major changes are likely to follow in 2.4. See MDL-32504.
2000 $urlfunction = null;
2004 if (defined('AJAX_SCRIPT') && AJAX_SCRIPT == '0' && $this->page->url->compare(new moodle_url('/course/view.php'), URL_MATCH_BASE)) {
2005 $key = optional_param('section', $key, PARAM_INT);
2008 $navigationsections = array();
2009 foreach ($sections as $sectionid => $section) {
2010 $section = clone($section);
2011 if ($course->id == $SITE->id) {
2012 $this->load_section_activities($coursenode, $section->section, $activities);
2014 if (!$section->uservisible || (!$this->showemptysections &&
2015 !$section->hasactivites && $this->includesectionnum !== $section->section)) {
2019 if ($namingfunctionexists) {
2020 $sectionname = $namingfunction($course, $section, $sections);
2022 $sectionname = get_string('section').' '.$section->section;
2027 // pre 2.3 style format url
2028 $url = $urlfunction($course->id, $section->section);
2030 if ($course->coursedisplay == COURSE_DISPLAY_MULTIPAGE) {
2031 $url = course_get_url($course, $section->section);
2034 $sectionnode = $coursenode->add($sectionname, $url, navigation_node::TYPE_SECTION, null, $section->id);
2035 $sectionnode->nodetype = navigation_node::NODETYPE_BRANCH;
2036 $sectionnode->hidden = (!$section->visible || !$section->available);
2037 if ($key != '0' && $section->section != '0' && $section->section == $key && $this->page->context->contextlevel != CONTEXT_MODULE && $section->hasactivites) {
2038 $sectionnode->make_active();
2039 $this->load_section_activities($sectionnode, $section->section, $activities);
2041 $section->sectionnode = $sectionnode;
2042 $navigationsections[$sectionid] = $section;
2045 return $navigationsections;
2048 * Loads all of the activities for a section into the navigation structure.
2050 * @param navigation_node $sectionnode
2051 * @param int $sectionnumber
2052 * @param array $activities An array of activites as returned by {@link global_navigation::generate_sections_and_activities()}
2053 * @param stdClass $course The course object the section and activities relate to.
2054 * @return array Array of activity nodes
2056 protected function load_section_activities(navigation_node $sectionnode, $sectionnumber, array $activities, $course = null) {
2058 // A static counter for JS function naming
2059 static $legacyonclickcounter = 0;
2061 $activitynodes = array();
2062 if (empty($activities)) {
2063 return $activitynodes;
2066 if (!is_object($course)) {
2067 $activity = reset($activities);
2068 $courseid = $activity->course;
2070 $courseid = $course->id;
2072 $showactivities = ($courseid != $SITE->id || !empty($CFG->navshowfrontpagemods));
2074 foreach ($activities as $activity) {
2075 if ($activity->section != $sectionnumber) {
2078 if ($activity->icon) {
2079 $icon = new pix_icon($activity->icon, get_string('modulename', $activity->modname), $activity->iconcomponent);
2081 $icon = new pix_icon('icon', get_string('modulename', $activity->modname), $activity->modname);
2084 // Prepare the default name and url for the node
2085 $activityname = format_string($activity->name, true, array('context' => context_module::instance($activity->id)));
2086 $action = new moodle_url($activity->url);
2088 // Check if the onclick property is set (puke!)
2089 if (!empty($activity->onclick)) {
2090 // Increment the counter so that we have a unique number.
2091 $legacyonclickcounter++;
2092 // Generate the function name we will use
2093 $functionname = 'legacy_activity_onclick_handler_'.$legacyonclickcounter;
2094 $propogrationhandler = '';
2095 // Check if we need to cancel propogation. Remember inline onclick
2096 // events would return false if they wanted to prevent propogation and the
2098 if (strpos($activity->onclick, 'return false')) {
2099 $propogrationhandler = 'e.halt();';
2101 // Decode the onclick - it has already been encoded for display (puke)
2102 $onclick = htmlspecialchars_decode($activity->onclick);
2103 // Build the JS function the click event will call
2104 $jscode = "function {$functionname}(e) { $propogrationhandler $onclick }";
2105 $this->page->requires->js_init_code($jscode);
2106 // Override the default url with the new action link
2107 $action = new action_link($action, $activityname, new component_action('click', $functionname));
2110 $activitynode = $sectionnode->add($activityname, $action, navigation_node::TYPE_ACTIVITY, null, $activity->id, $icon);
2111 $activitynode->title(get_string('modulename', $activity->modname));
2112 $activitynode->hidden = $activity->hidden;
2113 $activitynode->display = $showactivities && $activity->display;
2114 $activitynode->nodetype = $activity->nodetype;
2115 $activitynodes[$activity->id] = $activitynode;
2118 return $activitynodes;
2121 * Loads a stealth module from unavailable section
2122 * @param navigation_node $coursenode
2123 * @param stdClass $modinfo
2124 * @return navigation_node or null if not accessible
2126 protected function load_stealth_activity(navigation_node $coursenode, $modinfo) {
2127 if (empty($modinfo->cms[$this->page->cm->id])) {
2130 $cm = $modinfo->cms[$this->page->cm->id];
2131 if (!$cm->uservisible) {
2135 $icon = new pix_icon($cm->icon, get_string('modulename', $cm->modname), $cm->iconcomponent);
2137 $icon = new pix_icon('icon', get_string('modulename', $cm->modname), $cm->modname);
2139 $url = $cm->get_url();
2140 $activitynode = $coursenode->add(format_string($cm->name), $url, navigation_node::TYPE_ACTIVITY, null, $cm->id, $icon);
2141 $activitynode->title(get_string('modulename', $cm->modname));
2142 $activitynode->hidden = (!$cm->visible);
2144 // Don't show activities that don't have links!
2145 $activitynode->display = false;
2146 } else if (self::module_extends_navigation($cm->modname)) {
2147 $activitynode->nodetype = navigation_node::NODETYPE_BRANCH;
2149 return $activitynode;
2152 * Loads the navigation structure for the given activity into the activities node.
2154 * This method utilises a callback within the modules lib.php file to load the
2155 * content specific to activity given.
2157 * The callback is a method: {modulename}_extend_navigation()
2159 * * {@link forum_extend_navigation()}
2160 * * {@link workshop_extend_navigation()}
2162 * @param cm_info|stdClass $cm
2163 * @param stdClass $course
2164 * @param navigation_node $activity
2167 protected function load_activity($cm, stdClass $course, navigation_node $activity) {
2170 // make sure we have a $cm from get_fast_modinfo as this contains activity access details
2171 if (!($cm instanceof cm_info)) {
2172 $modinfo = get_fast_modinfo($course);
2173 $cm = $modinfo->get_cm($cm->id);
2176 $activity->nodetype = navigation_node::NODETYPE_LEAF;
2177 $activity->make_active();
2178 $file = $CFG->dirroot.'/mod/'.$cm->modname.'/lib.php';
2179 $function = $cm->modname.'_extend_navigation';
2181 if (file_exists($file)) {
2182 require_once($file);
2183 if (function_exists($function)) {
2184 $activtyrecord = $DB->get_record($cm->modname, array('id' => $cm->instance), '*', MUST_EXIST);
2185 $function($activity, $course, $activtyrecord, $cm);
2189 // Allow the active advanced grading method plugin to append module navigation
2190 $featuresfunc = $cm->modname.'_supports';
2191 if (function_exists($featuresfunc) && $featuresfunc(FEATURE_ADVANCED_GRADING)) {
2192 require_once($CFG->dirroot.'/grade/grading/lib.php');
2193 $gradingman = get_grading_manager($cm->context, $cm->modname);
2194 $gradingman->extend_navigation($this, $activity);
2197 return $activity->has_children();
2200 * Loads user specific information into the navigation in the appropriate place.
2202 * If no user is provided the current user is assumed.
2204 * @param stdClass $user
2205 * @param bool $forceforcontext probably force something to be loaded somewhere (ask SamH if not sure what this means)
2208 protected function load_for_user($user=null, $forceforcontext=false) {
2209 global $DB, $CFG, $USER, $SITE;
2211 if ($user === null) {
2212 // We can't require login here but if the user isn't logged in we don't
2213 // want to show anything
2214 if (!isloggedin() || isguestuser()) {
2218 } else if (!is_object($user)) {
2219 // If the user is not an object then get them from the database
2220 $select = context_helper::get_preload_record_columns_sql('ctx');
2221 $sql = "SELECT u.*, $select
2223 JOIN {context} ctx ON u.id = ctx.instanceid
2224 WHERE u.id = :userid AND
2225 ctx.contextlevel = :contextlevel";
2226 $user = $DB->get_record_sql($sql, array('userid' => (int)$user, 'contextlevel' => CONTEXT_USER), MUST_EXIST);
2227 context_helper::preload_from_record($user);
2230 $iscurrentuser = ($user->id == $USER->id);
2232 $usercontext = context_user::instance($user->id);
2234 // Get the course set against the page, by default this will be the site
2235 $course = $this->page->course;
2236 $baseargs = array('id'=>$user->id);
2237 if ($course->id != $SITE->id && (!$iscurrentuser || $forceforcontext)) {
2238 $coursenode = $this->load_course($course);
2239 $baseargs['course'] = $course->id;
2240 $coursecontext = context_course::instance($course->id);
2241 $issitecourse = false;
2243 // Load all categories and get the context for the system
2244 $coursecontext = context_system::instance();
2245 $issitecourse = true;
2248 // Create a node to add user information under.
2249 if ($iscurrentuser && !$forceforcontext) {
2250 // If it's the current user the information will go under the profile root node
2251 $usernode = $this->rootnodes['myprofile'];
2252 $course = get_site();
2253 $coursecontext = context_course::instance($course->id);
2254 $issitecourse = true;
2256 if (!$issitecourse) {
2257 // Not the current user so add it to the participants node for the current course
2258 $usersnode = $coursenode->get('participants', navigation_node::TYPE_CONTAINER);
2259 $userviewurl = new moodle_url('/user/view.php', $baseargs);
2261 // This is the site so add a users node to the root branch
2262 $usersnode = $this->rootnodes['users'];
2263 if (has_capability('moodle/course:viewparticipants', $coursecontext)) {
2264 $usersnode->action = new moodle_url('/user/index.php', array('id'=>$course->id));
2266 $userviewurl = new moodle_url('/user/profile.php', $baseargs);
2269 // We should NEVER get here, if the course hasn't been populated
2270 // with a participants node then the navigaiton either wasn't generated
2271 // for it (you are missing a require_login or set_context call) or
2272 // you don't have access.... in the interests of no leaking informatin
2273 // we simply quit...
2276 // Add a branch for the current user
2277 $canseefullname = has_capability('moodle/site:viewfullnames', $coursecontext);
2278 $usernode = $usersnode->add(fullname($user, $canseefullname), $userviewurl, self::TYPE_USER, null, $user->id);
2280 if ($this->page->context->contextlevel == CONTEXT_USER && $user->id == $this->page->context->instanceid) {
2281 $usernode->make_active();
2285 // If the user is the current user or has permission to view the details of the requested
2286 // user than add a view profile link.
2287 if ($iscurrentuser || has_capability('moodle/user:viewdetails', $coursecontext) || has_capability('moodle/user:viewdetails', $usercontext)) {
2288 if ($issitecourse || ($iscurrentuser && !$forceforcontext)) {
2289 $usernode->add(get_string('viewprofile'), new moodle_url('/user/profile.php',$baseargs));
2291 $usernode->add(get_string('viewprofile'), new moodle_url('/user/view.php',$baseargs));
2295 if (!empty($CFG->navadduserpostslinks)) {
2296 // Add nodes for forum posts and discussions if the user can view either or both
2297 // There are no capability checks here as the content of the page is based
2298 // purely on the forums the current user has access too.
2299 $forumtab = $usernode->add(get_string('forumposts', 'forum'));
2300 $forumtab->add(get_string('posts', 'forum'), new moodle_url('/mod/forum/user.php', $baseargs));
2301 $forumtab->add(get_string('discussions', 'forum'), new moodle_url('/mod/forum/user.php', array_merge($baseargs, array('mode'=>'discussions'))));
2305 if (!empty($CFG->enableblogs)) {
2306 if (!$this->cache->cached('userblogoptions'.$user->id)) {
2307 require_once($CFG->dirroot.'/blog/lib.php');
2308 // Get all options for the user
2309 $options = blog_get_options_for_user($user);
2310 $this->cache->set('userblogoptions'.$user->id, $options);
2312 $options = $this->cache->{'userblogoptions'.$user->id};
2315 if (count($options) > 0) {
2316 $blogs = $usernode->add(get_string('blogs', 'blog'), null, navigation_node::TYPE_CONTAINER);
2317 foreach ($options as $type => $option) {
2318 if ($type == "rss") {
2319 $blogs->add($option['string'], $option['link'], settings_navigation::TYPE_SETTING, null, null, new pix_icon('i/rss', ''));
2321 $blogs->add($option['string'], $option['link']);
2327 if (!empty($CFG->messaging)) {
2328 $messageargs = null;
2329 if ($USER->id!=$user->id) {
2330 $messageargs = array('id'=>$user->id);
2332 $url = new moodle_url('/message/index.php',$messageargs);
2333 $usernode->add(get_string('messages', 'message'), $url, self::TYPE_SETTING, null, 'messages');
2336 $context = context_user::instance($USER->id);
2337 if ($iscurrentuser && has_capability('moodle/user:manageownfiles', $context)) {
2338 $url = new moodle_url('/user/files.php');
2339 $usernode->add(get_string('myfiles'), $url, self::TYPE_SETTING);
2342 // Add a node to view the users notes if permitted
2343 if (!empty($CFG->enablenotes) && has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $coursecontext)) {
2344 $url = new moodle_url('/notes/index.php',array('user'=>$user->id));
2345 if ($coursecontext->instanceid) {
2346 $url->param('course', $coursecontext->instanceid);
2348 $usernode->add(get_string('notes', 'notes'), $url);
2352 $reporttab = $usernode->add(get_string('activityreports'));
2353 $reports = get_plugin_list_with_function('report', 'extend_navigation_user', 'lib.php');
2354 foreach ($reports as $reportfunction) {
2355 $reportfunction($reporttab, $user, $course);
2357 $anyreport = has_capability('moodle/user:viewuseractivitiesreport', $usercontext);
2358 if ($anyreport || ($course->showreports && $iscurrentuser && $forceforcontext)) {
2359 // Add grade hardcoded grade report if necessary
2360 $gradeaccess = false;
2361 if (has_capability('moodle/grade:viewall', $coursecontext)) {
2362 //ok - can view all course grades
2363 $gradeaccess = true;
2364 } else if ($course->showgrades) {
2365 if ($iscurrentuser && has_capability('moodle/grade:view', $coursecontext)) {
2366 //ok - can view own grades
2367 $gradeaccess = true;
2368 } else if (has_capability('moodle/grade:viewall', $usercontext)) {
2369 // ok - can view grades of this user - parent most probably
2370 $gradeaccess = true;
2371 } else if ($anyreport) {
2372 // ok - can view grades of this user - parent most probably
2373 $gradeaccess = true;
2377 $reporttab->add(get_string('grade'), new moodle_url('/course/user.php', array('mode'=>'grade', 'id'=>$course->id, 'user'=>$usercontext->instanceid)));
2380 // Check the number of nodes in the report node... if there are none remove the node
2381 $reporttab->trim_if_empty();
2383 // If the user is the current user add the repositories for the current user
2384 $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields));
2385 if ($iscurrentuser) {
2386 if (!$this->cache->cached('contexthasrepos'.$usercontext->id)) {
2387 require_once($CFG->dirroot . '/repository/lib.php');
2388 $editabletypes = repository::get_editable_types($usercontext);
2389 $haseditabletypes = !empty($editabletypes);
2390 unset($editabletypes);
2391 $this->cache->set('contexthasrepos'.$usercontext->id, $haseditabletypes);
2393 $haseditabletypes = $this->cache->{'contexthasrepos'.$usercontext->id};
2395 if ($haseditabletypes) {
2396 $usernode->add(get_string('repositories', 'repository'), new moodle_url('/repository/manage_instances.php', array('contextid' => $usercontext->id)));
2398 } else if ($course->id == $SITE->id && has_capability('moodle/user:viewdetails', $usercontext) && (!in_array('mycourses', $hiddenfields) || has_capability('moodle/user:viewhiddendetails', $coursecontext))) {
2400 // Add view grade report is permitted
2401 $reports = get_plugin_list('gradereport');
2402 arsort($reports); // user is last, we want to test it first
2404 $userscourses = enrol_get_users_courses($user->id);
2405 $userscoursesnode = $usernode->add(get_string('courses'));
2407 foreach ($userscourses as $usercourse) {
2408 $usercoursecontext = context_course::instance($usercourse->id);
2409 $usercourseshortname = format_string($usercourse->shortname, true, array('context' => $usercoursecontext));
2410 $usercoursenode = $userscoursesnode->add($usercourseshortname, new moodle_url('/user/view.php', array('id'=>$user->id, 'course'=>$usercourse->id)), self::TYPE_CONTAINER);
2412 $gradeavailable = has_capability('moodle/grade:viewall', $usercoursecontext);
2413 if (!$gradeavailable && !empty($usercourse->showgrades) && is_array($reports) && !empty($reports)) {
2414 foreach ($reports as $plugin => $plugindir) {
2415 if (has_capability('gradereport/'.$plugin.':view', $usercoursecontext)) {
2416 //stop when the first visible plugin is found
2417 $gradeavailable = true;
2423 if ($gradeavailable) {
2424 $url = new moodle_url('/grade/report/index.php', array('id'=>$usercourse->id));
2425 $usercoursenode->add(get_string('grades'), $url, self::TYPE_SETTING, null, null, new pix_icon('i/grades', ''));
2428 // Add a node to view the users notes if permitted
2429 if (!empty($CFG->enablenotes) && has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $usercoursecontext)) {
2430 $url = new moodle_url('/notes/index.php',array('user'=>$user->id, 'course'=>$usercourse->id));
2431 $usercoursenode->add(get_string('notes', 'notes'), $url, self::TYPE_SETTING);
2434 if (can_access_course($usercourse, $user->id)) {
2435 $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', ''));
2438 $reporttab = $usercoursenode->add(get_string('activityreports'));
2440 $reports = get_plugin_list_with_function('report', 'extend_navigation_user', 'lib.php');
2441 foreach ($reports as $reportfunction) {
2442 $reportfunction($reporttab, $user, $usercourse);
2445 $reporttab->trim_if_empty();
2452 * This method simply checks to see if a given module can extend the navigation.
2454 * @todo (MDL-25290) A shared caching solution should be used to save details on what extends navigation.
2456 * @param string $modname
2459 protected static function module_extends_navigation($modname) {
2461 static $extendingmodules = array();
2462 if (!array_key_exists($modname, $extendingmodules)) {
2463 $extendingmodules[$modname] = false;
2464 $file = $CFG->dirroot.'/mod/'.$modname.'/lib.php';
2465 if (file_exists($file)) {
2466 $function = $modname.'_extend_navigation';
2467 require_once($file);
2468 $extendingmodules[$modname] = (function_exists($function));
2471 return $extendingmodules[$modname];
2474 * Extends the navigation for the given user.
2476 * @param stdClass $user A user from the database
2478 public function extend_for_user($user) {
2479 $this->extendforuser[] = $user;
2483 * Returns all of the users the navigation is being extended for
2485 * @return array An array of extending users.
2487 public function get_extending_users() {
2488 return $this->extendforuser;
2491 * Adds the given course to the navigation structure.
2493 * @param stdClass $course
2494 * @param bool $forcegeneric
2495 * @param bool $ismycourse
2496 * @return navigation_node
2498 public function add_course(stdClass $course, $forcegeneric = false, $ismycourse = false) {
2501 // We found the course... we can return it now :)
2502 if (!$forcegeneric && array_key_exists($course->id, $this->addedcourses)) {
2503 return $this->addedcourses[$course->id];
2506 $coursecontext = context_course::instance($course->id);
2508 if ($course->id != $SITE->id && !$course->visible) {
2509 if (is_role_switched($course->id)) {
2510 // user has to be able to access course in order to switch, let's skip the visibility test here
2511 } else if (!has_capability('moodle/course:viewhiddencourses', $coursecontext)) {
2516 $issite = ($course->id == $SITE->id);
2517 $shortname = format_string($course->shortname, true, array('context' => $coursecontext));
2522 if (empty($CFG->usesitenameforsitepages)) {
2523 $shortname = get_string('sitepages');
2525 } else if ($ismycourse && !$forcegeneric) {
2526 if (!empty($CFG->navshowmycoursecategories) && ($parent = $this->rootnodes['mycourses']->find($course->category, self::TYPE_CATEGORY))) {
2527 // Nothing to do here the above statement set $parent to the category within mycourses.
2529 $parent = $this->rootnodes['mycourses'];
2531 $url = new moodle_url('/course/view.php', array('id'=>$course->id));
2533 $parent = $this->rootnodes['courses'];
2534 $url = new moodle_url('/course/view.php', array('id'=>$course->id));
2535 if (!empty($course->category) && $this->show_categories()) {
2536 if ($this->show_categories() && !$this->is_category_fully_loaded($course->category)) {
2537 // We need to load the category structure for this course
2538 $this->load_all_categories($course->category, false);
2540 if (array_key_exists($course->category, $this->addedcategories)) {
2541 $parent = $this->addedcategories[$course->category];
2542 // This could lead to the course being created so we should check whether it is the case again
2543 if (!$forcegeneric && array_key_exists($course->id, $this->addedcourses)) {
2544 return $this->addedcourses[$course->id];
2550 $coursenode = $parent->add($shortname, $url, self::TYPE_COURSE, $shortname, $course->id);
2551 $coursenode->nodetype = self::NODETYPE_BRANCH;
2552 $coursenode->hidden = (!$course->visible);
2553 $coursenode->title(format_string($course->fullname, true, array('context' => context_course::instance($course->id))));
2554 if (!$forcegeneric) {
2555 $this->addedcourses[$course->id] = $coursenode;
2562 * Returns true if the category has already been loaded as have any child categories
2564 * @param int $categoryid
2567 protected function is_category_fully_loaded($categoryid) {
2568 return (array_key_exists($categoryid, $this->addedcategories) && ($this->allcategoriesloaded || $this->addedcategories[$categoryid]->children->count() > 0));
2572 * Adds essential course nodes to the navigation for the given course.
2574 * This method adds nodes such as reports, blogs and participants
2576 * @param navigation_node $coursenode
2577 * @param stdClass $course
2578 * @return bool returns true on successful addition of a node.
2580 public function add_course_essentials($coursenode, stdClass $course) {
2583 if ($course->id == $SITE->id) {
2584 return $this->add_front_page_course_essentials($coursenode, $course);
2587 if ($coursenode == false || !($coursenode instanceof navigation_node) || $coursenode->get('participants', navigation_node::TYPE_CONTAINER)) {
2592 if (has_capability('moodle/course:viewparticipants', $this->page->context)) {
2593 $participants = $coursenode->add(get_string('participants'), new moodle_url('/user/index.php?id='.$course->id), self::TYPE_CONTAINER, get_string('participants'), 'participants');
2594 $currentgroup = groups_get_course_group($course, true);
2595 if ($course->id == $SITE->id) {
2597 } else if ($course->id && !$currentgroup) {
2598 $filterselect = $course->id;
2600 $filterselect = $currentgroup;
2602 $filterselect = clean_param($filterselect, PARAM_INT);
2603 if (($CFG->bloglevel == BLOG_GLOBAL_LEVEL or ($CFG->bloglevel == BLOG_SITE_LEVEL and (isloggedin() and !isguestuser())))
2604 and has_capability('moodle/blog:view', context_system::instance())) {
2605 $blogsurls = new moodle_url('/blog/index.php', array('courseid' => $filterselect));
2606 $participants->add(get_string('blogscourse','blog'), $blogsurls->out());
2608 if (!empty($CFG->enablenotes) && (has_capability('moodle/notes:manage', $this->page->context) || has_capability('moodle/notes:view', $this->page->context))) {
2609 $participants->add(get_string('notes','notes'), new moodle_url('/notes/index.php', array('filtertype'=>'course', 'filterselect'=>$course->id)));
2611 } else if (count($this->extendforuser) > 0 || $this->page->course->id == $course->id) {
2612 $participants = $coursenode->add(get_string('participants'), null, self::TYPE_CONTAINER, get_string('participants'), 'participants');
2615 // View course reports
2616 if (has_capability('moodle/site:viewreports', $this->page->context)) { // basic capability for listing of reports
2617 $reportnav = $coursenode->add(get_string('reports'), null, self::TYPE_CONTAINER, null, null, new pix_icon('i/stats', ''));
2618 $coursereports = get_plugin_list('coursereport'); // deprecated
2619 foreach ($coursereports as $report=>$dir) {
2620 $libfile = $CFG->dirroot.'/course/report/'.$report.'/lib.php';
2621 if (file_exists($libfile)) {
2622 require_once($libfile);
2623 $reportfunction = $report.'_report_extend_navigation';
2624 if (function_exists($report.'_report_extend_navigation')) {
2625 $reportfunction($reportnav, $course, $this->page->context);
2630 $reports = get_plugin_list_with_function('report', 'extend_navigation_course', 'lib.php');
2631 foreach ($reports as $reportfunction) {
2632 $reportfunction($reportnav, $course, $this->page->context);
2638 * This generates the structure of the course that won't be generated when
2639 * the modules and sections are added.
2641 * Things such as the reports branch, the participants branch, blogs... get
2642 * added to the course node by this method.
2644 * @param navigation_node $coursenode
2645 * @param stdClass $course
2646 * @return bool True for successfull generation
2648 public function add_front_page_course_essentials(navigation_node $coursenode, stdClass $course) {
2651 if ($coursenode == false || $coursenode->get('frontpageloaded', navigation_node::TYPE_CUSTOM)) {
2655 // Hidden node that we use to determine if the front page navigation is loaded.
2656 // This required as there are not other guaranteed nodes that may be loaded.
2657 $coursenode->add('frontpageloaded', null, self::TYPE_CUSTOM, null, 'frontpageloaded')->display = false;
2660 if (has_capability('moodle/course:viewparticipants', get_system_context())) {
2661 $coursenode->add(get_string('participants'), new moodle_url('/user/index.php?id='.$course->id), self::TYPE_CUSTOM, get_string('participants'), 'participants');
2667 if (!empty($CFG->enableblogs)
2668 and ($CFG->bloglevel == BLOG_GLOBAL_LEVEL or ($CFG->bloglevel == BLOG_SITE_LEVEL and (isloggedin() and !isguestuser())))
2669 and has_capability('moodle/blog:view', context_system::instance())) {
2670 $blogsurls = new moodle_url('/blog/index.php', array('courseid' => $filterselect));
2671 $coursenode->add(get_string('blogssite','blog'), $blogsurls->out());
2675 if (!empty($CFG->enablenotes) && (has_capability('moodle/notes:manage', $this->page->context) || has_capability('moodle/notes:view', $this->page->context))) {
2676 $coursenode->add(get_string('notes','notes'), new moodle_url('/notes/index.php', array('filtertype'=>'course', 'filterselect'=>$filterselect)));
2680 if (!empty($CFG->usetags) && isloggedin()) {
2681 $coursenode->add(get_string('tags', 'tag'), new moodle_url('/tag/search.php'));
2686 $calendarurl = new moodle_url('/calendar/view.php', array('view' => 'month'));
2687 $coursenode->add(get_string('calendar', 'calendar'), $calendarurl, self::TYPE_CUSTOM, null, 'calendar');
2690 // View course reports
2691 if (has_capability('moodle/site:viewreports', $this->page->context)) { // basic capability for listing of reports
2692 $reportnav = $coursenode->add(get_string('reports'), null, self::TYPE_CONTAINER, null, null, new pix_icon('i/stats', ''));
2693 $coursereports = get_plugin_list('coursereport'); // deprecated
2694 foreach ($coursereports as $report=>$dir) {
2695 $libfile = $CFG->dirroot.'/course/report/'.$report.'/lib.php';
2696 if (file_exists($libfile)) {
2697 require_once($libfile);
2698 $reportfunction = $report.'_report_extend_navigation';
2699 if (function_exists($report.'_report_extend_navigation')) {
2700 $reportfunction($reportnav, $course, $this->page->context);
2705 $reports = get_plugin_list_with_function('report', 'extend_navigation_course', 'lib.php');
2706 foreach ($reports as $reportfunction) {
2707 $reportfunction($reportnav, $course, $this->page->context);
2714 * Clears the navigation cache
2716 public function clear_cache() {
2717 $this->cache->clear();
2721 * Sets an expansion limit for the navigation
2723 * The expansion limit is used to prevent the display of content that has a type
2724 * greater than the provided $type.
2726 * Can be used to ensure things such as activities or activity content don't get
2727 * shown on the navigation.
2728 * They are still generated in order to ensure the navbar still makes sense.
2730 * @param int $type One of navigation_node::TYPE_*
2731 * @return bool true when complete.
2733 public function set_expansion_limit($type) {
2735 $nodes = $this->find_all_of_type($type);
2736 foreach ($nodes as &$node) {
2737 // We need to generate the full site node
2738 if ($type == self::TYPE_COURSE && $node->key == $SITE->id) {
2741 foreach ($node->children as &$child) {
2742 // We still want to show course reports and participants containers
2743 // or there will be navigation missing.
2744 if ($type == self::TYPE_COURSE && $child->type === self::TYPE_CONTAINER) {
2747 $child->display = false;
2753 * Attempts to get the navigation with the given key from this nodes children.
2755 * This function only looks at this nodes children, it does NOT look recursivily.
2756 * If the node can't be found then false is returned.
2758 * If you need to search recursivily then use the {@link global_navigation::find()} method.
2760 * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
2761 * may be of more use to you.
2763 * @param string|int $key The key of the node you wish to receive.
2764 * @param int $type One of navigation_node::TYPE_*
2765 * @return navigation_node|false
2767 public function get($key, $type = null) {
2768 if (!$this->initialised) {
2769 $this->initialise();
2771 return parent::get($key, $type);
2775 * Searches this nodes children and their children to find a navigation node
2776 * with the matching key and type.
2778 * This method is recursive and searches children so until either a node is
2779 * found or there are no more nodes to search.
2781 * If you know that the node being searched for is a child of this node
2782 * then use the {@link global_navigation::get()} method instead.
2784 * Note: If you are trying to set the active node {@link navigation_node::override_active_url()}
2785 * may be of more use to you.
2787 * @param string|int $key The key of the node you wish to receive.
2788 * @param int $type One of navigation_node::TYPE_*
2789 * @return navigation_node|false
2791 public function find($key, $type) {
2792 if (!$this->initialised) {
2793 $this->initialise();
2795 return parent::find($key, $type);
2800 * The global navigation class used especially for AJAX requests.
2802 * The primary methods that are used in the global navigation class have been overriden
2803 * to ensure that only the relevant branch is generated at the root of the tree.
2804 * This can be done because AJAX is only used when the backwards structure for the
2805 * requested branch exists.
2806 * This has been done only because it shortens the amounts of information that is generated
2807 * which of course will speed up the response time.. because no one likes laggy AJAX.
2810 * @category navigation
2811 * @copyright 2009 Sam Hemelryk
2812 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2814 class global_navigation_for_ajax extends global_navigation {
2816 /** @var int used for determining what type of navigation_node::TYPE_* is being used */
2817 protected $branchtype;
2819 /** @var int the instance id */
2820 protected $instanceid;
2822 /** @var array Holds an array of expandable nodes */
2823 protected $expandable = array();
2826 * Constructs the navigation for use in an AJAX request
2828 * @param moodle_page $page moodle_page object
2829 * @param int $branchtype
2832 public function __construct($page, $branchtype, $id) {
2833 $this->page = $page;
2834 $this->cache = new navigation_cache(NAVIGATION_CACHE_NAME);
2835 $this->children = new navigation_node_collection();
2836 $this->branchtype = $branchtype;
2837 $this->instanceid = $id;
2838 $this->initialise();
2841 * Initialise the navigation given the type and id for the branch to expand.
2843 * @return array An array of the expandable nodes
2845 public function initialise() {
2846 global $CFG, $DB, $SITE;
2848 if ($this->initialised || during_initial_install()) {
2849 return $this->expandable;
2851 $this->initialised = true;
2853 $this->rootnodes = array();
2854 $this->rootnodes['site'] = $this->add_course($SITE);
2855 $this->rootnodes['courses'] = $this->add(get_string('courses'), null, self::TYPE_ROOTNODE, null, 'courses');
2857 // Branchtype will be one of navigation_node::TYPE_*
2858 switch ($this->branchtype) {
2859 case self::TYPE_CATEGORY :
2860 $this->load_category($this->instanceid);
2862 case self::TYPE_COURSE :
2863 $course = $DB->get_record('course', array('id' => $this->instanceid), '*', MUST_EXIST);
2864 require_course_login($course, true, null, false, true);
2865 $this->page->set_context(context_course::instance($course->id));
2866 $coursenode = $this->add_course($course);
2867 $this->add_course_essentials($coursenode, $course);
2868 if ($this->format_display_course_content($course->format)) {
2869 $this->load_course_sections($course, $coursenode);
2872 case self::TYPE_SECTION :
2873 $sql = 'SELECT c.*, cs.section AS sectionnumber
2875 LEFT JOIN {course_sections} cs ON cs.course = c.id
2877 $course = $DB->get_record_sql($sql, array($this->instanceid), MUST_EXIST);
2878 require_course_login($course, true, null, false, true);
2879 $this->page->set_context(context_course::instance($course->id));
2880 $coursenode = $this->add_course($course);
2881 $this->add_course_essentials($coursenode, $course);
2882 $sections = $this->load_course_sections($course, $coursenode);
2883 list($sectionarray, $activities) = $this->generate_sections_and_activities($course);
2884 $this->load_section_activities($sections[$course->sectionnumber]->sectionnode, $course->sectionnumber, $activities);
2886 case self::TYPE_ACTIVITY :
2889 JOIN {course_modules} cm ON cm.course = c.id
2890 WHERE cm.id = :cmid";
2891 $params = array('cmid' => $this->instanceid);
2892 $course = $DB->get_record_sql($sql, $params, MUST_EXIST);
2893 $modinfo = get_fast_modinfo($course);
2894 $cm = $modinfo->get_cm($this->instanceid);
2895 require_course_login($course, true, $cm, false, true);
2896 $this->page->set_context(context_module::instance($cm->id));
2897 $coursenode = $this->load_course($course);
2898 if ($course->id == $SITE->id) {
2899 $modulenode = $this->load_activity($cm, $course, $coursenode->find($cm->id, self::TYPE_ACTIVITY));
2901 $sections = $this->load_course_sections($course, $coursenode);
2902 list($sectionarray, $activities) = $this->generate_sections_and_activities($course);
2903 $activities = $this->load_section_activities($sections[$cm->sectionnum]->sectionnode, $cm->sectionnum, $activities);
2904 $modulenode = $this->load_activity($cm, $course, $activities[$cm->id]);
2908 throw new Exception('Unknown type');
2909 return $this->expandable;
2912 if ($this->page->context->contextlevel == CONTEXT_COURSE && $this->page->context->instanceid != $SITE->id) {
2913 $this->load_for_user(null, true);
2916 $this->find_expandable($this->expandable);
2917 return $this->expandable;
2921 * Loads a single category into the AJAX navigation.
2923 * This function is special in that it doesn't concern itself with the parent of
2924 * the requested category or its siblings.
2925 * This is because with the AJAX navigation we know exactly what is wanted and only need to
2928 * @global moodle_database $DB
2929 * @param int $categoryid
2931 protected function load_category($categoryid) {
2935 if (!empty($CFG->navcourselimit)) {
2936 $limit = (int)$CFG->navcourselimit;
2939 $catcontextsql = context_helper::get_preload_record_columns_sql('ctx');
2940 $sql = "SELECT cc.*, $catcontextsql
2941 FROM {course_categories} cc
2942 JOIN {context} ctx ON cc.id = ctx.instanceid
2943 WHERE ctx.contextlevel = ".CONTEXT_COURSECAT." AND
2944 (cc.id = :categoryid1 OR cc.parent = :categoryid2)
2945 ORDER BY cc.depth ASC, cc.sortorder ASC, cc.id ASC";
2946 $params = array('categoryid1' => $categoryid, 'categoryid2' => $categoryid);
2947 $categories = $DB->get_recordset_sql($sql, $params, 0, $limit);
2948 $subcategories = array();
2949 $basecategory = null;
2950 foreach ($categories as $category) {
2951 context_helper::preload_from_record($category);
2952 if ($category->id == $categoryid) {
2953 $this->add_category($category, $this);
2954 $basecategory = $this->addedcategories[$category->id];
2956 $subcategories[] = $category;
2959 $categories->close();
2961 if (!is_null($basecategory)) {
2962 //echo "<pre>".print_r($subcategories, true).'</pre>';
2963 foreach ($subcategories as $category) {
2964 $this->add_category($category, $basecategory);
2968 $courses = $DB->get_recordset('course', array('category' => $categoryid), 'sortorder', '*' , 0, $limit);
2969 foreach ($courses as $course) {
2970 $this->add_course($course);
2976 * Returns an array of expandable nodes
2979 public function get_expandable() {
2980 return $this->expandable;
2987 * This class is used to manage the navbar, which is initialised from the navigation
2988 * object held by PAGE
2991 * @category navigation
2992 * @copyright 2009 Sam Hemelryk
2993 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2995 class navbar extends navigation_node {
2996 /** @var bool A switch for whether the navbar is initialised or not */
2997 protected $initialised = false;
2998 /** @var mixed keys used to reference the nodes on the navbar */
2999 protected $keys = array();
3000 /** @var null|string content of the navbar */
3001 protected $content = null;
3002 /** @var moodle_page object the moodle page that this navbar belongs to */
3004 /** @var bool A switch for whether to ignore the active navigation information */
3005 protected $ignoreactive = false;
3006 /** @var bool A switch to let us know if we are in the middle of an install */
3007 protected $duringinstall = false;
3008 /** @var bool A switch for whether the navbar has items */
3009 protected $hasitems = false;
3010 /** @var array An array of navigation nodes for the navbar */
3012 /** @var array An array of child node objects */
3013 public $children = array();
3014 /** @var bool A switch for whether we want to include the root node in the navbar */
3015 public $includesettingsbase = false;
3017 * The almighty constructor
3019 * @param moodle_page $page
3021 public function __construct(moodle_page $page) {
3023 if (during_initial_install()) {
3024 $this->duringinstall = true;
3027 $this->page = $page;
3028 $this->text = get_string('home');
3029 $this->shorttext = get_string('home');
3030 $this->action = new moodle_url($CFG->wwwroot);
3031 $this->nodetype = self::NODETYPE_BRANCH;
3032 $this->type = self::TYPE_SYSTEM;
3036 * Quick check to see if the navbar will have items in.
3038 * @return bool Returns true if the navbar will have items, false otherwise
3040 public function has_items() {
3041 if ($this->duringinstall) {
3043 } else if ($this->hasitems !== false) {
3046 $this->page->navigation->initialise($this->page);
3048 $activenodefound = ($this->page->navigation->contains_active_node() ||
3049 $this->page->settingsnav->contains_active_node());
3051 $outcome = (count($this->children)>0 || (!$this->ignoreactive && $activenodefound));
3052 $this->hasitems = $outcome;
3057 * Turn on/off ignore active
3059 * @param bool $setting
3061 public function ignore_active($setting=true) {
3062 $this->ignoreactive = ($setting);
3066 * Gets a navigation node
3068 * @param string|int $key for referencing the navbar nodes
3069 * @param int $type navigation_node::TYPE_*
3070 * @return navigation_node|bool
3072 public function get($key, $type = null) {
3073 foreach ($this->children as &$child) {
3074 if ($child->key === $key && ($type == null || $type == $child->type)) {
3081 * Returns an array of navigation_node's that make up the navbar.
3085 public function get_items() {
3087 // Make sure that navigation is initialised
3088 if (!$this->has_items()) {
3091 if ($this->items !== null) {
3092 return $this->items;
3095 if (count($this->children) > 0) {
3096 // Add the custom children
3097 $items = array_reverse($this->children);
3100 $navigationactivenode = $this->page->navigation->find_active_node();
3101 $settingsactivenode = $this->page->settingsnav->find_active_node();
3103 // Check if navigation contains the active node
3104 if (!$this->ignoreactive) {
3106 if ($navigationactivenode && $settingsactivenode) {
3107 // Parse a combined navigation tree
3108 while ($settingsactivenode && $settingsactivenode->parent !== null) {
3109 if (!$settingsactivenode->mainnavonly) {
3110 $items[] = $settingsactivenode;
3112 $settingsactivenode = $settingsactivenode->parent;
3114 if (!$this->includesettingsbase) {
3115 // Removes the first node from the settings (root node) from the list
3118 while ($navigationactivenode && $navigationactivenode->parent !== null) {
3119 if (!$navigationactivenode->mainnavonly) {
3120 $items[] = $navigationactivenode;
3122 $navigationactivenode = $navigationactivenode->parent;
3124 } else if ($navigationactivenode) {
3125 // Parse the navigation tree to get the active node
3126 while ($navigationactivenode && $navigationactivenode->parent !== null) {
3127 if (!$navigationactivenode->mainnavonly) {
3128 $items[] = $navigationactivenode;
3130 $navigationactivenode = $navigationactivenode->parent;
3132 } else if ($settingsactivenode) {
3133 // Parse the settings navigation to get the active node
3134 while ($settingsactivenode && $settingsactivenode->parent !== null) {
3135 if (!$settingsactivenode->mainnavonly) {
3136 $items[] = $settingsactivenode;
3138 $settingsactivenode = $settingsactivenode->parent;
3143 $items[] = new navigation_node(array(
3144 'text'=>$this->page->navigation->text,
3145 'shorttext'=>$this->page->navigation->shorttext,
3146 'key'=>$this->page->navigation->key,
3147 'action'=>$this->page->navigation->action
3150 $this->items = array_reverse($items);
3151 return $this->items;
3155 * Add a new navigation_node to the navbar, overrides parent::add
3157 * This function overrides {@link navigation_node::add()} so that we can change
3158 * the way nodes get added to allow us to simply call add and have the node added to the
3161 * @param string $text
3162 * @param string|moodle_url|action_link $action An action to associate with this node.
3163 * @param int $type One of navigation_node::TYPE_*
3164 * @param string $shorttext
3165 * @param string|int $key A key to identify this node with. Key + type is unique to a parent.
3166 * @param pix_icon $icon An optional icon to use for this node.
3167 * @return navigation_node
3169 public function add($text, $action=null, $type=self::TYPE_CUSTOM, $shorttext=null, $key=null, pix_icon $icon=null) {
3170 if ($this->content !== null) {
3171 debugging('Nav bar items must be printed before $OUTPUT->header() has been called', DEBUG_DEVELOPER);
3174 // Properties array used when creating the new navigation node
3179 // Set the action if one was provided
3180 if ($action!==null) {
3181 $itemarray['action'] = $action;
3183 // Set the shorttext if one was provided
3184 if ($shorttext!==null) {
3185 $itemarray['shorttext'] = $shorttext;
3187 // Set the icon if one was provided
3189 $itemarray['icon'] = $icon;
3191 // Default the key to the number of children if not provided
3192 if ($key === null) {
3193 $key = count($this->children);
3196 $itemarray['key'] = $key;
3197 // Set the parent to this node
3198 $itemarray['parent'] = $this;
3199 // Add the child using the navigation_node_collections add method
3200 $this->children[] = new navigation_node($itemarray);
3206 * Class used to manage the settings option for the current page
3208 * This class is used to manage the settings options in a tree format (recursively)
3209 * and was created initially for use with the settings blocks.
3212 * @category navigation
3213 * @copyright 2009 Sam Hemelryk
3214 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
3216 class settings_navigation extends navigation_node {
3217 /** @var stdClass the current context */
3219 /** @var moodle_page the moodle page that the navigation belongs to */
3221 /** @var string contains administration section navigation_nodes */
3222 protected $adminsection;
3223 /** @var bool A switch to see if the navigation node is initialised */
3224 protected $initialised = false;
3225 /** @var array An array of users that the nodes can extend for. */
3226 protected $userstoextendfor = array();
3227 /** @var navigation_cache **/
3231 * Sets up the object with basic settings and preparse it for use
3233 * @param moodle_page $page
3235 public function __construct(moodle_page &$page) {
3236 if (during_initial_install()) {
3239 $this->page = $page;
3240 // Initialise the main navigation. It is most important that this is done
3241 // before we try anything
3242 $this->page->navigation->initialise();
3243 // Initialise the navigation cache
3244 $this->cache = new navigation_cache(NAVIGATION_CACHE_NAME);
3245 $this->children = new navigation_node_collection();
3248 * Initialise the settings navigation based on the current context
3250 * This function initialises the settings navigation tree for a given context
3251 * by calling supporting functions to generate major parts of the tree.
3254 public function initialise() {
3255 global $DB, $SESSION, $SITE;
3257 if (during_initial_install()) {
3259 } else if ($this->initialised) {