Merge branch 'MDL-35027-B-28' of https://github.com/bostelm/moodle into MOODLE_28_STABLE
[moodle.git] / lib / portfolio / forms.php
blob73390c9108e298ba8d67e1644e9a150baea692d4
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 * This file contains all the form definitions used by the portfolio code.
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
26 defined('MOODLE_INTERNAL') || die();
28 // make sure we include moodleform first!
29 require_once ($CFG->libdir.'/formslib.php');
31 /**
32 * During-export config form.
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
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
46 final class portfolio_export_form extends moodleform {
48 /**
49 * prepare form
51 public function definition() {
53 $mform =& $this->_form;
54 $mform->addElement('hidden', 'stage', PORTFOLIO_STAGE_CONFIG);
55 $mform->addElement('hidden', 'id', $this->_customdata['id']);
56 $mform->addElement('hidden', 'instance', $this->_customdata['instance']->get('id'));
57 $mform->setType('instance', PARAM_INT);
58 $mform->setType('stage', PARAM_INT);
59 $mform->setType('id', PARAM_INT);
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');
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);
71 $mform->setType('format', PARAM_RAW);
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();
80 $radioarray[] = $mform->createElement('radio', 'wait', '', get_string('wait', 'portfolio'), 1);
81 $radioarray[] = $mform->createElement('radio', 'wait', '', get_string('dontwait', 'portfolio'), 0);
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);
90 $mform->setType('wait', PARAM_INT);
93 if (array_key_exists('plugin', $this->_customdata) && is_object($this->_customdata['plugin'])) {
94 $this->_customdata['plugin']->export_config_form($mform, $this->_customdata['userid']);
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']);
101 $this->add_action_buttons(true, get_string('next'));
105 * Validate portfolio export form
107 * @param stdClass $data portfolio information from form data
108 * @return array
110 public function validation($data, $files) {
112 $errors = array();
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;
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);
126 return $errors;
131 * Admin config form.
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}
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
142 final class portfolio_admin_form extends moodleform {
144 /** @var object to hold porfolio instance configuration */
145 protected $instance;
147 /** @var string plugin name*/
148 protected $plugin;
150 /** @var string portfolio plugin name*/
151 protected $portfolio;
153 /** @var string plugin availability*/
154 protected $action;
156 /** @var int portfolio plugin visibility*/
157 protected $visible;
160 * prepare form
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;
168 $this->portfolio = $this->_customdata['portfolio'];
169 $this->action = $this->_customdata['action'];
170 $this->visible = $this->_customdata['visible'];
172 $mform =& $this->_form;
173 $strrequired = get_string('required');
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);
181 $mform->addElement('hidden', 'plugin', $this->plugin);
182 $mform->setType('plugin', PARAM_PLUGIN);
184 if (!$this->instance) {
185 $insane = portfolio_instance_sanity_check($this->instance);
186 } else {
187 $insane = portfolio_plugin_sanity_check($this->plugin);
190 if (isset($insane) && is_array($insane)) {
191 $insane = array_shift($insane);
193 if (isset($insane) && is_string($insane)) { // something went wrong, warn...
194 $mform->addElement('warning', 'insane', null, get_string($insane, 'portfolio_' . $this->plugin));
197 $mform->addElement('text', 'name', get_string('name'), 'maxlength="100" size="30"');
198 $mform->addRule('name', $strrequired, 'required', null, 'client');
199 $mform->setType('name', PARAM_TEXT);
201 // let the plugin add the fields they want (either statically or not)
202 if (portfolio_static_function($this->plugin, 'has_admin_config')) {
203 require_once($CFG->libdir . '/portfolio/plugin.php');
204 require_once($CFG->dirroot . '/portfolio/' . $this->plugin . '/lib.php');
205 call_user_func(array('portfolio_plugin_' . $this->plugin, 'admin_config_form'), $mform);
208 // and set the data if we have some.
209 if ($this->instance) {
210 $data = array('name' => $this->instance->get('name'));
211 foreach ($this->instance->get_allowed_config() as $config) {
212 $data[$config] = $this->instance->get_config($config);
214 $this->set_data($data);
215 } else {
216 $this->set_data(array('name' => portfolio_static_function($this->plugin, 'get_name')));
219 $this->add_action_buttons(true, get_string('save', 'portfolio'));
223 * Validate admin config form
225 * @param stdObject $data form data
226 * @return array
228 public function validation($data, $files) {
229 global $DB;
231 $errors = array();
232 if ($DB->count_records('portfolio_instance', array('name' => $data['name'], 'plugin' => $data['plugin'])) > 1) {
233 $errors = array('name' => get_string('err_uniquename', 'portfolio'));
236 $pluginerrors = array();
237 $pluginerrors = portfolio_static_function($this->plugin, 'admin_config_validation', $data);
238 if (is_array($pluginerrors)) {
239 $errors = array_merge($errors, $pluginerrors);
241 return $errors;
246 * User config form.
248 * This is the form for letting the user configure an instance of a plugin.
249 * In order to extend this, you don't subclass this in the plugin..
250 * see the docs in portfolio_plugin_base for more information:
251 * {@link http://docs.moodle.org/dev/Writing_a_Portfolio_Plugin#has_user_config}
253 * @package core_portfolio
254 * @category portfolio
255 * @copyright 2008 Penny Leach <penny@catalyst.net.nz>
256 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
258 final class portfolio_user_form extends moodleform {
260 /** @var object user porfolio instance */
261 protected $instance;
263 /** @var int hold user id */
264 protected $userid;
267 * prepare form
269 public function definition() {
270 $this->instance = $this->_customdata['instance'];
271 $this->userid = $this->_customdata['userid'];
273 $this->_form->addElement('hidden', 'config', $this->instance->get('id'));
274 $this->_form->setType('config', PARAM_INT);
276 $this->instance->user_config_form($this->_form, $this->userid);
278 $data = array();
279 foreach ($this->instance->get_allowed_user_config() as $config) {
280 $data[$config] = $this->instance->get_user_config($config, $this->userid);
282 $this->set_data($data);
283 $this->add_action_buttons(true, get_string('save', 'portfolio'));
287 * User user config form.
289 * @param stdClass $data form data
291 public function validation($data, $files) {
293 $errors = $this->instance->user_config_validation($data);
300 * Form that just contains the dropdown menu of available instances.
302 * This is not used by portfolio_add_button, but on the first step of the export,
303 * if the plugin instance has not yet been selected.
305 * @package core_portfolio
306 * @category portfolio
307 * @copyright 2008 Penny Leach <penny@catalyst.net.nz>
308 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
310 class portfolio_instance_select extends moodleform {
312 /** @var portfolio_caller_base plugin instance */
313 private $caller;
316 * The required basic elements to the form.
318 function definition() {
319 $this->caller = $this->_customdata['caller'];
320 $options = $this->_customdata['options'];
321 $mform =& $this->_form;
322 $mform->addElement('select', 'instance', get_string('selectplugin', 'portfolio'), $options);
323 $mform->addElement('hidden', 'id', $this->_customdata['id']);
324 $mform->setType('id', PARAM_INT);
325 $this->add_action_buttons(true, get_string('next'));