Merge branch 'MDL-79108-master' of https://github.com/sarjona/moodle
[moodle.git] / mod / wiki / files.php
blob675d59a3604d95b90eb9c51ba09e3aecf74f4c4f
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.
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/>.
17 /**
18 * Wiki files management
20 * @package mod_wiki
21 * @copyright 2011 Dongsheng Cai <dongsheng@moodle.com>
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once('../../config.php');
27 require_once($CFG->dirroot . '/mod/wiki/lib.php');
28 require_once($CFG->dirroot . '/mod/wiki/locallib.php');
30 $pageid = required_param('pageid', PARAM_INT); // Page ID
31 $wid = optional_param('wid', 0, PARAM_INT); // Wiki ID
32 $currentgroup = optional_param('group', 0, PARAM_INT); // Group ID
33 $userid = optional_param('uid', 0, PARAM_INT); // User ID
34 $groupanduser = optional_param('groupanduser', null, PARAM_TEXT);
36 if (!$page = wiki_get_page($pageid)) {
37 throw new \moodle_exception('incorrectpageid', 'wiki');
40 if ($groupanduser) {
41 list($currentgroup, $userid) = explode('-', $groupanduser);
42 $currentgroup = clean_param($currentgroup, PARAM_INT);
43 $userid = clean_param($userid, PARAM_INT);
46 if ($wid) {
47 // in group mode
48 if (!$wiki = wiki_get_wiki($wid)) {
49 throw new \moodle_exception('incorrectwikiid', 'wiki');
51 if (!$subwiki = wiki_get_subwiki_by_group($wiki->id, $currentgroup, $userid)) {
52 // create subwiki if doesn't exist
53 $subwikiid = wiki_add_subwiki($wiki->id, $currentgroup, $userid);
54 $subwiki = wiki_get_subwiki($subwikiid);
56 } else {
57 // no group
58 if (!$subwiki = wiki_get_subwiki($page->subwikiid)) {
59 throw new \moodle_exception('incorrectsubwikiid', 'wiki');
62 // Checking wiki instance of that subwiki
63 if (!$wiki = wiki_get_wiki($subwiki->wikiid)) {
64 throw new \moodle_exception('incorrectwikiid', 'wiki');
68 // Checking course module instance
69 if (!$cm = get_coursemodule_from_instance("wiki", $subwiki->wikiid)) {
70 throw new \moodle_exception('invalidcoursemodule');
73 // Checking course instance
74 $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
76 $context = context_module::instance($cm->id);
78 $url = new moodle_url('/mod/wiki/files.php', ['pageid' => $pageid]);
79 $PAGE->set_url($url);
80 require_course_login($course, true, $cm);
82 if (!wiki_user_can_view($subwiki, $wiki)) {
83 throw new \moodle_exception('cannotviewfiles', 'wiki');
86 $PAGE->set_title(get_string('wikifiles', 'wiki'));
87 $PAGE->set_heading($course->fullname);
88 $PAGE->add_body_class('limitedwidth');
89 $PAGE->navbar->add(format_string(get_string('wikifiles', 'wiki')));
90 $PAGE->set_secondary_active_tab('modulepage');
92 echo $OUTPUT->header();
94 $renderer = $PAGE->get_renderer('mod_wiki');
96 $actionbar = new \mod_wiki\output\action_bar($pageid, $PAGE->url);
97 echo $renderer->render_action_bar($actionbar);
99 echo $OUTPUT->box_start('generalbox');
100 echo $renderer->wiki_print_subwiki_selector($PAGE->activityrecord, $subwiki, $page, 'files');
101 echo $renderer->wiki_files_tree($context, $subwiki);
102 echo $OUTPUT->box_end();
104 if (has_capability('mod/wiki:managefiles', $context)) {
105 echo $OUTPUT->single_button(new moodle_url('/mod/wiki/filesedit.php', array('subwiki'=>$subwiki->id, 'pageid'=>$pageid)), get_string('editfiles', 'wiki'), 'get');
107 echo $OUTPUT->footer();