mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
54ce66bd76
These improvements were suggested by Eloy when MDL-67797 was integrated.
90 lines
3.1 KiB
PHP
90 lines
3.1 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* List content in content bank.
|
|
*
|
|
* @package core_contentbank
|
|
* @copyright 2020 Amaia Anabitarte <amaia@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
require('../config.php');
|
|
|
|
require_login();
|
|
|
|
$contextid = optional_param('contextid', \context_system::instance()->id, PARAM_INT);
|
|
$search = optional_param('search', '', PARAM_CLEAN);
|
|
$context = context::instance_by_id($contextid, MUST_EXIST);
|
|
|
|
require_capability('moodle/contentbank:access', $context);
|
|
|
|
$statusmsg = optional_param('statusmsg', '', PARAM_RAW);
|
|
$errormsg = optional_param('errormsg', '', PARAM_RAW);
|
|
|
|
$title = get_string('contentbank');
|
|
\core_contentbank\helper::get_page_ready($context, $title);
|
|
if ($PAGE->course) {
|
|
require_login($PAGE->course->id);
|
|
}
|
|
$PAGE->set_url('/contentbank/index.php');
|
|
$PAGE->set_context($context);
|
|
$PAGE->set_title($title);
|
|
$PAGE->set_heading($title);
|
|
$PAGE->set_pagetype('contenbank');
|
|
|
|
// Get all contents managed by active plugins where the user has permission to render them.
|
|
$cb = new \core_contentbank\contentbank();
|
|
$contenttypes = [];
|
|
$enabledcontenttypes = $cb->get_enabled_content_types();
|
|
foreach ($enabledcontenttypes as $contenttypename) {
|
|
$contenttypeclass = "\\contenttype_$contenttypename\\contenttype";
|
|
$contenttype = new $contenttypeclass($context);
|
|
if ($contenttype->can_access()) {
|
|
$contenttypes[] = $contenttypename;
|
|
}
|
|
}
|
|
|
|
$foldercontents = $cb->search_contents($search, $contextid, $contenttypes);
|
|
|
|
// Get the toolbar ready.
|
|
$toolbar = array ();
|
|
if (has_capability('moodle/contentbank:upload', $context)) {
|
|
// Don' show upload button if there's no plugin to support any file extension.
|
|
$accepted = $cb->get_supported_extensions_as_string($context);
|
|
if (!empty($accepted)) {
|
|
$importurl = new moodle_url('/contentbank/upload.php', ['contextid' => $contextid]);
|
|
$toolbar[] = array('name' => 'Upload', 'link' => $importurl, 'icon' => 'i/upload');
|
|
}
|
|
}
|
|
|
|
echo $OUTPUT->header();
|
|
echo $OUTPUT->box_start('generalbox');
|
|
|
|
// If needed, display notifications.
|
|
if ($errormsg !== '') {
|
|
echo $OUTPUT->notification($errormsg);
|
|
} else if ($statusmsg !== '') {
|
|
echo $OUTPUT->notification($statusmsg, 'notifysuccess');
|
|
}
|
|
|
|
// Render the contentbank contents.
|
|
$folder = new \core_contentbank\output\bankcontent($foldercontents, $toolbar, $context);
|
|
echo $OUTPUT->render($folder);
|
|
|
|
echo $OUTPUT->box_end();
|
|
echo $OUTPUT->footer();
|