Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
   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   * Rubric editor page
  19   *
  20   * @package    gradingform_rubric
  21   * @copyright  2011 Marina Glancy
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  require_once(__DIR__.'/../../../../config.php');
  26  require_once (__DIR__.'/lib.php');
  27  require_once (__DIR__.'/edit_form.php');
  28  require_once($CFG->dirroot.'/grade/grading/lib.php');
  29  
  30  $areaid = required_param('areaid', PARAM_INT);
  31  
  32  $manager = get_grading_manager($areaid);
  33  
  34  list($context, $course, $cm) = get_context_info_array($manager->get_context()->id);
  35  
  36  require_login($course, true, $cm);
  37  require_capability('moodle/grade:managegradingforms', $context);
  38  
  39  $controller = $manager->get_controller('rubric');
  40  
  41  $PAGE->set_url(new moodle_url('/grade/grading/form/rubric/edit.php', array('areaid' => $areaid)));
  42  $PAGE->set_title(get_string('definerubric', 'gradingform_rubric'));
  43  $PAGE->set_heading(get_string('definerubric', 'gradingform_rubric'));
  44  
  45  $mform = new gradingform_rubric_editrubric(null, array('areaid' => $areaid, 'context' => $context, 'allowdraft' => !$controller->has_active_instances()), 'post', '', array('class' => 'gradingform_rubric_editform'));
  46  $data = $controller->get_definition_for_editing(true);
  47  $returnurl = optional_param('returnurl', $manager->get_management_url(), PARAM_LOCALURL);
  48  $data->returnurl = $returnurl;
  49  $mform->set_data($data);
  50  if ($mform->is_cancelled()) {
  51      redirect($returnurl);
  52  } else if ($mform->is_submitted() && $mform->is_validated() && !$mform->need_confirm_regrading($controller)) {
  53      // Everything ok, validated, re-grading confirmed if needed. Make changes to the rubric.
  54      $data = $mform->get_data();
  55      $controller->update_definition($data);
  56  
  57      // If we do not go back to management url and the minscore warning needs to be displayed, display it during redirection.
  58      $warning = null;
  59      if (!empty($data->returnurl) && $data->returnurl !== $manager->get_management_url()->out(false)) {
  60          if (empty($data->rubric['options']['lockzeropoints']) && ($scores = $controller->get_min_max_score()) && $scores['minscore'] <> 0) {
  61              $warning = get_string('zerolevelsabsent', 'gradingform_rubric').'<br>'.
  62                  html_writer::link($manager->get_management_url(), get_string('back'));
  63          }
  64      }
  65      redirect($returnurl, $warning, null, \core\output\notification::NOTIFY_ERROR);
  66  }
  67  
  68  // Try to keep the session alive on this page as it may take some time
  69  // before significant interaction happens with the server.
  70  \core\session\manager::keepalive();
  71  
  72  echo $OUTPUT->header();
  73  $mform->display();
  74  echo $OUTPUT->footer();