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
 
28
require_once($CFG->libdir.'/formslib.php');
29
require_once($CFG->dirroot . '/mod/assign/locallib.php');
30
 
31
/**
32
 * Assignment extension dates form
33
 *
34
 * @package   mod_assign
35
 * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
36
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 */
38
class mod_assign_extension_form extends moodleform {
39
    /** @var array $instance - The data passed to this form */
40
    private $instance;
41
 
42
    /**
43
     * Define the form - called by parent constructor
44
     */
45
    public function definition() {
46
        global $DB;
47
 
48
        $mform = $this->_form;
49
        $params = $this->_customdata;
50
 
51
        // Instance variable is used by the form validation function.
52
        $instance = $params['instance'];
53
        $this->instance = $instance;
54
 
55
        // Get the assignment class.
56
        $assign = $params['assign'];
57
        $userlist = $params['userlist'];
58
        $usercount = 0;
59
        $usershtml = '';
60
 
61
        // TODO Does not support custom user profile fields (MDL-70456).
62
        $extrauserfields = \core_user\fields::get_identity_fields($assign->get_context(), false);
63
        foreach ($userlist as $userid) {
64
            if ($usercount >= 5) {
65
                $usershtml .= get_string('moreusers', 'assign', count($userlist) - 5);
66
                break;
67
            }
68
            $user = $DB->get_record('user', array('id' => $userid), '*', MUST_EXIST);
69
 
70
            $usershtml .= $assign->get_renderer()->render(new assign_user_summary($user,
71
                                                                    $assign->get_course()->id,
72
                                                                    has_capability('moodle/site:viewfullnames',
73
                                                                    $assign->get_course_context()),
74
                                                                    $assign->is_blind_marking(),
75
                                                                    $assign->get_uniqueid_for_user($user->id),
76
                                                                    $extrauserfields,
77
                                                                    !$assign->is_active_user($userid)));
78
                $usercount += 1;
79
        }
80
 
81
        $userscount = count($userlist);
82
 
83
        $listusersmessage = get_string('grantextensionforusers', 'assign', $userscount);
84
        $mform->addElement('header', 'general', $listusersmessage);
85
        $mform->addElement('static', 'userslist', get_string('selectedusers', 'assign'), $usershtml);
86
 
87
        if ($instance->allowsubmissionsfromdate) {
88
            $mform->addElement('static', 'allowsubmissionsfromdate', get_string('allowsubmissionsfromdate', 'assign'),
89
                               userdate($instance->allowsubmissionsfromdate));
90
        }
91
 
92
        $finaldate = 0;
93
        if ($instance->duedate) {
94
            $mform->addElement('static', 'duedate', get_string('duedate', 'assign'), userdate($instance->duedate));
95
            $finaldate = $instance->duedate;
96
        }
97
        if ($instance->cutoffdate) {
98
            $mform->addElement('static', 'cutoffdate', get_string('cutoffdate', 'assign'), userdate($instance->cutoffdate));
99
            $finaldate = $instance->cutoffdate;
100
        }
101
        $mform->addElement('date_time_selector', 'extensionduedate',
102
                           get_string('extensionduedate', 'assign'), array('optional'=>true));
103
        $mform->setDefault('extensionduedate', $finaldate);
104
 
105
        $mform->addElement('hidden', 'id');
106
        $mform->setType('id', PARAM_INT);
107
        $mform->addElement('hidden', 'userid');
108
        $mform->setType('userid', PARAM_INT);
109
        $mform->addElement('hidden', 'selectedusers');
110
        $mform->setType('selectedusers', PARAM_SEQUENCE);
111
        $mform->addElement('hidden', 'action', 'saveextension');
112
        $mform->setType('action', PARAM_ALPHA);
113
 
114
        $this->add_action_buttons(true, get_string('savechanges', 'assign'));
115
    }
116
 
117
    /**
118
     * Perform validation on the extension form
119
     * @param array $data
120
     * @param array $files
121
     */
122
    public function validation($data, $files) {
123
        $errors = parent::validation($data, $files);
124
        if ($this->instance->duedate && $data['extensionduedate']) {
125
            if ($this->instance->duedate > $data['extensionduedate']) {
126
                $errors['extensionduedate'] = get_string('extensionnotafterduedate', 'assign');
127
            }
128
        }
129
        if ($this->instance->allowsubmissionsfromdate && $data['extensionduedate']) {
130
            if ($this->instance->allowsubmissionsfromdate > $data['extensionduedate']) {
131
                $errors['extensionduedate'] = get_string('extensionnotafterfromdate', 'assign');
132
            }
133
        }
134
 
135
        return $errors;
136
    }
137
}