Merge branch 'MDL-73354-master' of git://github.com/abgreeve/moodle
[moodle.git] / contentbank / index.php
blob1c44bf5e47ad3ea128565c0c0b1dcf336291665b
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 * List content in content bank.
20 * @package core_contentbank
21 * @copyright 2020 Amaia Anabitarte <amaia@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require('../config.php');
27 require_login();
29 $contextid = optional_param('contextid', \context_system::instance()->id, PARAM_INT);
30 $search = optional_param('search', '', PARAM_CLEAN);
31 $context = context::instance_by_id($contextid, MUST_EXIST);
33 $cb = new \core_contentbank\contentbank();
34 if (!$cb->is_context_allowed($context)) {
35 print_error('contextnotallowed', 'core_contentbank');
38 require_capability('moodle/contentbank:access', $context);
40 $statusmsg = optional_param('statusmsg', '', PARAM_ALPHANUMEXT);
41 $errormsg = optional_param('errormsg', '', PARAM_ALPHANUMEXT);
43 $title = get_string('contentbank');
44 \core_contentbank\helper::get_page_ready($context, $title);
45 if ($PAGE->course) {
46 require_login($PAGE->course->id);
48 $PAGE->set_url('/contentbank/index.php');
49 if ($contextid == \context_system::instance()->id) {
50 $PAGE->set_context(context_course::instance($contextid));
51 } else {
52 $PAGE->set_context($context);
54 $PAGE->set_title($title);
55 $PAGE->set_heading($title);
56 $PAGE->add_body_class('limitedwidth');
57 $PAGE->set_pagetype('contentbank');
58 $PAGE->set_secondary_active_tab('contentbank');
60 // Get all contents managed by active plugins where the user has permission to render them.
61 $contenttypes = [];
62 $enabledcontenttypes = $cb->get_enabled_content_types();
63 foreach ($enabledcontenttypes as $contenttypename) {
64 $contenttypeclass = "\\contenttype_$contenttypename\\contenttype";
65 $contenttype = new $contenttypeclass($context);
66 if ($contenttype->can_access()) {
67 $contenttypes[] = $contenttypename;
71 $foldercontents = $cb->search_contents($search, $contextid, $contenttypes);
73 // Get the toolbar ready.
74 $toolbar = array ();
76 // Place the Add button in the toolbar.
77 if (has_capability('moodle/contentbank:useeditor', $context)) {
78 // Get the content types for which the user can use an editor.
79 $editabletypes = $cb->get_contenttypes_with_capability_feature(\core_contentbank\contenttype::CAN_EDIT, $context);
80 if (!empty($editabletypes)) {
81 // Editor base URL.
82 $editbaseurl = new moodle_url('/contentbank/edit.php', ['contextid' => $contextid]);
83 $toolbar[] = [
84 'name' => get_string('add'),
85 'link' => $editbaseurl, 'dropdown' => true,
86 'contenttypes' => $editabletypes,
87 'action' => 'add'
92 // Place the Upload button in the toolbar.
93 if (has_capability('moodle/contentbank:upload', $context)) {
94 // Don' show upload button if there's no plugin to support any file extension.
95 $accepted = $cb->get_supported_extensions_as_string($context);
96 if (!empty($accepted)) {
97 $importurl = new moodle_url('/contentbank/index.php', ['contextid' => $contextid]);
98 $toolbar[] = [
99 'name' => get_string('upload', 'contentbank'),
100 'link' => $importurl->out(false),
101 'icon' => 'i/upload',
102 'action' => 'upload'
104 $PAGE->requires->js_call_amd(
105 'core_contentbank/upload',
106 'initModal',
107 ['[data-action=upload]', \core_contentbank\form\upload_files::class, $contextid]
112 echo $OUTPUT->header();
113 echo $OUTPUT->box_start('generalbox');
115 // If needed, display notifications.
116 if ($errormsg !== '' && get_string_manager()->string_exists($errormsg, 'core_contentbank')) {
117 $errormsg = get_string($errormsg, 'core_contentbank');
118 echo $OUTPUT->notification($errormsg);
119 } else if ($statusmsg !== '' && get_string_manager()->string_exists($statusmsg, 'core_contentbank')) {
120 $statusmsg = get_string($statusmsg, 'core_contentbank');
121 echo $OUTPUT->notification($statusmsg, 'notifysuccess');
124 // Render the contentbank contents.
125 $folder = new \core_contentbank\output\bankcontent($foldercontents, $toolbar, $context, $cb);
126 echo $OUTPUT->render($folder);
128 echo $OUTPUT->box_end();
129 echo $OUTPUT->footer();