[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/grade/grading/form/rubric/ -> edit.php (source)

   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      $controller->update_definition($mform->get_data());
  55      redirect($returnurl);
  56  }
  57  
  58  echo $OUTPUT->header();
  59  $mform->display();
  60  echo $OUTPUT->footer();


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1