3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * My Moodle -- a user's personal dashboard
21 * - each user can currently have their own page (cloned from system and then customised)
22 * - only the user can see their own dashboard
23 * - users can add any blocks they want
24 * - the administrators can define a default site dashboard for users who have
25 * not created their own dashboard
27 * This script implements the user's view of the dashboard, and allows editing
32 * @copyright 2010 Remote-Learner.net
33 * @author Hubert Chathi <hubert@remote-learner.net>
34 * @author Olav Jordan <olav.jordan@remote-learner.net>
35 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 require_once(dirname(__FILE__
) . '/../config.php');
39 require_once($CFG->dirroot
. '/my/lib.php');
40 require_once($CFG->libdir
.'/adminlib.php');
42 $edit = optional_param('edit', null, PARAM_BOOL
); // Turn editing on and off
46 $context = context_system
::instance();
47 require_capability('moodle/my:configsyspages', $context);
48 $PAGE->set_blocks_editing_capability('moodle/my:configsyspages');
49 $header = "$SITE->shortname: ".get_string('myhome')." (".get_string('mypage', 'admin').")";
51 // Start setting up the page
53 $PAGE->set_url('/my/indexsys.php', $params);
54 $PAGE->set_pagelayout('mydashboard');
55 $PAGE->set_pagetype('my-index');
56 $PAGE->set_context($context);
57 $PAGE->set_title($header);
58 $PAGE->set_heading($header);
59 $PAGE->blocks
->add_region('content');
61 // TODO: Make the page be selected properly in the Settings block
63 // Get the My Moodle page info. Should always return something unless the database is broken.
64 if (!$currentpage = my_get_page(null, MY_PAGE_PRIVATE
)) {
65 print_error('mymoodlesetup');
67 $PAGE->set_subpage($currentpage->id
);
70 // Toggle the editing state and switches
71 if ($PAGE->user_allowed_editing()) {
72 if ($edit !== null) { // Editing state was specified
73 $USER->editing
= $edit; // Change editing state
74 } else { // Editing state is in session
75 if (!empty($USER->editing
)) {
82 // Add button for editing page
83 $params['edit'] = !$edit;
86 $editstring = get_string('updatemymoodleon');
88 $editstring = get_string('updatemymoodleoff');
91 $url = new moodle_url("$CFG->wwwroot/my/indexsys.php", $params);
92 $button = $OUTPUT->single_button($url, $editstring);
93 $PAGE->set_button($button);
96 $USER->editing
= $edit = 0;
99 echo $OUTPUT->header();
101 echo $OUTPUT->blocks_for_region('content');
103 echo $OUTPUT->footer();