PageRenderTime 36ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/mod/assign/gradingbatchoperationsform.php

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