PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/mod/assign/gradingbatchoperationsform.php

https://bitbucket.org/synergylearning/campusconnect
PHP | 90 lines | 49 code | 9 blank | 32 comment | 10 complexity | 80bb24d6c88753fe0e7ea7ff0ea65d3a MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, LGPL-3.0, GPL-3.0, LGPL-2.1, Apache-2.0, BSD-3-Clause, AGPL-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. if ($instance['submissiondrafts']) {
  45. $options['reverttodraft'] = get_string('reverttodraft', 'assign');
  46. }
  47. if ($instance['duedate'] && has_capability('mod/assign:grantextension', $instance['context'])) {
  48. $options['grantextension'] = get_string('grantextension', 'assign');
  49. }
  50. if ($instance['attemptreopenmethod'] == ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL) {
  51. $options['addattempt'] = get_string('addattempt', 'assign');
  52. }
  53. foreach ($instance['feedbackplugins'] as $plugin) {
  54. if ($plugin->is_visible() && $plugin->is_enabled()) {
  55. foreach ($plugin->get_grading_batch_operations() as $action => $description) {
  56. $operationkey = 'plugingradingbatchoperation_' . $plugin->get_type() . '_' . $action;
  57. $options[$operationkey] = $description;
  58. }
  59. }
  60. }
  61. if ($instance['markingworkflow']) {
  62. $options['setmarkingworkflowstate'] = get_string('setmarkingworkflowstate', 'assign');
  63. }
  64. if ($instance['markingallocation']) {
  65. $options['setmarkingallocation'] = get_string('setmarkingallocation', 'assign');
  66. }
  67. $mform->addElement('hidden', 'action', 'gradingbatchoperation');
  68. $mform->setType('action', PARAM_ALPHA);
  69. $mform->addElement('hidden', 'id', $instance['cm']);
  70. $mform->setType('id', PARAM_INT);
  71. $mform->addElement('hidden', 'selectedusers', '', array('class'=>'selectedusers'));
  72. $mform->setType('selectedusers', PARAM_SEQUENCE);
  73. $mform->addElement('hidden', 'returnaction', 'grading');
  74. $mform->setType('returnaction', PARAM_ALPHA);
  75. $objs = array();
  76. $objs[] =& $mform->createElement('select', 'operation', get_string('chooseoperation', 'assign'), $options);
  77. $objs[] =& $mform->createElement('submit', 'submit', get_string('go'));
  78. $batchdescription = get_string('batchoperationsdescription', 'assign');
  79. $mform->addElement('group', 'actionsgrp', $batchdescription, $objs, ' ', false);
  80. }
  81. }