3 // This file is part of Moodle - http://moodle.org/
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.
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/>.
19 * This file contains the generic moodleform bridge for the backup user interface
20 * as well as the individual forms that relate to the different stages the user
21 * interface can exist within.
24 * @copyright 2010 Sam Hemelryk
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') || die();
30 require_once($CFG->libdir . '/formslib.php');
33 * Backup moodleform bridge
35 * Ahhh the mighty moodleform bridge! Strong enough to take the weight of 682 full
36 * grown african swallows all of whom have been carring coconuts for several days.
37 * EWWWWW!!!!!!!!!!!!!!!!!!!!!!!!
39 * @copyright 2010 Sam Hemelryk
40 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
42 abstract class base_moodleform extends moodleform {
44 * The stage this form belongs to
47 protected $uistage = null;
49 * True if we have a course div open, false otherwise
52 protected $coursediv = false;
54 * True if we have a section div open, false otherwise
57 protected $sectiondiv = false;
59 * True if we have an activity div open, false otherwise
62 protected $activitydiv = false;
66 * @param backup_ui_stage $uistage
67 * @param moodle_url|string $action
68 * @param mixed $customdata
69 * @param string $method get|post
70 * @param string $target
71 * @param array $attributes
72 * @param bool $editable
74 function __construct(base_ui_stage $uistage, $action=null, $customdata=null, $method='post', $target='', $attributes=null, $editable=true) {
75 $this->uistage = $uistage;
76 // Add a class to the attributes to prevent the default collapsible behaviour.
78 $attributes = array();
80 $attributes['class'] = 'unresponsive';
81 if (!isset($attributes['enctype'])) {
82 $attributes['enctype'] = 'application/x-www-form-urlencoded'; // Enforce compatibility with our max_input_vars hack.
84 parent::__construct($action, $customdata, $method, $target, $attributes, $editable);
87 * The standard form definition... obviously not much here
89 function definition() {
90 $ui = $this->uistage->get_ui();
91 $mform = $this->_form;
92 $mform->setDisableShortforms();
93 $stage = $mform->addElement('hidden', 'stage', $this->uistage->get_stage());
94 $mform->setType('stage', PARAM_INT);
95 $stage = $mform->addElement('hidden', $ui->get_name(), $ui->get_uniqueid());
96 $mform->setType($ui->get_name(), PARAM_ALPHANUM);
97 $params = $this->uistage->get_params();
98 if (is_array($params) && count($params) > 0) {
99 foreach ($params as $name=>$value) {
100 // TODO: Horrible hack, but current backup ui structure does not allow
101 // to make this easy (only changing params to objects that would be
102 // possible. MDL-38735.
104 'contextid', 'importid', 'target');
105 $stage = $mform->addElement('hidden', $name, $value);
106 if (in_array($name, $intparams)) {
107 $mform->setType($name, PARAM_INT);
109 // Adding setType() to avoid missing setType() warnings.
110 // MDL-39126: support $mform->setType() for additional backup parameters.
111 $mform->setType($name, PARAM_RAW);
117 * Definition applied after the data is organised.. why's it here? because I want
118 * to add elements on the fly.
119 * @global moodle_page $PAGE
121 function definition_after_data() {
122 $buttonarray=array();
123 $buttonarray[] = $this->_form->createElement('submit', 'submitbutton', get_string($this->uistage->get_ui()->get_name().'stage'.$this->uistage->get_stage().'action', 'backup'), array('class'=>'proceedbutton'));
124 if (!$this->uistage->is_first_stage()) {
125 $buttonarray[] = $this->_form->createElement('submit', 'previous', get_string('previousstage','backup'));
127 $buttonarray[] = $this->_form->createElement('cancel', 'cancel', get_string('cancel'), array('class'=>'confirmcancel'));
128 $this->_form->addGroup($buttonarray, 'buttonar', '', array(' '), false);
129 $this->_form->closeHeaderBefore('buttonar');
131 $this->_definition_finalized = true;
135 * Closes any open divs
137 function close_task_divs() {
138 if ($this->activitydiv) {
139 $this->_form->addElement('html', html_writer::end_tag('div'));
140 $this->activitydiv = false;
142 if ($this->sectiondiv) {
143 $this->_form->addElement('html', html_writer::end_tag('div'));
144 $this->sectiondiv = false;
146 if ($this->coursediv) {
147 $this->_form->addElement('html', html_writer::end_tag('div'));
148 $this->coursediv = false;
152 * Adds the backup_setting as a element to the form
153 * @param backup_setting $setting
156 function add_setting(backup_setting $setting, base_task $task=null) {
157 return $this->add_settings(array(array($setting, $task)));
160 * Adds multiple backup_settings as elements to the form
161 * @param array $settingstasks Consists of array($setting, $task) elements
164 public function add_settings(array $settingstasks) {
168 foreach ($settingstasks as $st) {
169 list($setting, $task) = $st;
170 // If the setting cant be changed or isn't visible then add it as a fixed setting.
171 if (!$setting->get_ui()->is_changeable() || $setting->get_visibility() != backup_setting::VISIBLE) {
172 $this->add_fixed_setting($setting, $task);
176 // First add the formatting for this setting
177 $this->add_html_formatting($setting);
179 // Then call the add method with the get_element_properties array
180 call_user_func_array(array($this->_form, 'addElement'), $setting->get_ui()->get_element_properties($task, $OUTPUT));
181 $this->_form->setType($setting->get_ui_name(), $setting->get_param_validation());
182 $defaults[$setting->get_ui_name()] = $setting->get_value();
183 if ($setting->has_help()) {
184 list($identifier, $component) = $setting->get_help();
185 $this->_form->addHelpButton($setting->get_ui_name(), $identifier, $component);
187 $this->_form->addElement('html', html_writer::end_tag('div'));
189 $this->_form->setDefaults($defaults);
193 * Adds a heading to the form
194 * @param string $name
195 * @param string $text
197 function add_heading($name , $text) {
198 $this->_form->addElement('header', $name, $text);
201 * Adds HTML formatting for the given backup setting, needed to group/segment
203 * @param backup_setting $setting
205 protected function add_html_formatting(backup_setting $setting) {
206 $mform = $this->_form;
207 $isincludesetting = (strpos($setting->get_name(), '_include')!==false);
208 if ($isincludesetting && $setting->get_level() != backup_setting::ROOT_LEVEL) {
209 switch ($setting->get_level()) {
210 case backup_setting::COURSE_LEVEL:
211 if ($this->activitydiv) {
212 $this->_form->addElement('html', html_writer::end_tag('div'));
213 $this->activitydiv = false;
215 if ($this->sectiondiv) {
216 $this->_form->addElement('html', html_writer::end_tag('div'));
217 $this->sectiondiv = false;
219 if ($this->coursediv) {
220 $this->_form->addElement('html', html_writer::end_tag('div'));
222 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'grouped_settings course_level')));
223 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'include_setting course_level')));
224 $this->coursediv = true;
226 case backup_setting::SECTION_LEVEL:
227 if ($this->activitydiv) {
228 $this->_form->addElement('html', html_writer::end_tag('div'));
229 $this->activitydiv = false;
231 if ($this->sectiondiv) {
232 $this->_form->addElement('html', html_writer::end_tag('div'));
234 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'grouped_settings section_level')));
235 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'include_setting section_level')));
236 $this->sectiondiv = true;
238 case backup_setting::ACTIVITY_LEVEL:
239 if ($this->activitydiv) {
240 $this->_form->addElement('html', html_writer::end_tag('div'));
242 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'grouped_settings activity_level')));
243 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'include_setting activity_level')));
244 $this->activitydiv = true;
247 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'normal_setting')));
250 } else if ($setting->get_level() == backup_setting::ROOT_LEVEL) {
251 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'root_setting')));
253 $mform->addElement('html', html_writer::start_tag('div', array('class'=>'normal_setting')));
257 * Adds a fixed or static setting to the form
258 * @param backup_setting $setting
260 function add_fixed_setting(backup_setting $setting, base_task $task) {
262 $settingui = $setting->get_ui();
263 if ($setting->get_visibility() == backup_setting::VISIBLE) {
264 $this->add_html_formatting($setting);
265 switch ($setting->get_status()) {
266 case backup_setting::LOCKED_BY_PERMISSION:
267 $icon = ' '.$OUTPUT->pix_icon('i/permissionlock', get_string('lockedbypermission', 'backup'), 'moodle', array('class'=>'smallicon lockedicon permissionlock'));
269 case backup_setting::LOCKED_BY_CONFIG:
270 $icon = ' '.$OUTPUT->pix_icon('i/configlock', get_string('lockedbyconfig', 'backup'), 'moodle', array('class'=>'smallicon lockedicon configlock'));
272 case backup_setting::LOCKED_BY_HIERARCHY:
273 $icon = ' '.$OUTPUT->pix_icon('i/hierarchylock', get_string('lockedbyhierarchy', 'backup'), 'moodle', array('class'=>'smallicon lockedicon configlock'));
279 $label = $settingui->get_label($task);
280 $labelicon = $settingui->get_icon();
281 if (!empty($labelicon)) {
282 $label .= ' '.$OUTPUT->render($labelicon);
284 $this->_form->addElement('static', 'static_'.$settingui->get_name(), $label, $settingui->get_static_value().$icon);
285 $this->_form->addElement('html', html_writer::end_tag('div'));
287 $this->_form->addElement('hidden', $settingui->get_name(), $settingui->get_value());
288 $this->_form->setType($settingui->get_name(), $settingui->get_param_validation());
291 * Adds dependencies to the form recursively
293 * @param backup_setting $setting
295 function add_dependencies(backup_setting $setting) {
296 $mform = $this->_form;
297 // Apply all dependencies for backup
298 foreach ($setting->get_my_dependency_properties() as $key=>$dependency) {
299 call_user_func_array(array($this->_form, 'disabledIf'), $dependency);
303 * Returns true if the form was cancelled, false otherwise
306 public function is_cancelled() {
307 return (optional_param('cancel', false, PARAM_BOOL) || parent::is_cancelled());
311 * Removes an element from the form if it exists
312 * @param string $elementname
315 public function remove_element($elementname) {
316 if ($this->_form->elementExists($elementname)) {
317 return $this->_form->removeElement($elementname);
324 * Gets an element from the form if it exists
326 * @param string $elementname
327 * @return HTML_QuickForm_input|MoodleQuickForm_group
329 public function get_element($elementname) {
330 if ($this->_form->elementExists($elementname)) {
331 return $this->_form->getElement($elementname);
340 public function display() {
341 global $PAGE, $COURSE;
343 $this->require_definition_after_data();
345 $config = new stdClass;
346 $config->title = get_string('confirmcancel', 'backup');
347 $config->question = get_string('confirmcancelquestion', 'backup');
348 $config->yesLabel = get_string('confirmcancelyes', 'backup');
349 $config->noLabel = get_string('confirmcancelno', 'backup');
350 $config->closeButtonTitle = get_string('close', 'editor');
351 $PAGE->requires->yui_module('moodle-backup-confirmcancel', 'M.core_backup.confirmcancel.watch_cancel_buttons', array($config));
353 // Get list of module types on course.
354 $modinfo = get_fast_modinfo($COURSE);
355 $modnames = $modinfo->get_used_module_names(true);
356 $PAGE->requires->yui_module('moodle-backup-backupselectall', 'M.core_backup.select_all_init',
358 $PAGE->requires->strings_for_js(array('select', 'all', 'none'), 'moodle');
359 $PAGE->requires->strings_for_js(array('showtypes', 'hidetypes'), 'backup');
365 * Ensures the the definition after data is loaded
367 public function require_definition_after_data() {
368 if (!$this->_definition_finalized) {
369 $this->definition_after_data();