[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
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 if ($instance['submissiondrafts']) { 50 $options['reverttodraft'] = get_string('reverttodraft', 'assign'); 51 } 52 if ($instance['duedate'] && has_capability('mod/assign:grantextension', $instance['context'])) { 53 $options['grantextension'] = get_string('grantextension', 'assign'); 54 } 55 if ($instance['attemptreopenmethod'] == ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL) { 56 $options['addattempt'] = get_string('addattempt', 'assign'); 57 } 58 59 foreach ($instance['feedbackplugins'] as $plugin) { 60 if ($plugin->is_visible() && $plugin->is_enabled()) { 61 foreach ($plugin->get_grading_batch_operations() as $action => $description) { 62 $operationkey = 'plugingradingbatchoperation_' . $plugin->get_type() . '_' . $action; 63 $options[$operationkey] = $description; 64 } 65 } 66 } 67 if ($instance['markingworkflow']) { 68 $options['setmarkingworkflowstate'] = get_string('setmarkingworkflowstate', 'assign'); 69 } 70 if ($instance['markingallocation']) { 71 $options['setmarkingallocation'] = get_string('setmarkingallocation', 'assign'); 72 } 73 74 $mform->addElement('hidden', 'action', 'gradingbatchoperation'); 75 $mform->setType('action', PARAM_ALPHA); 76 $mform->addElement('hidden', 'id', $instance['cm']); 77 $mform->setType('id', PARAM_INT); 78 $mform->addElement('hidden', 'selectedusers', '', array('class'=>'selectedusers')); 79 $mform->setType('selectedusers', PARAM_SEQUENCE); 80 $mform->addElement('hidden', 'returnaction', 'grading'); 81 $mform->setType('returnaction', PARAM_ALPHA); 82 83 $objs = array(); 84 $objs[] =& $mform->createElement('select', 'operation', get_string('chooseoperation', 'assign'), $options); 85 $objs[] =& $mform->createElement('submit', 'submit', get_string('go')); 86 $batchdescription = get_string('batchoperationsdescription', 'assign'); 87 $mform->addElement('group', 'actionsgrp', $batchdescription, $objs, ' ', false); 88 } 89 } 90
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |