Commit | Line | Data |
---|---|---|
0807601d AA |
1 | <?php |
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 | /** | |
18 | * Defines Manager class for my profile navigation tree. | |
19 | * | |
20 | * @package core_user | |
21 | * @copyright 2015 onwards Ankit Agarwal | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | ||
25 | namespace core_user\output\myprofile; | |
26 | defined('MOODLE_INTERNAL') || die(); | |
27 | ||
28 | /** | |
29 | * Defines MAnager class for myprofile navigation tree. | |
30 | * | |
31 | * @since Moodle 2.9 | |
32 | * @package core_user | |
33 | * @copyright 2015 onwards Ankit Agarwal | |
34 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
35 | */ | |
36 | class manager { | |
37 | /** | |
38 | * Parse all callbacks and builds the tree. | |
39 | * | |
40 | * @param integer $user ID of the user for which the profile is displayed. | |
41 | * @param bool $iscurrentuser true if the profile being viewed is of current user, else false. | |
42 | * @param \stdClass $course Course object | |
43 | * | |
44 | * @return tree Fully build tree to be rendered on my profile page. | |
45 | */ | |
46 | public static function build_tree($user, $iscurrentuser, $course = null) { | |
0525a7a8 | 47 | global $CFG; |
0807601d AA |
48 | $tree = new tree(); |
49 | ||
50 | // Add core nodes. | |
0525a7a8 SL |
51 | |
52 | require_once($CFG->libdir . "/myprofilelib.php"); | |
e35bac3e | 53 | core_myprofile_navigation($tree, $user, $iscurrentuser, $course); |
0807601d AA |
54 | |
55 | // Core components. | |
56 | $components = \core_component::get_core_subsystems(); | |
57 | foreach ($components as $component => $directory) { | |
58 | if (empty($directory)) { | |
59 | continue; | |
60 | } | |
61 | $file = $directory . "/lib.php"; | |
62 | if (is_readable($file)) { | |
63 | require_once($file); | |
64 | $function = "core_" . $component . "_myprofile_navigation"; | |
65 | if (function_exists($function)) { | |
66 | $function($tree, $user, $iscurrentuser, $course); | |
67 | } | |
68 | } | |
69 | } | |
70 | ||
71 | // Plugins. | |
72 | $types = \core_component::get_plugin_types(); | |
73 | foreach ($types as $type => $dir) { | |
74 | $pluginlist = get_plugin_list_with_function($type, "myprofile_navigation", "lib.php"); | |
75 | foreach ($pluginlist as $function) { | |
76 | $function($tree, $user, $iscurrentuser, $course); | |
77 | } | |
78 | } | |
79 | $tree->sort_categories(); | |
80 | return $tree; | |
81 | } | |
82 | } |