1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
// This file is part of Moodle - http://moodle.org/
|
|
|
4 |
//
|
|
|
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.
|
|
|
9 |
//
|
|
|
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.
|
|
|
14 |
//
|
|
|
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/>.
|
|
|
17 |
|
|
|
18 |
/**
|
|
|
19 |
* My Moodle -- a user's personal dashboard
|
|
|
20 |
*
|
|
|
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
|
|
|
26 |
*
|
|
|
27 |
* This script implements the user's view of the dashboard, and allows editing
|
|
|
28 |
* of the dashboard.
|
|
|
29 |
*
|
|
|
30 |
* @package moodlecore
|
|
|
31 |
* @subpackage my
|
|
|
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
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
define('NO_OUTPUT_BUFFERING', true);
|
|
|
39 |
require_once(__DIR__ . '/../config.php');
|
|
|
40 |
require_once($CFG->dirroot . '/my/lib.php');
|
|
|
41 |
require_once($CFG->libdir.'/adminlib.php');
|
|
|
42 |
|
|
|
43 |
redirect_if_major_upgrade_required();
|
|
|
44 |
|
|
|
45 |
$resetall = optional_param('resetall', false, PARAM_BOOL);
|
|
|
46 |
|
|
|
47 |
$pagetitle = get_string('mypage', 'admin');
|
|
|
48 |
|
|
|
49 |
$PAGE->set_secondary_active_tab('appearance');
|
|
|
50 |
$PAGE->set_blocks_editing_capability('moodle/my:configsyspages');
|
|
|
51 |
$PAGE->set_url(new moodle_url('/my/indexsys.php'));
|
|
|
52 |
admin_externalpage_setup('mypage', '', null, '', ['pagelayout' => 'mydashboard', 'nosearch' => true]);
|
|
|
53 |
$PAGE->add_body_class('limitedwidth');
|
|
|
54 |
$PAGE->set_pagetype('my-index');
|
|
|
55 |
$PAGE->blocks->add_region('content');
|
|
|
56 |
$PAGE->set_title($pagetitle);
|
|
|
57 |
$PAGE->set_heading($pagetitle);
|
|
|
58 |
$PAGE->set_secondary_navigation(false);
|
|
|
59 |
$PAGE->set_primary_active_tab('myhome');
|
|
|
60 |
|
|
|
61 |
// If we are resetting all, just output a progress bar.
|
|
|
62 |
if ($resetall && confirm_sesskey()) {
|
|
|
63 |
echo $OUTPUT->header($pagetitle);
|
|
|
64 |
echo $OUTPUT->heading(get_string('resettingdashboards', 'my'), 3);
|
|
|
65 |
|
|
|
66 |
$progressbar = new progress_bar();
|
|
|
67 |
$progressbar->create();
|
|
|
68 |
|
|
|
69 |
\core\session\manager::write_close();
|
|
|
70 |
my_reset_page_for_all_users(MY_PAGE_PRIVATE, 'my-index', $progressbar);
|
|
|
71 |
core\notification::success(get_string('alldashboardswerereset', 'my'));
|
|
|
72 |
echo $OUTPUT->continue_button($PAGE->url);
|
|
|
73 |
echo $OUTPUT->footer();
|
|
|
74 |
die();
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
// Get the My Moodle page info. Should always return something unless the database is broken.
|
|
|
78 |
if (!$currentpage = my_get_page(null, MY_PAGE_PRIVATE)) {
|
|
|
79 |
throw new \moodle_exception('mymoodlesetup');
|
|
|
80 |
}
|
|
|
81 |
$PAGE->set_subpage($currentpage->id);
|
|
|
82 |
|
|
|
83 |
// Display a button to reset everyone's dashboard.
|
|
|
84 |
$url = $PAGE->url;
|
|
|
85 |
$url->params(['resetall' => true, 'sesskey' => sesskey()]);
|
|
|
86 |
$button = $OUTPUT->single_button($url, get_string('reseteveryonesdashboard', 'my'));
|
|
|
87 |
$PAGE->set_button($button . $PAGE->button);
|
|
|
88 |
|
|
|
89 |
echo $OUTPUT->header();
|
|
|
90 |
|
|
|
91 |
echo $OUTPUT->addblockbutton('content');
|
|
|
92 |
|
|
|
93 |
echo $OUTPUT->custom_block_region('content');
|
|
|
94 |
|
|
|
95 |
echo $OUTPUT->footer();
|