MDL-81266 composer: PHPUnit 9.6, Behat to 3.14 and other deps
[moodle.git] / contentbank / edit.php
blobb0d8df0b3d720f005f1cd2f3b571d73b57b95a1a
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 * Create or update contents through the specific content type editor
20 * @package core_contentbank
21 * @copyright 2020 Victor Deniz <victor@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 = required_param('contextid', PARAM_INT);
30 $pluginname = required_param('plugin', PARAM_PLUGIN);
31 $id = optional_param('id', null, PARAM_INT);
32 $library = optional_param('library', null, PARAM_RAW);
34 $context = context::instance_by_id($contextid, MUST_EXIST);
36 $cb = new \core_contentbank\contentbank();
37 if (!$cb->is_context_allowed($context)) {
38 throw new \moodle_exception('contextnotallowed', 'core_contentbank');
41 require_capability('moodle/contentbank:access', $context);
43 $returnurl = new \moodle_url('/contentbank/view.php', ['id' => $id]);
45 if (!empty($id)) {
46 $record = $DB->get_record('contentbank_content', ['id' => $id], '*', MUST_EXIST);
47 $contentclass = "$record->contenttype\\content";
48 $content = new $contentclass($record);
49 // Set the heading title.
50 $heading = $content->get_name();
51 // The content type of the content overwrites the pluginname param value.
52 $contenttypename = $content->get_content_type();
53 $breadcrumbtitle = get_string('edit');
54 } else {
55 $contenttypename = "contenttype_$pluginname";
56 $heading = get_string('addinganew', 'moodle', get_string('description', $contenttypename));
57 $content = null;
58 $breadcrumbtitle = get_string('add');
61 // Check plugin is enabled.
62 $plugin = core_plugin_manager::instance()->get_plugin_info($contenttypename);
63 if (!$plugin || !$plugin->is_enabled()) {
64 throw new \moodle_exception('unsupported', 'core_contentbank', $returnurl);
67 // Create content type instance.
68 $contenttypeclass = "$contenttypename\\contenttype";
69 if (class_exists($contenttypeclass)) {
70 $contenttype = new $contenttypeclass($context);
71 } else {
72 throw new \moodle_exception('unsupported', 'core_contentbank', $returnurl);
75 // Checks the user can edit this content and content type.
76 if (!$contenttype->can_edit($content)) {
77 throw new \moodle_exception('contenttypenoedit', 'core_contentbank', $returnurl);
80 $values = [
81 'contextid' => $contextid,
82 'plugin' => $pluginname,
83 'id' => $id,
84 'heading' => $heading,
85 'library' => $library
88 $title = get_string('contentbank');
89 \core_contentbank\helper::get_page_ready($context, $title, true);
90 if ($PAGE->course) {
91 require_login($PAGE->course->id);
94 if ($context->contextlevel == CONTEXT_COURSECAT) {
95 $PAGE->set_primary_active_tab('home');
98 $PAGE->set_url(new \moodle_url('/contentbank/edit.php', $values));
99 if ($context->id == \context_system::instance()->id) {
100 $PAGE->set_context(context_course::instance($context->id));
101 } else {
102 $PAGE->set_context($context);
104 if ($content) {
105 $PAGE->navbar->add($content->get_name(), new \moodle_url('/contentbank/view.php', ['id' => $id]));
107 $PAGE->navbar->add($breadcrumbtitle);
108 $PAGE->set_title($title);
109 $PAGE->set_pagelayout('incourse');
110 $PAGE->set_secondary_active_tab('contentbank');
112 // Instantiate the content type form.
113 $editorclass = "$contenttypename\\form\\editor";
114 if (!class_exists($editorclass)) {
115 throw new \moodle_exception('noformdesc');
118 $editorform = new $editorclass(null, $values);
120 if ($editorform->is_cancelled()) {
121 if (empty($id)) {
122 $returnurl = new \moodle_url('/contentbank/index.php', ['contextid' => $context->id]);
124 redirect($returnurl);
125 } else if ($data = $editorform->get_data()) {
126 if (empty($id)) {
127 $msg = get_string('contentcreated', 'contentbank');
128 } else {
129 $msg = get_string('contentupdated', 'contentbank');
131 $id = $editorform->save_content($data);
132 // Just in case we've created a new content.
133 $returnurl->param('id', $id);
134 redirect($returnurl, $msg, null, \core\output\notification::NOTIFY_SUCCESS);
137 echo $OUTPUT->header();
138 $editorform->display();
139 echo $OUTPUT->footer();