Commit | Line | Data |
---|---|---|
87fcac8d | 1 | <?php |
93dd2725 RW |
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. | |
13 | // | |
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/>. | |
16 | ||
87fcac8d | 17 | /** |
87fcac8d | 18 | * This file contains all the form definitions used by the portfolio code. |
93dd2725 RW |
19 | * |
20 | * @package core_portfolio | |
21 | * @copyright 2008 Penny Leach <penny@catalyst.net.nz>, | |
22 | * Martin Dougiamas (http://dougiamas.com) | |
23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
87fcac8d | 24 | */ |
25 | ||
0972665f PS |
26 | defined('MOODLE_INTERNAL') || die(); |
27 | ||
87fcac8d | 28 | // make sure we include moodleform first! |
29 | require_once ($CFG->libdir.'/formslib.php'); | |
30 | ||
31 | /** | |
93dd2725 | 32 | * During-export config form. |
18cdcdbf | 33 | * |
93dd2725 RW |
34 | * This is the form that is actually used while exporting. |
35 | * Plugins and callers don't get to define their own class | |
36 | * as we have to handle form elements from both places | |
37 | * See the docs here for more information: | |
38 | * http://docs.moodle.org/dev/Writing_a_Portfolio_Plugin#has_export_config | |
39 | * http://docs.moodle.org/dev/Adding_a_Portfolio_Button_to_a_page#has_export_config | |
40 | * | |
41 | * @package core_portfolio | |
42 | * @category portfolio | |
43 | * @copyright 2008 Penny Leach <penny@catalyst.net.nz> | |
44 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
45 | */ | |
87fcac8d | 46 | final class portfolio_export_form extends moodleform { |
47 | ||
93dd2725 RW |
48 | /** |
49 | * prepare form | |
50 | */ | |
87fcac8d | 51 | public function definition() { |
52 | ||
53 | $mform =& $this->_form; | |
54 | $mform->addElement('hidden', 'stage', PORTFOLIO_STAGE_CONFIG); | |
c95a6095 | 55 | $mform->addElement('hidden', 'id', $this->_customdata['id']); |
87fcac8d | 56 | $mform->addElement('hidden', 'instance', $this->_customdata['instance']->get('id')); |
d18e0fe6 | 57 | $mform->setType('instance', PARAM_INT); |
c95a6095 PL |
58 | $mform->setType('stage', PARAM_INT); |
59 | $mform->setType('id', PARAM_INT); | |
87fcac8d | 60 | |
61 | if (array_key_exists('formats', $this->_customdata) && is_array($this->_customdata['formats'])) { | |
62 | if (count($this->_customdata['formats']) > 1) { | |
63 | $options = array(); | |
64 | foreach ($this->_customdata['formats'] as $key) { | |
65 | $options[$key] = get_string('format_' . $key, 'portfolio'); | |
66 | } | |
67 | $mform->addElement('select', 'format', get_string('availableformats', 'portfolio'), $options); | |
68 | } else { | |
69 | $f = array_shift($this->_customdata['formats']); | |
70 | $mform->addElement('hidden', 'format', $f); | |
d18e0fe6 | 71 | $mform->setType('format', PARAM_RAW); |
87fcac8d | 72 | } |
73 | } | |
74 | ||
75 | // only display the option to wait or not if it's applicable | |
76 | if (array_key_exists('expectedtime', $this->_customdata) | |
77 | && $this->_customdata['expectedtime'] != PORTFOLIO_TIME_LOW | |
78 | && $this->_customdata['expectedtime'] != PORTFOLIO_TIME_FORCEQUEUE) { | |
79 | $radioarray = array(); | |
f20edd52 PS |
80 | $radioarray[] = $mform->createElement('radio', 'wait', '', get_string('wait', 'portfolio'), 1); |
81 | $radioarray[] = $mform->createElement('radio', 'wait', '', get_string('dontwait', 'portfolio'), 0); | |
87fcac8d | 82 | $mform->addGroup($radioarray, 'radioar', get_string('wanttowait_' . $this->_customdata['expectedtime'], 'portfolio') , array(' '), false); |
83 | $mform->setDefault('wait', 0); | |
84 | } else { | |
85 | if ($this->_customdata['expectedtime'] == PORTFOLIO_TIME_LOW) { | |
86 | $mform->addElement('hidden', 'wait', 1); | |
87 | } else { | |
88 | $mform->addElement('hidden', 'wait', 0); | |
89 | } | |
d18e0fe6 | 90 | $mform->setType('wait', PARAM_INT); |
87fcac8d | 91 | } |
92 | ||
93 | if (array_key_exists('plugin', $this->_customdata) && is_object($this->_customdata['plugin'])) { | |
94 | $this->_customdata['plugin']->export_config_form($mform, $this->_customdata['userid']); | |
95 | } | |
96 | ||
97 | if (array_key_exists('caller', $this->_customdata) && is_object($this->_customdata['caller'])) { | |
98 | $this->_customdata['caller']->export_config_form($mform, $this->_customdata['instance'], $this->_customdata['userid']); | |
99 | } | |
100 | ||
101 | $this->add_action_buttons(true, get_string('next')); | |
102 | } | |
103 | ||
93dd2725 RW |
104 | /** |
105 | * Validate portfolio export form | |
106 | * | |
107 | * @param stdClass $data portfolio information from form data | |
108 | * @return array | |
109 | */ | |
9b27ffa0 | 110 | public function validation($data, $files) { |
87fcac8d | 111 | |
112 | $errors = array(); | |
113 | ||
114 | if (array_key_exists('plugin', $this->_customdata) && is_object($this->_customdata['plugin'])) { | |
115 | $pluginerrors = $this->_customdata['plugin']->export_config_validation($data); | |
116 | if (is_array($pluginerrors)) { | |
117 | $errors = $pluginerrors; | |
118 | } | |
119 | } | |
120 | if (array_key_exists('caller', $this->_customdata) && is_object($this->_customdata['caller'])) { | |
121 | $callererrors = $this->_customdata['caller']->export_config_validation($data); | |
122 | if (is_array($callererrors)) { | |
123 | $errors = array_merge($errors, $callererrors); | |
124 | } | |
125 | } | |
126 | return $errors; | |
127 | } | |
128 | } | |
129 | ||
130 | /** | |
93dd2725 | 131 | * Admin config form. |
18cdcdbf | 132 | * |
93dd2725 RW |
133 | * This form is extendable by plugins who want the admin to be able to configure more than just the name of the instance. |
134 | * This is NOT done by subclassing this class, see the docs for portfolio_plugin_base for more information: | |
135 | * {@link http://docs.moodle.org/dev/Writing_a_Portfolio_Plugin#has_admin_config} | |
136 | * | |
137 | * @package core_portfolio | |
138 | * @category portfolio | |
139 | * @copyright 2008 Penny Leach <penny@catalyst.net.nz> | |
140 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
141 | */ | |
87fcac8d | 142 | final class portfolio_admin_form extends moodleform { |
143 | ||
93dd2725 | 144 | /** @var object to hold porfolio instance configuration */ |
87fcac8d | 145 | protected $instance; |
93dd2725 RW |
146 | |
147 | /** @var string plugin name*/ | |
87fcac8d | 148 | protected $plugin; |
93dd2725 RW |
149 | |
150 | /** @var string portfolio plugin name*/ | |
6010eda2 | 151 | protected $portfolio; |
93dd2725 RW |
152 | |
153 | /** @var string plugin availability*/ | |
6010eda2 | 154 | protected $action; |
93dd2725 RW |
155 | |
156 | /** @var int portfolio plugin visibility*/ | |
6010eda2 | 157 | protected $visible; |
87fcac8d | 158 | |
93dd2725 RW |
159 | /** |
160 | * prepare form | |
161 | */ | |
87fcac8d | 162 | public function definition() { |
163 | global $CFG; | |
164 | $this->plugin = $this->_customdata['plugin']; | |
165 | $this->instance = (isset($this->_customdata['instance']) | |
166 | && is_subclass_of($this->_customdata['instance'], 'portfolio_plugin_base')) | |
167 | ? $this->_customdata['instance'] : null; | |
6010eda2 MD |
168 | $this->portfolio = $this->_customdata['portfolio']; |
169 | $this->action = $this->_customdata['action']; | |
170 | $this->visible = $this->_customdata['visible']; | |
87fcac8d | 171 | |
172 | $mform =& $this->_form; | |
173 | $strrequired = get_string('required'); | |
174 | ||
6010eda2 MD |
175 | $mform->addElement('hidden', 'pf', $this->portfolio); |
176 | $mform->setType('pf', PARAM_ALPHA); | |
177 | $mform->addElement('hidden', 'action', $this->action); | |
178 | $mform->setType('action', PARAM_ALPHA); | |
179 | $mform->addElement('hidden', 'visible', $this->visible); | |
180 | $mform->setType('visible', PARAM_INT); | |
87fcac8d | 181 | $mform->addElement('hidden', 'plugin', $this->plugin); |
aff24313 | 182 | $mform->setType('plugin', PARAM_PLUGIN); |
87fcac8d | 183 | |
2726b405 | 184 | if (!$this->instance) { |
185 | $insane = portfolio_instance_sanity_check($this->instance); | |
186 | } else { | |
187 | $insane = portfolio_plugin_sanity_check($this->plugin); | |
87fcac8d | 188 | } |
189 | ||
190 | if (isset($insane) && is_array($insane)) { | |
191 | $insane = array_shift($insane); | |
192 | } | |
193 | if (isset($insane) && is_string($insane)) { // something went wrong, warn... | |
194 | $mform->addElement('warning', 'insane', null, get_string($insane, 'portfolio_' . $this->plugin)); | |
195 | } | |
196 | ||
197 | $mform->addElement('text', 'name', get_string('name'), 'maxlength="100" size="30"'); | |
198 | $mform->addRule('name', $strrequired, 'required', null, 'client'); | |
199 | ||
2726b405 | 200 | // let the plugin add the fields they want (either statically or not) |
201 | if (portfolio_static_function($this->plugin, 'has_admin_config')) { | |
c17ec774 DP |
202 | require_once($CFG->libdir . '/portfolio/plugin.php'); |
203 | require_once($CFG->dirroot . '/portfolio/' . $this->plugin . '/lib.php'); | |
204 | call_user_func(array('portfolio_plugin_' . $this->plugin, 'admin_config_form'), $mform); | |
2726b405 | 205 | } |
87fcac8d | 206 | |
207 | // and set the data if we have some. | |
208 | if ($this->instance) { | |
209 | $data = array('name' => $this->instance->get('name')); | |
210 | foreach ($this->instance->get_allowed_config() as $config) { | |
211 | $data[$config] = $this->instance->get_config($config); | |
212 | } | |
213 | $this->set_data($data); | |
214 | } else { | |
215 | $this->set_data(array('name' => portfolio_static_function($this->plugin, 'get_name'))); | |
216 | } | |
217 | ||
218 | $this->add_action_buttons(true, get_string('save', 'portfolio')); | |
219 | } | |
220 | ||
93dd2725 RW |
221 | /** |
222 | * Validate admin config form | |
223 | * | |
224 | * @param stdObject $data form data | |
225 | * @return array | |
226 | */ | |
9b27ffa0 | 227 | public function validation($data, $files) { |
87fcac8d | 228 | global $DB; |
229 | ||
230 | $errors = array(); | |
231 | if ($DB->count_records('portfolio_instance', array('name' => $data['name'], 'plugin' => $data['plugin'])) > 1) { | |
232 | $errors = array('name' => get_string('err_uniquename', 'portfolio')); | |
233 | } | |
234 | ||
235 | $pluginerrors = array(); | |
c17ec774 | 236 | $pluginerrors = portfolio_static_function($this->plugin, 'admin_config_validation', $data); |
87fcac8d | 237 | if (is_array($pluginerrors)) { |
238 | $errors = array_merge($errors, $pluginerrors); | |
239 | } | |
240 | return $errors; | |
241 | } | |
242 | } | |
243 | ||
244 | /** | |
93dd2725 | 245 | * User config form. |
18cdcdbf | 246 | * |
93dd2725 RW |
247 | * This is the form for letting the user configure an instance of a plugin. |
248 | * In order to extend this, you don't subclass this in the plugin.. | |
249 | * see the docs in portfolio_plugin_base for more information: | |
250 | * {@link http://docs.moodle.org/dev/Writing_a_Portfolio_Plugin#has_user_config} | |
251 | * | |
252 | * @package core_portfolio | |
253 | * @category portfolio | |
254 | * @copyright 2008 Penny Leach <penny@catalyst.net.nz> | |
255 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
256 | */ | |
87fcac8d | 257 | final class portfolio_user_form extends moodleform { |
258 | ||
93dd2725 | 259 | /** @var object user porfolio instance */ |
87fcac8d | 260 | protected $instance; |
93dd2725 RW |
261 | |
262 | /** @var int hold user id */ | |
87fcac8d | 263 | protected $userid; |
264 | ||
93dd2725 RW |
265 | /** |
266 | * prepare form | |
267 | */ | |
87fcac8d | 268 | public function definition() { |
269 | $this->instance = $this->_customdata['instance']; | |
270 | $this->userid = $this->_customdata['userid']; | |
271 | ||
272 | $this->_form->addElement('hidden', 'config', $this->instance->get('id')); | |
c9833243 | 273 | $this->_form->setType('config', PARAM_INT); |
87fcac8d | 274 | |
275 | $this->instance->user_config_form($this->_form, $this->userid); | |
276 | ||
277 | $data = array(); | |
278 | foreach ($this->instance->get_allowed_user_config() as $config) { | |
279 | $data[$config] = $this->instance->get_user_config($config, $this->userid); | |
280 | } | |
281 | $this->set_data($data); | |
282 | $this->add_action_buttons(true, get_string('save', 'portfolio')); | |
283 | } | |
284 | ||
93dd2725 RW |
285 | /** |
286 | * User user config form. | |
287 | * | |
288 | * @param stdClass $data form data | |
289 | */ | |
9b27ffa0 | 290 | public function validation($data, $files) { |
87fcac8d | 291 | |
292 | $errors = $this->instance->user_config_validation($data); | |
293 | ||
294 | } | |
295 | } | |
296 | ||
297 | ||
298 | /** | |
93dd2725 | 299 | * Form that just contains the dropdown menu of available instances. |
18cdcdbf | 300 | * |
93dd2725 RW |
301 | * This is not used by portfolio_add_button, but on the first step of the export, |
302 | * if the plugin instance has not yet been selected. | |
303 | * | |
304 | * @package core_portfolio | |
305 | * @category portfolio | |
306 | * @copyright 2008 Penny Leach <penny@catalyst.net.nz> | |
307 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
308 | */ | |
87fcac8d | 309 | class portfolio_instance_select extends moodleform { |
310 | ||
93dd2725 | 311 | /** @var portfolio_caller_base plugin instance */ |
87fcac8d | 312 | private $caller; |
313 | ||
93dd2725 RW |
314 | /** |
315 | * The required basic elements to the form. | |
316 | */ | |
87fcac8d | 317 | function definition() { |
318 | $this->caller = $this->_customdata['caller']; | |
59dd457e | 319 | $options = $this->_customdata['options']; |
87fcac8d | 320 | $mform =& $this->_form; |
321 | $mform->addElement('select', 'instance', get_string('selectplugin', 'portfolio'), $options); | |
c95a6095 | 322 | $mform->addElement('hidden', 'id', $this->_customdata['id']); |
87fcac8d | 323 | $this->add_action_buttons(true, get_string('next')); |
324 | } | |
325 | } |