2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Defines Manager class for my profile navigation tree.
21 * @copyright 2015 onwards Ankit Agarwal
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 namespace core_user\output\myprofile;
26 defined('MOODLE_INTERNAL') || die();
29 * Defines MAnager class for myprofile navigation tree.
33 * @copyright 2015 onwards Ankit Agarwal
34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 * Parse all callbacks and builds the tree.
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
44 * @return tree Fully build tree to be rendered on my profile page.
46 public static function build_tree($user, $iscurrentuser, $course = null) {
51 $file = $CFG->libdir . "/myprofilelib.php";
52 if (is_readable($file)) {
54 $function = "core_myprofile_navigation";
55 if (function_exists($function)) {
56 $function($tree, $user, $iscurrentuser, $course);
61 $components = \core_component::get_core_subsystems();
62 foreach ($components as $component => $directory) {
63 if (empty($directory)) {
66 $file = $directory . "/lib.php";
67 if (is_readable($file)) {
69 $function = "core_" . $component . "_myprofile_navigation";
70 if (function_exists($function)) {
71 $function($tree, $user, $iscurrentuser, $course);
77 $types = \core_component::get_plugin_types();
78 foreach ($types as $type => $dir) {
79 $pluginlist = get_plugin_list_with_function($type, "myprofile_navigation", "lib.php");
80 foreach ($pluginlist as $function) {
81 $function($tree, $user, $iscurrentuser, $course);
84 $tree->sort_categories();