Merge branch 'MDL-75910-311' of https://github.com/andrewnicols/moodle into MOODLE_31...
[moodle.git] / completion / classes / defaultedit_form.php
blob71ce1e1b80cffe4572f137d74efc82d0cabb2955
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 * Default activity completion form
20 * @package core_completion
21 * @copyright 2017 Marina Glancy
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die;
27 /**
28 * Default activity completion form
30 * @package core_completion
31 * @copyright 2017 Marina Glancy
32 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34 class core_completion_defaultedit_form extends core_completion_edit_base_form {
35 /** @var array */
36 protected $modules;
37 /** @var array */
38 protected $_modnames;
40 /**
41 * Returns list of types of selected modules
43 * @return array modname=>modfullname
45 protected function get_module_names() {
46 if ($this->_modnames !== null) {
47 return $this->_modnames;
49 $this->_modnames = [];
50 foreach ($this->modules as $module) {
51 $this->_modnames[$module->name] = $module->formattedname;
53 return $this->_modnames;
56 /**
57 * Returns an instance of component-specific module form for the first selected module
59 * @return moodleform_mod|null
61 protected function get_module_form() {
62 global $CFG, $PAGE;
64 if ($this->_moduleform) {
65 return $this->_moduleform;
68 $modnames = array_keys($this->get_module_names());
69 $modname = $modnames[0];
70 $course = $this->course;
72 $modmoodleform = "$CFG->dirroot/mod/$modname/mod_form.php";
73 if (file_exists($modmoodleform)) {
74 require_once($modmoodleform);
75 } else {
76 print_error('noformdesc');
79 list($module, $context, $cw, $cmrec, $data) = prepare_new_moduleinfo_data($course, $modname, 0);
80 $data->return = 0;
81 $data->sr = 0;
82 $data->add = $modname;
84 // Initialise the form but discard all JS requirements it adds, our form has already added them.
85 $mformclassname = 'mod_'.$modname.'_mod_form';
86 $PAGE->start_collecting_javascript_requirements();
87 $this->_moduleform = new $mformclassname($data, 0, $cmrec, $course);
88 $PAGE->end_collecting_javascript_requirements();
90 return $this->_moduleform;
93 /**
94 * Form definition,
96 public function definition() {
97 $this->course = $this->_customdata['course'];
98 $this->modules = $this->_customdata['modules'];
100 $mform = $this->_form;
102 foreach ($this->modules as $modid => $module) {
103 $mform->addElement('hidden', 'modids['.$modid.']', $modid);
104 $mform->setType('modids['.$modid.']', PARAM_INT);
107 parent::definition();
109 $modform = $this->get_module_form();
110 if ($modform) {
111 $modnames = array_keys($this->get_module_names());
112 $modname = $modnames[0];
113 // Pre-fill the form with the current completion rules of the first selected module type.
114 list($module, $context, $cw, $cmrec, $data) = prepare_new_moduleinfo_data($this->course, $modname, 0);
115 $data = (array)$data;
116 $modform->data_preprocessing($data);
117 // Unset fields that will conflict with this form and set data to this form.
118 unset($data['cmid']);
119 unset($data['modids']);
120 unset($data['id']);
121 $this->set_data($data);