2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
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');
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]);
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');
55 $contenttypename = "contenttype_$pluginname";
56 $heading = get_string('addinganew', 'moodle', get_string('description', $contenttypename));
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);
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);
81 'contextid' => $contextid,
82 'plugin' => $pluginname,
84 'heading' => $heading,
88 $title = get_string('contentbank');
89 \core_contentbank\helper
::get_page_ready($context, $title, true);
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
));
102 $PAGE->set_context($context);
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()) {
122 $returnurl = new \
moodle_url('/contentbank/index.php', ['contextid' => $context->id
]);
124 redirect($returnurl);
125 } else if ($data = $editorform->get_data()) {
126 $id = $editorform->save_content($data);
127 // Just in case we've created a new content.
128 $returnurl->param('id', $id);
129 redirect($returnurl);
132 echo $OUTPUT->header();
133 $editorform->display();
134 echo $OUTPUT->footer();