Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 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
        global $CFG;
43
        $mform = $this->_form;
44
        $instance = $this->_customdata;
45
 
46
        // Visible elements.
47
        $options = array();
48
        $options['lock'] = get_string('locksubmissions', 'assign');
49
        $options['unlock'] = get_string('unlocksubmissions', 'assign');
50
        if (!empty($CFG->messaging) &&
51
            has_all_capabilities(['moodle/site:sendmessage', 'moodle/course:bulkmessaging'], $instance['context'])
52
        ) {
53
            $options['message'] = get_string('messageselectadd');
54
        }
55
        $options['downloadselected'] = get_string('downloadselectedsubmissions', 'assign');
56
        if ($instance['submissiondrafts']) {
57
            $options['reverttodraft'] = get_string('reverttodraft', 'assign');
58
        }
59
        if (has_capability('mod/assign:editothersubmission', $instance['context'])) {
60
            $options['removesubmission'] = get_string('removesubmission', 'assign');
61
        }
62
        if ($instance['duedate'] && has_capability('mod/assign:grantextension', $instance['context'])) {
63
            $options['grantextension'] = get_string('grantextension', 'assign');
64
        }
65
        if ($instance['attemptreopenmethod'] == ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL) {
66
            $options['addattempt'] = get_string('addattempt', 'assign');
67
        }
68
 
69
        foreach ($instance['feedbackplugins'] as $plugin) {
70
            if ($plugin->is_visible() && $plugin->is_enabled()) {
71
                foreach ($plugin->get_grading_batch_operations() as $action => $description) {
72
                    $operationkey = 'plugingradingbatchoperation_' . $plugin->get_type() . '_' . $action;
73
                    $options[$operationkey] = $description;
74
                }
75
            }
76
        }
77
        if ($instance['markingworkflow']) {
78
            $options['setmarkingworkflowstate'] = get_string('setmarkingworkflowstate', 'assign');
79
        }
80
        if ($instance['markingallocation']) {
81
            $options['setmarkingallocation'] = get_string('setmarkingallocation', 'assign');
82
        }
83
 
84
        $mform->addElement('hidden', 'action', 'gradingbatchoperation');
85
        $mform->setType('action', PARAM_ALPHA);
86
        $mform->addElement('hidden', 'id', $instance['cm']);
87
        $mform->setType('id', PARAM_INT);
88
        $mform->addElement('hidden', 'selectedusers', '', array('class'=>'selectedusers'));
89
        $mform->setType('selectedusers', PARAM_SEQUENCE);
90
        $mform->addElement('hidden', 'returnaction', 'grading');
91
        $mform->setType('returnaction', PARAM_ALPHA);
92
 
93
        $objs = array();
94
        $objs[] =& $mform->createElement('select', 'operation', get_string('chooseoperation', 'assign'), $options);
95
        $objs[] =& $mform->createElement('submit', 'submit', get_string('go'));
96
        $batchdescription = get_string('batchoperationsdescription', 'assign');
97
        $mform->addElement('group', 'actionsgrp', $batchdescription, $objs, ' ', false);
98
    }
99
}
100