PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/mod/lti/edit_form.php

https://bitbucket.org/andrewdavidson/sl-clone
PHP | 177 lines | 75 code | 32 blank | 70 comment | 4 complexity | fa8b99e93f75d87958faca2ca8766490 MD5 | raw file
Possible License(s): AGPL-3.0, MPL-2.0-no-copyleft-exception, LGPL-3.0, Apache-2.0, GPL-3.0, BSD-3-Clause, LGPL-2.1
  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.
  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. //
  17. // This file is part of BasicLTI4Moodle
  18. //
  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.
  30. //
  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
  34. /**
  35. * This file defines de main basiclti configuration form
  36. *
  37. * @package mod
  38. * @subpackage 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
  48. */
  49. defined('MOODLE_INTERNAL') || die;
  50. require_once($CFG->libdir.'/formslib.php');
  51. require_once($CFG->dirroot.'/mod/lti/locallib.php');
  52. class mod_lti_edit_types_form extends moodleform{
  53. public function definition() {
  54. $mform =& $this->_form;
  55. //-------------------------------------------------------------------------------
  56. // Add basiclti elements
  57. $mform->addElement('header', 'setup', get_string('tool_settings', 'lti'));
  58. $mform->addElement('text', 'lti_typename', get_string('typename', 'lti'));
  59. $mform->setType('lti_typename', PARAM_TEXT);
  60. $mform->addHelpButton('lti_typename', 'typename', 'lti');
  61. $mform->addRule('lti_typename', null, 'required', null, 'client');
  62. $mform->addElement('text', 'lti_toolurl', get_string('toolurl', 'lti'), array('size'=>'64'));
  63. $mform->setType('lti_toolurl', PARAM_TEXT);
  64. $mform->addHelpButton('lti_toolurl', 'toolurl', 'lti');
  65. $mform->addRule('lti_toolurl', null, 'required', null, 'client');
  66. $mform->addElement('text', 'lti_resourcekey', get_string('resourcekey_admin', 'lti'));
  67. $mform->setType('lti_resourcekey', PARAM_TEXT);
  68. $mform->addHelpButton('lti_resourcekey', 'resourcekey_admin', 'lti');
  69. $mform->addElement('passwordunmask', 'lti_password', get_string('password_admin', 'lti'));
  70. $mform->setType('lti_password', PARAM_TEXT);
  71. $mform->addHelpButton('lti_password', 'password_admin', 'lti');
  72. $mform->addElement('textarea', 'lti_customparameters', get_string('custom', 'lti'), array('rows'=>4, 'cols'=>60));
  73. $mform->setType('lti_customparameters', PARAM_TEXT);
  74. $mform->addHelpButton('lti_customparameters', 'custom', 'lti');
  75. if (!empty($this->_customdata->isadmin)) {
  76. $mform->addElement('checkbox', 'lti_coursevisible', '&nbsp;', ' ' . get_string('show_in_course', 'lti'));
  77. $mform->addHelpButton('lti_coursevisible', 'show_in_course', 'lti');
  78. } else {
  79. $mform->addElement('hidden', 'lti_coursevisible', '1');
  80. }
  81. $mform->addElement('hidden', 'typeid');
  82. $launchoptions=array();
  83. $launchoptions[LTI_LAUNCH_CONTAINER_EMBED] = get_string('embed', 'lti');
  84. $launchoptions[LTI_LAUNCH_CONTAINER_EMBED_NO_BLOCKS] = get_string('embed_no_blocks', 'lti');
  85. $launchoptions[LTI_LAUNCH_CONTAINER_WINDOW] = get_string('new_window', 'lti');
  86. $mform->addElement('select', 'lti_launchcontainer', get_string('default_launch_container', 'lti'), $launchoptions);
  87. $mform->setDefault('lti_launchcontainer', LTI_LAUNCH_CONTAINER_EMBED_NO_BLOCKS);
  88. $mform->addHelpButton('lti_launchcontainer', 'default_launch_container', 'lti');
  89. // Add privacy preferences fieldset where users choose whether to send their data
  90. $mform->addElement('header', 'privacy', get_string('privacy', 'lti'));
  91. $options=array();
  92. $options[0] = get_string('never', 'lti');
  93. $options[1] = get_string('always', 'lti');
  94. $options[2] = get_string('delegate', 'lti');
  95. $mform->addElement('select', 'lti_sendname', get_string('share_name_admin', 'lti'), $options);
  96. $mform->setDefault('lti_sendname', '2');
  97. $mform->addHelpButton('lti_sendname', 'share_name_admin', 'lti');
  98. $mform->addElement('select', 'lti_sendemailaddr', get_string('share_email_admin', 'lti'), $options);
  99. $mform->setDefault('lti_sendemailaddr', '2');
  100. $mform->addHelpButton('lti_sendemailaddr', 'share_email_admin', 'lti');
  101. //-------------------------------------------------------------------------------
  102. // LTI Extensions
  103. // Add grading preferences fieldset where the tool is allowed to return grades
  104. $mform->addElement('select', 'lti_acceptgrades', get_string('accept_grades_admin', 'lti'), $options);
  105. $mform->setDefault('lti_acceptgrades', '2');
  106. $mform->addHelpButton('lti_acceptgrades', 'accept_grades_admin', 'lti');
  107. // Add grading preferences fieldset where the tool is allowed to retrieve rosters
  108. //$mform->addElement('select', 'lti_allowroster', get_string('share_roster_admin', 'lti'), $options);
  109. //$mform->setDefault('lti_allowroster', '2');
  110. //$mform->addHelpButton('lti_allowroster', 'share_roster_admin', 'lti');
  111. $mform->addElement('checkbox', 'lti_forcessl', '&nbsp;', ' ' . get_string('force_ssl', 'lti'), $options);
  112. $mform->setDefault('lti_forcessl', '0');
  113. $mform->addHelpButton('lti_forcessl', 'force_ssl', 'lti');
  114. if (!empty($this->_customdata->isadmin)) {
  115. //-------------------------------------------------------------------------------
  116. // Add setup parameters fieldset
  117. $mform->addElement('header', 'setupoptions', get_string('miscellaneous', 'lti'));
  118. // Adding option to change id that is placed in context_id
  119. $idoptions = array();
  120. $idoptions[0] = get_string('id', 'lti');
  121. $idoptions[1] = get_string('courseid', 'lti');
  122. $mform->addElement('text', 'lti_organizationid', get_string('organizationid', 'lti'));
  123. $mform->setType('lti_organizationid', PARAM_TEXT);
  124. $mform->addHelpButton('lti_organizationid', 'organizationid', 'lti');
  125. $mform->addElement('text', 'lti_organizationurl', get_string('organizationurl', 'lti'));
  126. $mform->setType('lti_organizationurl', PARAM_TEXT);
  127. $mform->addHelpButton('lti_organizationurl', 'organizationurl', 'lti');
  128. }
  129. /* Suppress this for now - Chuck
  130. $mform->addElement('text', 'lti_organizationdescr', get_string('organizationdescr', 'lti'));
  131. $mform->setType('lti_organizationdescr', PARAM_TEXT);
  132. $mform->addHelpButton('lti_organizationdescr', 'organizationdescr', 'lti');
  133. */
  134. //-------------------------------------------------------------------------------
  135. // Add a hidden element to signal a tool fixing operation after a problematic backup - restore process
  136. //$mform->addElement('hidden', 'lti_fix');
  137. $tab = optional_param('tab', '', PARAM_ALPHAEXT);
  138. $mform->addElement('hidden', 'tab', $tab);
  139. $courseid = optional_param('course', 1, PARAM_INT);
  140. $mform->addElement('hidden', 'course', $courseid);
  141. //-------------------------------------------------------------------------------
  142. // Add standard buttons, common to all modules
  143. $this->add_action_buttons();
  144. }
  145. }