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