2020-04-01 16:23:33 +02:00
|
|
|
<?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/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic content bank visualizer.
|
|
|
|
*
|
|
|
|
* @package core_contentbank
|
|
|
|
* @copyright 2020 Amaia Anabitarte <amaia@moodle.com>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2020-09-23 13:49:57 -04:00
|
|
|
use core_contentbank\content;
|
|
|
|
|
2020-04-01 16:23:33 +02:00
|
|
|
require('../config.php');
|
|
|
|
|
|
|
|
require_login();
|
|
|
|
|
|
|
|
$id = required_param('id', PARAM_INT);
|
2020-04-16 15:04:37 +02:00
|
|
|
$deletecontent = optional_param('deletecontent', null, PARAM_INT);
|
|
|
|
|
|
|
|
$PAGE->requires->js_call_amd('core_contentbank/actions', 'init');
|
|
|
|
|
2020-04-01 16:23:33 +02:00
|
|
|
$record = $DB->get_record('contentbank_content', ['id' => $id], '*', MUST_EXIST);
|
|
|
|
$context = context::instance_by_id($record->contextid, MUST_EXIST);
|
|
|
|
require_capability('moodle/contentbank:access', $context);
|
|
|
|
|
2023-07-05 12:10:33 +02:00
|
|
|
// If notifications had been sent we don't pay attention to message parameter.
|
|
|
|
if (empty($SESSION->notifications)) {
|
|
|
|
$statusmsg = optional_param('statusmsg', '', PARAM_ALPHANUMEXT);
|
|
|
|
$errormsg = optional_param('errormsg', '', PARAM_ALPHANUMEXT);
|
|
|
|
}
|
2020-04-17 13:40:55 +02:00
|
|
|
|
|
|
|
$returnurl = new \moodle_url('/contentbank/index.php', ['contextid' => $context->id]);
|
2020-04-01 16:23:33 +02:00
|
|
|
$plugin = core_plugin_manager::instance()->get_plugin_info($record->contenttype);
|
|
|
|
if (!$plugin || !$plugin->is_enabled()) {
|
2022-04-12 09:38:41 +05:30
|
|
|
throw new \moodle_exception('unsupported', 'core_contentbank', $returnurl);
|
2020-04-01 16:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$title = get_string('contentbank');
|
|
|
|
\core_contentbank\helper::get_page_ready($context, $title, true);
|
|
|
|
if ($PAGE->course) {
|
|
|
|
require_login($PAGE->course->id);
|
|
|
|
}
|
|
|
|
|
2020-09-23 13:49:57 -04:00
|
|
|
$cb = new \core_contentbank\contentbank();
|
|
|
|
$content = $cb->get_content_from_id($record->id);
|
|
|
|
$contenttype = $content->get_content_type_instance();
|
|
|
|
|
|
|
|
if (!$content->is_view_allowed()) {
|
2021-02-25 17:21:32 +01:00
|
|
|
$cburl = new \moodle_url('/contentbank/index.php', ['contextid' => $context->id, 'errormsg' => 'notavailable']);
|
|
|
|
redirect($cburl);
|
2020-09-23 13:49:57 -04:00
|
|
|
}
|
|
|
|
|
2022-02-22 17:02:32 +08:00
|
|
|
if ($context->contextlevel == CONTEXT_COURSECAT) {
|
|
|
|
$PAGE->set_primary_active_tab('home');
|
|
|
|
}
|
|
|
|
|
2020-04-01 16:23:33 +02:00
|
|
|
$PAGE->set_url(new \moodle_url('/contentbank/view.php', ['id' => $id]));
|
2022-04-05 17:42:23 +08:00
|
|
|
if ($context->id == \context_system::instance()->id) {
|
|
|
|
$PAGE->set_context(context_course::instance($context->id));
|
|
|
|
} else {
|
|
|
|
$PAGE->set_context($context);
|
|
|
|
}
|
2020-04-01 16:23:33 +02:00
|
|
|
$PAGE->navbar->add($record->name);
|
|
|
|
$title .= ": ".$record->name;
|
|
|
|
$PAGE->set_title($title);
|
2020-06-15 13:35:43 +02:00
|
|
|
$PAGE->set_pagetype('contentbank');
|
2022-01-12 13:08:26 +01:00
|
|
|
$PAGE->set_pagelayout('incourse');
|
2022-02-22 17:02:32 +08:00
|
|
|
$PAGE->set_secondary_active_tab('contentbank');
|
2020-04-01 16:23:33 +02:00
|
|
|
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
|
2020-04-17 13:40:55 +02:00
|
|
|
// If needed, display notifications.
|
2023-07-05 12:10:33 +02:00
|
|
|
if (!empty($errormsg) && get_string_manager()->string_exists($errormsg, 'core_contentbank')) {
|
2020-06-16 16:23:39 +02:00
|
|
|
$errormsg = get_string($errormsg, 'core_contentbank');
|
2020-04-17 13:40:55 +02:00
|
|
|
echo $OUTPUT->notification($errormsg);
|
2023-07-05 12:10:33 +02:00
|
|
|
} else if (!empty($statusmsg) && get_string_manager()->string_exists($statusmsg, 'core_contentbank')) {
|
2020-09-23 13:49:57 -04:00
|
|
|
if ($statusmsg == 'contentvisibilitychanged') {
|
|
|
|
switch ($content->get_visibility()) {
|
|
|
|
case content::VISIBILITY_PUBLIC:
|
|
|
|
$visibilitymsg = get_string('public', 'core_contentbank');
|
|
|
|
break;
|
|
|
|
case content::VISIBILITY_UNLISTED:
|
|
|
|
$visibilitymsg = get_string('unlisted', 'core_contentbank');
|
|
|
|
break;
|
|
|
|
default:
|
2022-04-12 09:38:41 +05:30
|
|
|
throw new \moodle_exception('contentvisibilitynotfound', 'error', $returnurl, $content->get_visibility());
|
2020-09-23 13:49:57 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
$statusmsg = get_string($statusmsg, 'core_contentbank', $visibilitymsg);
|
|
|
|
} else {
|
|
|
|
$statusmsg = get_string($statusmsg, 'core_contentbank');
|
|
|
|
}
|
2020-04-17 13:40:55 +02:00
|
|
|
echo $OUTPUT->notification($statusmsg, 'notifysuccess');
|
|
|
|
}
|
2020-04-16 15:04:37 +02:00
|
|
|
if ($contenttype->can_access()) {
|
2020-04-28 22:09:34 +01:00
|
|
|
$viewcontent = new core_contentbank\output\viewcontent($contenttype, $content);
|
|
|
|
echo $OUTPUT->render($viewcontent);
|
|
|
|
} else {
|
|
|
|
$message = get_string('contenttypenoaccess', 'core_contentbank', $record->contenttype);
|
|
|
|
echo $OUTPUT->notification($message, 'error');
|
2020-04-01 16:23:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo $OUTPUT->footer();
|