Merge branch 'w24_MDL-33670_m21_ofadmin' of git://github.com/skodak/moodle into MOODL...
[moodle.git] / user / files.php
blob4bc2ba618ff44ff9d6a2c98073a490c9b44bbca7
1 <?php
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.
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/>.
18 /**
19 * View private user files
21 * @package moodlecore
22 * @copyright 2010 Petr Skoda (http://skodak.org)
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require('../config.php');
28 require_login();
29 if (isguestuser()) {
30 die();
33 $context = get_context_instance(CONTEXT_USER, $USER->id);
34 require_capability('moodle/user:manageownfiles', $context);
35 $title = get_string('myfiles');
36 $struser = get_string('user');
38 $PAGE->set_url('/user/files.php');
39 $PAGE->set_context($context);
40 $PAGE->set_title($title);
41 $PAGE->set_heading($title);
42 $PAGE->set_pagelayout('mydashboard');
43 $PAGE->set_pagetype('user-files');
45 echo $OUTPUT->header();
46 echo $OUTPUT->box_start('generalbox');
48 $renderer = $PAGE->get_renderer('core', 'user');
49 echo $renderer->user_files_tree();
51 echo $OUTPUT->single_button(new moodle_url('/user/filesedit.php'), get_string('myfilesmanage'), 'get');
53 echo $OUTPUT->box_end();
54 echo $OUTPUT->footer();