Merge branch 'MDL-65060-36' of git://github.com/aanabit/moodle into MOODLE_36_STABLE
[moodle.git] / mod / lti / edit_form.php
blob5e618dec0f2d1fd6465b1a2d8a906999c14ef803
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 // This file is part of BasicLTI4Moodle
19 // BasicLTI4Moodle is an IMS BasicLTI (Basic Learning Tools for Interoperability)
20 // consumer for Moodle 1.9 and Moodle 2.0. BasicLTI is a IMS Standard that allows web
21 // based learning tools to be easily integrated in LMS as native ones. The IMS BasicLTI
22 // specification is part of the IMS standard Common Cartridge 1.1 Sakai and other main LMS
23 // are already supporting or going to support BasicLTI. This project Implements the consumer
24 // for Moodle. Moodle is a Free Open source Learning Management System by Martin Dougiamas.
25 // BasicLTI4Moodle is a project iniciated and leaded by Ludo(Marc Alier) and Jordi Piguillem
26 // at the GESSI research group at UPC.
27 // SimpleLTI consumer for Moodle is an implementation of the early specification of LTI
28 // by Charles Severance (Dr Chuck) htp://dr-chuck.com , developed by Jordi Piguillem in a
29 // Google Summer of Code 2008 project co-mentored by Charles Severance and Marc Alier.
31 // BasicLTI4Moodle is copyright 2009 by Marc Alier Forment, Jordi Piguillem and Nikolas Galanis
32 // of the Universitat Politecnica de Catalunya http://www.upc.edu
33 // Contact info: Marc Alier Forment granludo @ gmail.com or marc.alier @ upc.edu.
35 /**
36 * This file defines de main basiclti configuration form
38 * @package mod_lti
39 * @copyright 2009 Marc Alier, Jordi Piguillem, Nikolas Galanis
40 * marc.alier@upc.edu
41 * @copyright 2009 Universitat Politecnica de Catalunya http://www.upc.edu
42 * @author Marc Alier
43 * @author Jordi Piguillem
44 * @author Nikolas Galanis
45 * @author Charles Severance
46 * @author Chris Scribner
47 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
50 defined('MOODLE_INTERNAL') || die;
52 global $CFG;
53 require_once($CFG->libdir.'/formslib.php');
54 require_once($CFG->dirroot.'/mod/lti/locallib.php');
56 /**
57 * LTI Edit Form
59 * @package mod_lti
60 * @copyright 2009 Marc Alier, Jordi Piguillem, Nikolas Galanis
61 * marc.alier@upc.edu
62 * @copyright 2009 Universitat Politecnica de Catalunya http://www.upc.edu
63 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
65 class mod_lti_edit_types_form extends moodleform {
67 /**
68 * Define this form.
70 public function definition() {
71 global $CFG;
73 $mform =& $this->_form;
75 $istool = $this->_customdata && $this->_customdata->istool;
77 // Add basiclti elements.
78 $mform->addElement('header', 'setup', get_string('tool_settings', 'lti'));
80 $mform->addElement('text', 'lti_typename', get_string('typename', 'lti'));
81 $mform->setType('lti_typename', PARAM_TEXT);
82 $mform->addHelpButton('lti_typename', 'typename', 'lti');
83 $mform->addRule('lti_typename', null, 'required', null, 'client');
85 $mform->addElement('text', 'lti_toolurl', get_string('toolurl', 'lti'), array('size' => '64'));
86 $mform->setType('lti_toolurl', PARAM_URL);
87 $mform->addHelpButton('lti_toolurl', 'toolurl', 'lti');
89 $mform->addElement('textarea', 'lti_description', get_string('tooldescription', 'lti'), array('rows' => 4, 'cols' => 60));
90 $mform->setType('lti_description', PARAM_TEXT);
91 $mform->addHelpButton('lti_description', 'tooldescription', 'lti');
92 if (!$istool) {
93 $mform->addRule('lti_toolurl', null, 'required', null, 'client');
94 } else {
95 $mform->disabledIf('lti_toolurl', null);
98 if (!$istool) {
99 $mform->addElement('text', 'lti_resourcekey', get_string('resourcekey_admin', 'lti'));
100 $mform->setType('lti_resourcekey', PARAM_TEXT);
101 $mform->addHelpButton('lti_resourcekey', 'resourcekey_admin', 'lti');
102 $mform->setForceLtr('lti_resourcekey');
104 $mform->addElement('passwordunmask', 'lti_password', get_string('password_admin', 'lti'));
105 $mform->setType('lti_password', PARAM_TEXT);
106 $mform->addHelpButton('lti_password', 'password_admin', 'lti');
109 if ($istool) {
110 $mform->addElement('textarea', 'lti_parameters', get_string('parameter', 'lti'), array('rows' => 4, 'cols' => 60));
111 $mform->setType('lti_parameters', PARAM_TEXT);
112 $mform->addHelpButton('lti_parameters', 'parameter', 'lti');
113 $mform->disabledIf('lti_parameters', null);
114 $mform->setForceLtr('lti_parameters');
117 $mform->addElement('textarea', 'lti_customparameters', get_string('custom', 'lti'), array('rows' => 4, 'cols' => 60));
118 $mform->setType('lti_customparameters', PARAM_TEXT);
119 $mform->addHelpButton('lti_customparameters', 'custom', 'lti');
120 $mform->setForceLtr('lti_customparameters');
122 if (!empty($this->_customdata->isadmin)) {
123 $options = array(
124 LTI_COURSEVISIBLE_NO => get_string('show_in_course_no', 'lti'),
125 LTI_COURSEVISIBLE_PRECONFIGURED => get_string('show_in_course_preconfigured', 'lti'),
126 LTI_COURSEVISIBLE_ACTIVITYCHOOSER => get_string('show_in_course_activity_chooser', 'lti'),
128 if ($istool) {
129 // LTI2 tools can not be matched by URL, they have to be either in preconfigured tools or in activity chooser.
130 unset($options[LTI_COURSEVISIBLE_NO]);
131 $stringname = 'show_in_course_lti2';
132 } else {
133 $stringname = 'show_in_course_lti1';
135 $mform->addElement('select', 'lti_coursevisible', get_string($stringname, 'lti'), $options);
136 $mform->addHelpButton('lti_coursevisible', $stringname, 'lti');
137 $mform->setDefault('lti_coursevisible', '1');
138 } else {
139 $mform->addElement('hidden', 'lti_coursevisible', LTI_COURSEVISIBLE_PRECONFIGURED);
141 $mform->setType('lti_coursevisible', PARAM_INT);
143 $mform->addElement('hidden', 'typeid');
144 $mform->setType('typeid', PARAM_INT);
146 $launchoptions = array();
147 $launchoptions[LTI_LAUNCH_CONTAINER_EMBED] = get_string('embed', 'lti');
148 $launchoptions[LTI_LAUNCH_CONTAINER_EMBED_NO_BLOCKS] = get_string('embed_no_blocks', 'lti');
149 $launchoptions[LTI_LAUNCH_CONTAINER_REPLACE_MOODLE_WINDOW] = get_string('existing_window', 'lti');
150 $launchoptions[LTI_LAUNCH_CONTAINER_WINDOW] = get_string('new_window', 'lti');
152 $mform->addElement('select', 'lti_launchcontainer', get_string('default_launch_container', 'lti'), $launchoptions);
153 $mform->setDefault('lti_launchcontainer', LTI_LAUNCH_CONTAINER_EMBED_NO_BLOCKS);
154 $mform->addHelpButton('lti_launchcontainer', 'default_launch_container', 'lti');
155 $mform->setType('lti_launchcontainer', PARAM_INT);
157 $mform->addElement('advcheckbox', 'lti_contentitem', get_string('contentitem', 'lti'));
158 $mform->addHelpButton('lti_contentitem', 'contentitem', 'lti');
159 $mform->setAdvanced('lti_contentitem');
160 if ($istool) {
161 $mform->disabledIf('lti_contentitem', null);
164 $mform->addElement('text', 'lti_toolurl_ContentItemSelectionRequest',
165 get_string('toolurl_contentitemselectionrequest', 'lti'), array('size' => '64'));
166 $mform->setType('lti_toolurl_ContentItemSelectionRequest', PARAM_URL);
167 $mform->setAdvanced('lti_toolurl_ContentItemSelectionRequest');
168 $mform->addHelpButton('lti_toolurl_ContentItemSelectionRequest', 'toolurl_contentitemselectionrequest', 'lti');
169 $mform->disabledIf('lti_toolurl_ContentItemSelectionRequest', 'lti_contentitem', 'notchecked');
170 if ($istool) {
171 $mform->disabledIf('lti_toolurl__ContentItemSelectionRequest', null);
174 $mform->addElement('hidden', 'oldicon');
175 $mform->setType('oldicon', PARAM_URL);
177 $mform->addElement('text', 'lti_icon', get_string('icon_url', 'lti'), array('size' => '64'));
178 $mform->setType('lti_icon', PARAM_URL);
179 $mform->setAdvanced('lti_icon');
180 $mform->addHelpButton('lti_icon', 'icon_url', 'lti');
182 $mform->addElement('text', 'lti_secureicon', get_string('secure_icon_url', 'lti'), array('size' => '64'));
183 $mform->setType('lti_secureicon', PARAM_URL);
184 $mform->setAdvanced('lti_secureicon');
185 $mform->addHelpButton('lti_secureicon', 'secure_icon_url', 'lti');
187 if (!$istool) {
188 // Display the lti advantage services.
189 $this->get_lti_advantage_services($mform);
192 if (!$istool) {
193 // Add privacy preferences fieldset where users choose whether to send their data.
194 $mform->addElement('header', 'privacy', get_string('privacy', 'lti'));
196 $options = array();
197 $options[0] = get_string('never', 'lti');
198 $options[1] = get_string('always', 'lti');
199 $options[2] = get_string('delegate', 'lti');
201 $mform->addElement('select', 'lti_sendname', get_string('share_name_admin', 'lti'), $options);
202 $mform->setType('lti_sendname', PARAM_INT);
203 $mform->setDefault('lti_sendname', '2');
204 $mform->addHelpButton('lti_sendname', 'share_name_admin', 'lti');
206 $mform->addElement('select', 'lti_sendemailaddr', get_string('share_email_admin', 'lti'), $options);
207 $mform->setType('lti_sendemailaddr', PARAM_INT);
208 $mform->setDefault('lti_sendemailaddr', '2');
209 $mform->addHelpButton('lti_sendemailaddr', 'share_email_admin', 'lti');
211 // LTI Extensions.
213 // Add grading preferences fieldset where the tool is allowed to return grades.
214 $mform->addElement('select', 'lti_acceptgrades', get_string('accept_grades_admin', 'lti'), $options);
215 $mform->setType('lti_acceptgrades', PARAM_INT);
216 $mform->setDefault('lti_acceptgrades', '2');
217 $mform->addHelpButton('lti_acceptgrades', 'accept_grades_admin', 'lti');
219 $mform->addElement('checkbox', 'lti_forcessl', '&nbsp;', ' ' . get_string('force_ssl', 'lti'), $options);
220 $mform->setType('lti_forcessl', PARAM_BOOL);
221 if (!empty($CFG->mod_lti_forcessl)) {
222 $mform->setDefault('lti_forcessl', '1');
223 $mform->freeze('lti_forcessl');
224 } else {
225 $mform->setDefault('lti_forcessl', '0');
227 $mform->addHelpButton('lti_forcessl', 'force_ssl', 'lti');
229 if (!empty($this->_customdata->isadmin)) {
230 // Add setup parameters fieldset.
231 $mform->addElement('header', 'setupoptions', get_string('miscellaneous', 'lti'));
233 // Adding option to change id that is placed in context_id.
234 $idoptions = array();
235 $idoptions[0] = get_string('id', 'lti');
236 $idoptions[1] = get_string('courseid', 'lti');
238 $mform->addElement('text', 'lti_organizationid', get_string('organizationid', 'lti'));
239 $mform->setType('lti_organizationid', PARAM_TEXT);
240 $mform->addHelpButton('lti_organizationid', 'organizationid', 'lti');
242 $mform->addElement('text', 'lti_organizationurl', get_string('organizationurl', 'lti'));
243 $mform->setType('lti_organizationurl', PARAM_URL);
244 $mform->addHelpButton('lti_organizationurl', 'organizationurl', 'lti');
248 /* Suppress this for now - Chuck
249 * mform->addElement('text', 'lti_organizationdescr', get_string('organizationdescr', 'lti'))
250 * mform->setType('lti_organizationdescr', PARAM_TEXT)
251 * mform->addHelpButton('lti_organizationdescr', 'organizationdescr', 'lti')
255 // Add a hidden element to signal a tool fixing operation after a problematic backup - restore process
256 //$mform->addElement('hidden', 'lti_fix');
259 $tab = optional_param('tab', '', PARAM_ALPHAEXT);
260 $mform->addElement('hidden', 'tab', $tab);
261 $mform->setType('tab', PARAM_ALPHAEXT);
263 $courseid = optional_param('course', 1, PARAM_INT);
264 $mform->addElement('hidden', 'course', $courseid);
265 $mform->setType('course', PARAM_INT);
267 // Add standard buttons, common to all modules.
268 $this->add_action_buttons();
273 * Retrieves the data of the submitted form.
275 * @return stdClass
277 public function get_data() {
278 $data = parent::get_data();
279 if ($data && !empty($this->_customdata->istool)) {
280 // Content item checkbox is disabled in tool settings, so this cannot be edited. Just unset it.
281 unset($data->lti_contentitem);
283 return $data;
287 * Generates the lti advantage extra configuration adding it to the mform
289 * @param MoodleQuickForm $mform
291 public function get_lti_advantage_services(&$mform) {
292 // For each service add the label and get the array of configuration.
293 $services = lti_get_services();
294 $mform->addElement('header', 'services', get_string('services', 'lti'));
295 foreach ($services as $service) {
296 /** @var \mod_lti\local\ltiservice\service_base $service */
297 $service->get_configuration_options($mform);