Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?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);

$cb = new \core_contentbank\contentbank();
if (!$cb->is_context_allowed($context)) {
< print_error('contextnotallowed', 'core_contentbank');
> throw new \moodle_exception('contextnotallowed', 'core_contentbank');
} require_capability('moodle/contentbank:access', $context);
> // If notifications had been sent we don't pay attention to message parameter. $statusmsg = optional_param('statusmsg', '', PARAM_ALPHANUMEXT); > if (empty($SESSION->notifications)) {
$errormsg = optional_param('errormsg', '', PARAM_ALPHANUMEXT);
> }
$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', ['contextid' => $contextid]);
> if ($contextid == \context_system::instance()->id) { $PAGE->set_context($context); > $PAGE->set_context(context_course::instance($contextid)); $PAGE->set_title($title); > } else {
$PAGE->set_heading($title);
> } $PAGE->set_pagetype('contentbank'); > > if ($context->contextlevel == CONTEXT_COURSECAT) { // Get all contents managed by active plugins where the user has permission to render them. > $PAGE->set_primary_active_tab('home'); $contenttypes = []; > } $enabledcontenttypes = $cb->get_enabled_content_types(); >
< $PAGE->set_heading($title);
> $PAGE->add_body_class('limitedwidth');
$contenttypeclass = "\\contenttype_$contenttypename\\contenttype";
> $PAGE->set_secondary_active_tab('contentbank');
$contenttype = new $contenttypeclass($context); if ($contenttype->can_access()) { $contenttypes[] = $contenttypename; } } $foldercontents = $cb->search_contents($search, $contextid, $contenttypes); // Get the toolbar ready. $toolbar = array (); // Place the Add button in the toolbar. if (has_capability('moodle/contentbank:useeditor', $context)) { // Get the content types for which the user can use an editor. $editabletypes = $cb->get_contenttypes_with_capability_feature(\core_contentbank\contenttype::CAN_EDIT, $context); if (!empty($editabletypes)) { // Editor base URL. $editbaseurl = new moodle_url('/contentbank/edit.php', ['contextid' => $contextid]); $toolbar[] = [ 'name' => get_string('add'), 'link' => $editbaseurl, 'dropdown' => true, 'contenttypes' => $editabletypes, 'action' => 'add' ]; } } // Place the Upload button in the toolbar. 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/index.php', ['contextid' => $contextid]); $toolbar[] = [ 'name' => get_string('upload', 'contentbank'), 'link' => $importurl->out(false), 'icon' => 'i/upload', 'action' => 'upload' ]; $PAGE->requires->js_call_amd( 'core_contentbank/upload', 'initModal', ['[data-action=upload]', \core_contentbank\form\upload_files::class, $contextid] ); } } echo $OUTPUT->header();
> echo $OUTPUT->heading($title, 2);
echo $OUTPUT->box_start('generalbox'); // If needed, display notifications.
< if ($errormsg !== '' && get_string_manager()->string_exists($errormsg, 'core_contentbank')) {
> if (!empty($errormsg) && get_string_manager()->string_exists($errormsg, 'core_contentbank')) {
$errormsg = get_string($errormsg, 'core_contentbank'); echo $OUTPUT->notification($errormsg);
< } else if ($statusmsg !== '' && get_string_manager()->string_exists($statusmsg, 'core_contentbank')) {
> } else if (!empty($statusmsg) && get_string_manager()->string_exists($statusmsg, 'core_contentbank')) {
$statusmsg = get_string($statusmsg, 'core_contentbank'); echo $OUTPUT->notification($statusmsg, 'notifysuccess'); } // Render the contentbank contents.
< $folder = new \core_contentbank\output\bankcontent($foldercontents, $toolbar, $context);
> $folder = new \core_contentbank\output\bankcontent($foldercontents, $toolbar, $context, $cb);
echo $OUTPUT->render($folder); echo $OUTPUT->box_end(); echo $OUTPUT->footer();