Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 402] [Versions 311 and 403]

   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   * This file contains the forms to create and edit an instance of this module
  19   *
  20   * @package   mod_assign
  21   * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
  26  
  27  require_once($CFG->libdir.'/formslib.php');
  28  require_once($CFG->dirroot . '/mod/assign/locallib.php');
  29  
  30  /**
  31   * Assignment grading options form
  32   *
  33   * @package   mod_assign
  34   * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
  35   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  36   */
  37  class mod_assign_grading_batch_operations_form extends moodleform {
  38      /**
  39       * Define this form - called by the parent constructor.
  40       */
  41      public function definition() {
  42          $mform = $this->_form;
  43          $instance = $this->_customdata;
  44  
  45          // Visible elements.
  46          $options = array();
  47          $options['lock'] = get_string('locksubmissions', 'assign');
  48          $options['unlock'] = get_string('unlocksubmissions', 'assign');
  49          $options['downloadselected'] = get_string('downloadselectedsubmissions', 'assign');
  50          if ($instance['submissiondrafts']) {
  51              $options['reverttodraft'] = get_string('reverttodraft', 'assign');
  52          }
  53          if (has_capability('mod/assign:editothersubmission', $instance['context'])) {
  54              $options['removesubmission'] = get_string('removesubmission', 'assign');
  55          }
  56          if ($instance['duedate'] && has_capability('mod/assign:grantextension', $instance['context'])) {
  57              $options['grantextension'] = get_string('grantextension', 'assign');
  58          }
  59          if ($instance['attemptreopenmethod'] == ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL) {
  60              $options['addattempt'] = get_string('addattempt', 'assign');
  61          }
  62  
  63          foreach ($instance['feedbackplugins'] as $plugin) {
  64              if ($plugin->is_visible() && $plugin->is_enabled()) {
  65                  foreach ($plugin->get_grading_batch_operations() as $action => $description) {
  66                      $operationkey = 'plugingradingbatchoperation_' . $plugin->get_type() . '_' . $action;
  67                      $options[$operationkey] = $description;
  68                  }
  69              }
  70          }
  71          if ($instance['markingworkflow']) {
  72              $options['setmarkingworkflowstate'] = get_string('setmarkingworkflowstate', 'assign');
  73          }
  74          if ($instance['markingallocation']) {
  75              $options['setmarkingallocation'] = get_string('setmarkingallocation', 'assign');
  76          }
  77  
  78          $mform->addElement('hidden', 'action', 'gradingbatchoperation');
  79          $mform->setType('action', PARAM_ALPHA);
  80          $mform->addElement('hidden', 'id', $instance['cm']);
  81          $mform->setType('id', PARAM_INT);
  82          $mform->addElement('hidden', 'selectedusers', '', array('class'=>'selectedusers'));
  83          $mform->setType('selectedusers', PARAM_SEQUENCE);
  84          $mform->addElement('hidden', 'returnaction', 'grading');
  85          $mform->setType('returnaction', PARAM_ALPHA);
  86  
  87          $objs = array();
  88          $objs[] =& $mform->createElement('select', 'operation', get_string('chooseoperation', 'assign'), $options);
  89          $objs[] =& $mform->createElement('submit', 'submit', get_string('go'));
  90          $batchdescription = get_string('batchoperationsdescription', 'assign');
  91          $mform->addElement('group', 'actionsgrp', $batchdescription, $objs, ' ', false);
  92      }
  93  }
  94