MDL-71242 core_course: Validate the value of the sort argument
[moodle.git] / mod / assign / gradingbatchoperationsform.php
blobd31b8bfb754d63f9c6a0b7c6d29fdd6a27bfff52
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 the forms to create and edit an instance of this module
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
25 defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
27 require_once($CFG->libdir.'/formslib.php');
28 require_once($CFG->dirroot . '/mod/assign/locallib.php');
30 /**
31 * Assignment grading options form
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
37 class mod_assign_grading_batch_operations_form extends moodleform {
38 /**
39 * Define this form - called by the parent constructor.
41 public function definition() {
42 $mform = $this->_form;
43 $instance = $this->_customdata;
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');
53 if (has_capability('mod/assign:editothersubmission', $instance['context'])) {
54 $options['removesubmission'] = get_string('removesubmission', 'assign');
56 if ($instance['duedate'] && has_capability('mod/assign:grantextension', $instance['context'])) {
57 $options['grantextension'] = get_string('grantextension', 'assign');
59 if ($instance['attemptreopenmethod'] == ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL) {
60 $options['addattempt'] = get_string('addattempt', 'assign');
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;
71 if ($instance['markingworkflow']) {
72 $options['setmarkingworkflowstate'] = get_string('setmarkingworkflowstate', 'assign');
74 if ($instance['markingallocation']) {
75 $options['setmarkingallocation'] = get_string('setmarkingallocation', 'assign');
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);
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);