Merge branch 'wip-mdl-48190-m27' of https://github.com/rajeshtaneja/moodle into MOODL...
[moodle.git] / course / modedit.php
bloba769cca2f4fbb1c8fe0fec6d4df3214b28c1c3be
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Adds or updates modules in a course using new formslib
21 * @package moodlecore
22 * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once("../config.php");
27 require_once("lib.php");
28 require_once($CFG->libdir.'/filelib.php');
29 require_once($CFG->libdir.'/gradelib.php');
30 require_once($CFG->libdir.'/completionlib.php');
31 require_once($CFG->libdir.'/conditionlib.php');
32 require_once($CFG->libdir.'/plagiarismlib.php');
33 require_once($CFG->dirroot . '/course/modlib.php');
35 $add = optional_param('add', '', PARAM_ALPHA); // module name
36 $update = optional_param('update', 0, PARAM_INT);
37 $return = optional_param('return', 0, PARAM_BOOL); //return to course/view.php if false or mod/modname/view.php if true
38 $type = optional_param('type', '', PARAM_ALPHANUM); //TODO: hopefully will be removed in 2.0
39 $sectionreturn = optional_param('sr', null, PARAM_INT);
41 $url = new moodle_url('/course/modedit.php');
42 $url->param('sr', $sectionreturn);
43 if (!empty($return)) {
44 $url->param('return', $return);
47 if (!empty($add)) {
48 $section = required_param('section', PARAM_INT);
49 $course = required_param('course', PARAM_INT);
51 $url->param('add', $add);
52 $url->param('section', $section);
53 $url->param('course', $course);
54 $PAGE->set_url($url);
56 $course = $DB->get_record('course', array('id'=>$course), '*', MUST_EXIST);
57 require_login($course);
59 // There is no page for this in the navigation. The closest we'll have is the course section.
60 // If the course section isn't displayed on the navigation this will fall back to the course which
61 // will be the closest match we have.
62 navigation_node::override_active_url(course_get_url($course, $section));
64 list($module, $context, $cw) = can_add_moduleinfo($course, $add, $section);
66 $cm = null;
68 $data = new stdClass();
69 $data->section = $section; // The section number itself - relative!!! (section column in course_sections)
70 $data->visible = $cw->visible;
71 $data->course = $course->id;
72 $data->module = $module->id;
73 $data->modulename = $module->name;
74 $data->groupmode = $course->groupmode;
75 $data->groupingid = $course->defaultgroupingid;
76 $data->groupmembersonly = 0;
77 $data->id = '';
78 $data->instance = '';
79 $data->coursemodule = '';
80 $data->add = $add;
81 $data->return = 0; //must be false if this is an add, go back to course view on cancel
82 $data->sr = $sectionreturn;
84 if (plugin_supports('mod', $data->modulename, FEATURE_MOD_INTRO, true)) {
85 $draftid_editor = file_get_submitted_draft_itemid('introeditor');
86 file_prepare_draft_area($draftid_editor, null, null, null, null, array('subdirs'=>true));
87 $data->introeditor = array('text'=>'', 'format'=>FORMAT_HTML, 'itemid'=>$draftid_editor); // TODO: add better default
90 if (plugin_supports('mod', $data->modulename, FEATURE_ADVANCED_GRADING, false)
91 and has_capability('moodle/grade:managegradingforms', $context)) {
92 require_once($CFG->dirroot.'/grade/grading/lib.php');
94 $data->_advancedgradingdata['methods'] = grading_manager::available_methods();
95 $areas = grading_manager::available_areas('mod_'.$module->name);
97 foreach ($areas as $areaname => $areatitle) {
98 $data->_advancedgradingdata['areas'][$areaname] = array(
99 'title' => $areatitle,
100 'method' => '',
102 $formfield = 'advancedgradingmethod_'.$areaname;
103 $data->{$formfield} = '';
107 if (!empty($type)) { //TODO: hopefully will be removed in 2.0
108 $data->type = $type;
111 $sectionname = get_section_name($course, $cw);
112 $fullmodulename = get_string('modulename', $module->name);
114 if ($data->section && $course->format != 'site') {
115 $heading = new stdClass();
116 $heading->what = $fullmodulename;
117 $heading->to = $sectionname;
118 $pageheading = get_string('addinganewto', 'moodle', $heading);
119 } else {
120 $pageheading = get_string('addinganew', 'moodle', $fullmodulename);
122 $navbaraddition = $pageheading;
124 } else if (!empty($update)) {
126 $url->param('update', $update);
127 $PAGE->set_url($url);
129 // Select the "Edit settings" from navigation.
130 navigation_node::override_active_url(new moodle_url('/course/modedit.php', array('update'=>$update, 'return'=>1)));
132 // Check the course module exists.
133 $cm = get_coursemodule_from_id('', $update, 0, false, MUST_EXIST);
135 // Check the course exists.
136 $course = $DB->get_record('course', array('id'=>$cm->course), '*', MUST_EXIST);
138 // require_login
139 require_login($course, false, $cm); // needed to setup proper $COURSE
141 list($cm, $context, $module, $data, $cw) = can_update_moduleinfo($cm);
143 $data->coursemodule = $cm->id;
144 $data->section = $cw->section; // The section number itself - relative!!! (section column in course_sections)
145 $data->visible = $cm->visible; //?? $cw->visible ? $cm->visible : 0; // section hiding overrides
146 $data->cmidnumber = $cm->idnumber; // The cm IDnumber
147 $data->groupmode = groups_get_activity_groupmode($cm); // locked later if forced
148 $data->groupingid = $cm->groupingid;
149 $data->groupmembersonly = $cm->groupmembersonly;
150 $data->course = $course->id;
151 $data->module = $module->id;
152 $data->modulename = $module->name;
153 $data->instance = $cm->instance;
154 $data->return = $return;
155 $data->sr = $sectionreturn;
156 $data->update = $update;
157 $data->completion = $cm->completion;
158 $data->completionview = $cm->completionview;
159 $data->completionexpected = $cm->completionexpected;
160 $data->completionusegrade = is_null($cm->completiongradeitemnumber) ? 0 : 1;
161 $data->showdescription = $cm->showdescription;
162 if (!empty($CFG->enableavailability)) {
163 $data->availabilityconditionsjson = $cm->availability;
166 if (plugin_supports('mod', $data->modulename, FEATURE_MOD_INTRO, true)) {
167 $draftid_editor = file_get_submitted_draft_itemid('introeditor');
168 $currentintro = file_prepare_draft_area($draftid_editor, $context->id, 'mod_'.$data->modulename, 'intro', 0, array('subdirs'=>true), $data->intro);
169 $data->introeditor = array('text'=>$currentintro, 'format'=>$data->introformat, 'itemid'=>$draftid_editor);
172 if (plugin_supports('mod', $data->modulename, FEATURE_ADVANCED_GRADING, false)
173 and has_capability('moodle/grade:managegradingforms', $context)) {
174 require_once($CFG->dirroot.'/grade/grading/lib.php');
175 $gradingman = get_grading_manager($context, 'mod_'.$data->modulename);
176 $data->_advancedgradingdata['methods'] = $gradingman->get_available_methods();
177 $areas = $gradingman->get_available_areas();
179 foreach ($areas as $areaname => $areatitle) {
180 $gradingman->set_area($areaname);
181 $method = $gradingman->get_active_method();
182 $data->_advancedgradingdata['areas'][$areaname] = array(
183 'title' => $areatitle,
184 'method' => $method,
186 $formfield = 'advancedgradingmethod_'.$areaname;
187 $data->{$formfield} = $method;
191 if ($items = grade_item::fetch_all(array('itemtype'=>'mod', 'itemmodule'=>$data->modulename,
192 'iteminstance'=>$data->instance, 'courseid'=>$course->id))) {
193 // add existing outcomes
194 foreach ($items as $item) {
195 if (!empty($item->outcomeid)) {
196 $data->{'outcome_'.$item->outcomeid} = 1;
200 // set category if present
201 $gradecat = false;
202 foreach ($items as $item) {
203 if ($gradecat === false) {
204 $gradecat = $item->categoryid;
205 continue;
207 if ($gradecat != $item->categoryid) {
208 //mixed categories
209 $gradecat = false;
210 break;
213 if ($gradecat !== false) {
214 // do not set if mixed categories present
215 $data->gradecat = $gradecat;
219 $sectionname = get_section_name($course, $cw);
220 $fullmodulename = get_string('modulename', $module->name);
222 if ($data->section && $course->format != 'site') {
223 $heading = new stdClass();
224 $heading->what = $fullmodulename;
225 $heading->in = $sectionname;
226 $pageheading = get_string('updatingain', 'moodle', $heading);
227 } else {
228 $pageheading = get_string('updatinga', 'moodle', $fullmodulename);
230 $navbaraddition = null;
232 } else {
233 require_login();
234 print_error('invalidaction');
237 $pagepath = 'mod-' . $module->name . '-';
238 if (!empty($type)) { //TODO: hopefully will be removed in 2.0
239 $pagepath .= $type;
240 } else {
241 $pagepath .= 'mod';
243 $PAGE->set_pagetype($pagepath);
244 $PAGE->set_pagelayout('admin');
246 $modmoodleform = "$CFG->dirroot/mod/$module->name/mod_form.php";
247 if (file_exists($modmoodleform)) {
248 require_once($modmoodleform);
249 } else {
250 print_error('noformdesc');
253 $mformclassname = 'mod_'.$module->name.'_mod_form';
254 $mform = new $mformclassname($data, $cw->section, $cm, $course);
255 $mform->set_data($data);
257 if ($mform->is_cancelled()) {
258 if ($return && !empty($cm->id)) {
259 redirect("$CFG->wwwroot/mod/$module->name/view.php?id=$cm->id");
260 } else {
261 redirect(course_get_url($course, $cw->section, array('sr' => $sectionreturn)));
263 } else if ($fromform = $mform->get_data()) {
265 if (!empty($fromform->update)) {
266 list($cm, $fromform) = update_moduleinfo($cm, $fromform, $course, $mform);
267 } else if (!empty($fromform->add)) {
268 $fromform = add_moduleinfo($fromform, $course, $mform);
269 } else {
270 print_error('invaliddata');
273 if (isset($fromform->submitbutton)) {
274 if (empty($fromform->showgradingmanagement)) {
275 redirect("$CFG->wwwroot/mod/$module->name/view.php?id=$fromform->coursemodule");
276 } else {
277 $returnurl = new moodle_url("/mod/$module->name/view.php", array('id' => $fromform->coursemodule));
278 redirect($fromform->gradingman->get_management_url($returnurl));
280 } else {
281 redirect(course_get_url($course, $cw->section, array('sr' => $sectionreturn)));
283 exit;
285 } else {
287 $streditinga = get_string('editinga', 'moodle', $fullmodulename);
288 $strmodulenameplural = get_string('modulenameplural', $module->name);
290 if (!empty($cm->id)) {
291 $context = context_module::instance($cm->id);
292 } else {
293 $context = context_course::instance($course->id);
296 $PAGE->set_heading($course->fullname);
297 $PAGE->set_title($streditinga);
298 $PAGE->set_cacheable(false);
300 if (isset($navbaraddition)) {
301 $PAGE->navbar->add($navbaraddition);
304 echo $OUTPUT->header();
306 if (get_string_manager()->string_exists('modulename_help', $module->name)) {
307 echo $OUTPUT->heading_with_help($pageheading, 'modulename', $module->name, 'icon');
308 } else {
309 echo $OUTPUT->heading_with_help($pageheading, '', $module->name, 'icon');
312 $mform->display();
314 echo $OUTPUT->footer();