Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.

Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 39 and 402] [Versions 400 and 402] [Versions 401 and 402]

   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  /**
  18   * Settings form for overrides in the lesson module.
  19   *
  20   * @package    mod_lesson
  21   * @copyright  2015 Jean-Michel Vedrine
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  
  26  defined('MOODLE_INTERNAL') || die();
  27  
  28  require_once($CFG->libdir . '/formslib.php');
  29  require_once($CFG->dirroot . '/mod/lesson/mod_form.php');
  30  
  31  
  32  /**
  33   * Form for editing settings overrides.
  34   *
  35   * @copyright  2015 Jean-Michel Vedrine
  36   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  37   */
  38  class lesson_override_form extends moodleform {
  39  
  40      /** @var object course module object. */
  41      protected $cm;
  42  
  43      /** @var object the lesson settings object. */
  44      protected $lesson;
  45  
  46      /** @var context the lesson context. */
  47      protected $context;
  48  
  49      /** @var bool editing group override (true) or user override (false). */
  50      protected $groupmode;
  51  
  52      /** @var int groupid, if provided. */
  53      protected $groupid;
  54  
  55      /** @var int userid, if provided. */
  56      protected $userid;
  57  
  58      /**
  59       * Constructor.
  60       * @param moodle_url $submiturl the form action URL.
  61       * @param object $cm course module object.
  62       * @param object $lesson the lesson settings object.
  63       * @param object $context the lesson context.
  64       * @param bool $groupmode editing group override (true) or user override (false).
  65       * @param object $override the override being edited, if it already exists.
  66       */
  67      public function __construct($submiturl, $cm, $lesson, $context, $groupmode, $override) {
  68  
  69          $this->cm = $cm;
  70          $this->lesson = $lesson;
  71          $this->context = $context;
  72          $this->groupmode = $groupmode;
  73          $this->groupid = empty($override->groupid) ? 0 : $override->groupid;
  74          $this->userid = empty($override->userid) ? 0 : $override->userid;
  75  
  76          parent::__construct($submiturl, null, 'post');
  77  
  78      }
  79  
  80      /**
  81       * Define this form - called by the parent constructor
  82       */
  83      protected function definition() {
  84          global $DB;
  85  
  86          $cm = $this->cm;
  87          $mform = $this->_form;
  88  
  89          $mform->addElement('header', 'override', get_string('override', 'lesson'));
  90  
  91          $lessongroupmode = groups_get_activity_groupmode($cm);
  92          $accessallgroups = ($lessongroupmode == NOGROUPS) || has_capability('moodle/site:accessallgroups', $this->context);
  93  
  94          if ($this->groupmode) {
  95              // Group override.
  96              if ($this->groupid) {
  97                  // There is already a groupid, so freeze the selector.
  98                  $groupchoices = [
  99                      $this->groupid => format_string(groups_get_group_name($this->groupid), true, ['context' => $this->context]),
 100                  ];
 101                  $mform->addElement('select', 'groupid',
 102                          get_string('overridegroup', 'lesson'), $groupchoices);
 103                  $mform->freeze('groupid');
 104              } else {
 105                  // Prepare the list of groups.
 106                  // Only include the groups the current can access.
 107                  $groups = $accessallgroups ? groups_get_all_groups($cm->course) :  groups_get_activity_allowed_groups($cm);
 108                  if (empty($groups)) {
 109                      // Generate an error.
 110                      $link = new moodle_url('/mod/lesson/overrides.php', array('cmid' => $cm->id));
 111                      throw new \moodle_exception('groupsnone', 'lesson', $link);
 112                  }
 113  
 114                  $groupchoices = array();
 115                  foreach ($groups as $group) {
 116                      if ($group->visibility != GROUPS_VISIBILITY_NONE) {
 117                          $groupchoices[$group->id] = format_string($group->name, true, ['context' => $this->context]);
 118                      }
 119                  }
 120                  unset($groups);
 121  
 122                  if (count($groupchoices) == 0) {
 123                      $groupchoices[0] = get_string('none');
 124                  }
 125  
 126                  $mform->addElement('select', 'groupid',
 127                          get_string('overridegroup', 'lesson'), $groupchoices);
 128                  $mform->addRule('groupid', get_string('required'), 'required', null, 'client');
 129              }
 130          } else {
 131              // User override.
 132              if ($this->userid) {
 133                  // There is already a userid, so freeze the selector.
 134                  $user = $DB->get_record('user', array('id' => $this->userid));
 135                  $userchoices = array();
 136                  $userchoices[$this->userid] = fullname($user);
 137                  $mform->addElement('select', 'userid',
 138                          get_string('overrideuser', 'lesson'), $userchoices);
 139                  $mform->freeze('userid');
 140              } else {
 141                  // Prepare the list of users.
 142                  $users = [];
 143                  list($sort) = users_order_by_sql('u');
 144  
 145                  // Get the list of appropriate users, depending on whether and how groups are used.
 146                  $userfieldsapi = \core_user\fields::for_name();
 147                  $userfields = 'u.id, u.email, ' . $userfieldsapi->get_sql('u', false, '', '', false)->selects;
 148                  $groupids = 0;
 149                  if (!$accessallgroups) {
 150                      $groups = groups_get_activity_allowed_groups($cm);
 151                      $groupids = array_keys($groups);
 152                  }
 153                  $users = get_enrolled_users($this->context, '',
 154                          $groupids, $userfields, $sort);
 155  
 156                  // Filter users based on any fixed restrictions (groups, profile).
 157                  $info = new \core_availability\info_module($cm);
 158                  $users = $info->filter_user_list($users);
 159  
 160                  if (empty($users)) {
 161                      // Generate an error.
 162                      $link = new moodle_url('/mod/lesson/overrides.php', array('cmid' => $cm->id));
 163                      throw new \moodle_exception('usersnone', 'lesson', $link);
 164                  }
 165  
 166                  $userchoices = array();
 167                  // TODO Does not support custom user profile fields (MDL-70456).
 168                  $canviewemail = in_array('email', \core_user\fields::get_identity_fields($this->context, false));
 169                  foreach ($users as $id => $user) {
 170                      if (empty($invalidusers[$id]) || (!empty($override) &&
 171                              $id == $override->userid)) {
 172                          if ($canviewemail) {
 173                              $userchoices[$id] = fullname($user) . ', ' . $user->email;
 174                          } else {
 175                              $userchoices[$id] = fullname($user);
 176                          }
 177                      }
 178                  }
 179                  unset($users);
 180  
 181                  if (count($userchoices) == 0) {
 182                      $userchoices[0] = get_string('none');
 183                  }
 184                  $mform->addElement('searchableselector', 'userid',
 185                          get_string('overrideuser', 'lesson'), $userchoices);
 186                  $mform->addRule('userid', get_string('required'), 'required', null, 'client');
 187              }
 188          }
 189  
 190          // Password.
 191          // This field has to be above the date and timelimit fields,
 192          // otherwise browsers will clear it when those fields are changed.
 193          $mform->addElement('passwordunmask', 'password', get_string('usepassword', 'lesson'));
 194          $mform->setType('password', PARAM_TEXT);
 195          $mform->addHelpButton('password', 'usepassword', 'lesson');
 196          $mform->setDefault('password', $this->lesson->password);;
 197  
 198          // Open and close dates.
 199          $mform->addElement('date_time_selector', 'available', get_string('available', 'lesson'), array('optional' => true));
 200          $mform->setDefault('available', $this->lesson->available);
 201  
 202          $mform->addElement('date_time_selector', 'deadline', get_string('deadline', 'lesson'), array('optional' => true));
 203          $mform->setDefault('deadline', $this->lesson->deadline);
 204  
 205          // Lesson time limit.
 206          $mform->addElement('duration', 'timelimit',
 207                  get_string('timelimit', 'lesson'), array('optional' => true));
 208          if ($this->lesson->timelimit != 0) {
 209              $mform->setDefault('timelimit', 0);
 210          } else {
 211              $mform->setDefault('timelimit', $this->lesson->timelimit);
 212          }
 213  
 214          // Try a question again.
 215          $mform->addElement('selectyesno', 'review', get_string('displayreview', 'lesson'));
 216          $mform->addHelpButton('review', 'displayreview', 'lesson');
 217          $mform->setDefault('review', $this->lesson->review);
 218  
 219          // Number of attempts.
 220          $numbers = ['0' => get_string('unlimited')];
 221          for ($i = 10; $i > 0; $i--) {
 222              $numbers[$i] = $i;
 223          }
 224          $mform->addElement('select', 'maxattempts', get_string('maximumnumberofattempts', 'lesson'), $numbers);
 225          $mform->addHelpButton('maxattempts', 'maximumnumberofattempts', 'lesson');
 226          $mform->setDefault('maxattempts', $this->lesson->maxattempts);
 227  
 228          // Retake allowed.
 229          $mform->addElement('selectyesno', 'retake', get_string('retakesallowed', 'lesson'));
 230          $mform->addHelpButton('retake', 'retakesallowed', 'lesson');
 231          $mform->setDefault('retake', $this->lesson->retake);
 232  
 233          // Submit buttons.
 234          $mform->addElement('submit', 'resetbutton',
 235                  get_string('reverttodefaults', 'lesson'));
 236  
 237          $buttonarray = array();
 238          $buttonarray[] = $mform->createElement('submit', 'submitbutton',
 239                  get_string('save', 'lesson'));
 240          $buttonarray[] = $mform->createElement('submit', 'againbutton',
 241                  get_string('saveoverrideandstay', 'lesson'));
 242          $buttonarray[] = $mform->createElement('cancel');
 243  
 244          $mform->addGroup($buttonarray, 'buttonbar', '', array(' '), false);
 245          $mform->closeHeaderBefore('buttonbar');
 246  
 247      }
 248  
 249      /**
 250       * Validate the submitted form data.
 251       *
 252       * @param array $data array of ("fieldname"=>value) of submitted data
 253       * @param array $files array of uploaded files "element_name"=>tmp_file_path
 254       * @return array of "element_name"=>"error_description" if there are errors
 255       */
 256      public function validation($data, $files) {
 257          $errors = parent::validation($data, $files);
 258  
 259          $mform =& $this->_form;
 260          $lesson = $this->lesson;
 261  
 262          if ($mform->elementExists('userid')) {
 263              if (empty($data['userid'])) {
 264                  $errors['userid'] = get_string('required');
 265              }
 266          }
 267  
 268          if ($mform->elementExists('groupid')) {
 269              if (empty($data['groupid'])) {
 270                  $errors['groupid'] = get_string('required');
 271              }
 272          }
 273  
 274          // Ensure that the dates make sense.
 275          if (!empty($data['available']) && !empty($data['deadline'])) {
 276              if ($data['deadline'] < $data['available'] ) {
 277                  $errors['deadline'] = get_string('closebeforeopen', 'lesson');
 278              }
 279          }
 280  
 281          // Ensure that at least one lesson setting was changed.
 282          $changed = false;
 283          $keys = array('available', 'deadline', 'review', 'timelimit', 'maxattempts', 'retake', 'password');
 284          foreach ($keys as $key) {
 285              if ($data[$key] != $lesson->{$key}) {
 286                  $changed = true;
 287                  break;
 288              }
 289          }
 290  
 291          if (!$changed) {
 292              $errors['available'] = get_string('nooverridedata', 'lesson');
 293          }
 294  
 295          return $errors;
 296      }
 297  }