Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403]

   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   * Page for editing badges criteria settings.
  19   *
  20   * @package    core
  21   * @subpackage badges
  22   * @copyright  2013 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   * @author     Yuliya Bozhko <yuliya.bozhko@totaralms.com>
  25   */
  26  
  27  require_once(__DIR__ . '/../config.php');
  28  require_once($CFG->libdir . '/badgeslib.php');
  29  require_once($CFG->dirroot . '/badges/criteria_form.php');
  30  
  31  $badgeid = optional_param('badgeid', 0, PARAM_INT); // Badge ID.
  32  $type    = optional_param('type', 0, PARAM_INT); // Criteria type.
  33  $edit    = optional_param('edit', 0, PARAM_INT); // Edit criteria ID.
  34  $crit    = optional_param('crit', 0, PARAM_INT); // Criteria ID for managing params.
  35  $param   = optional_param('param', '', PARAM_TEXT); // Param name for managing params.
  36  $goback    = optional_param('cancel', '', PARAM_TEXT);
  37  $addcourse = optional_param('addcourse', '', PARAM_TEXT);
  38  $submitcourse = optional_param('submitcourse', '', PARAM_TEXT);
  39  
  40  require_login();
  41  
  42  $return = new moodle_url('/badges/criteria.php', array('id' => $badgeid));
  43  $badge = new badge($badgeid);
  44  $context = $badge->get_context();
  45  $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type));
  46  
  47  require_capability('moodle/badges:configurecriteria', $context);
  48  
  49  if (!empty($goback)) {
  50      redirect($return);
  51  }
  52  
  53  // Make sure that no actions available for locked or active badges.
  54  if ($badge->is_active() || $badge->is_locked()) {
  55      redirect($return);
  56  }
  57  
  58  // Make sure the criteria type is accepted.
  59  $accepted = $badge->get_accepted_criteria();
  60  if (!in_array($type, $accepted)) {
  61      redirect($return);
  62  }
  63  
  64  if ($badge->type == BADGE_TYPE_COURSE) {
  65      require_login($badge->courseid);
  66      $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type, 'id' => $badge->courseid));
  67      $PAGE->set_pagelayout('standard');
  68      navigation_node::override_active_url($navurl);
  69  } else {
  70      $PAGE->set_pagelayout('admin');
  71      navigation_node::override_active_url($navurl, true);
  72  }
  73  
  74  $urlparams = array('badgeid' => $badgeid, 'edit' => $edit, 'type' => $type, 'crit' => $crit);
  75  $PAGE->set_context($context);
  76  $PAGE->set_url('/badges/criteria_settings.php', $urlparams);
  77  $PAGE->set_heading($badge->name);
  78  $PAGE->set_title($badge->name);
  79  $PAGE->navbar->add($badge->name, new moodle_url('overview.php', array('id' => $badge->id)))->add(get_string('criteria_' . $type, 'badges'));
  80  
  81  $cparams = array('criteriatype' => $type, 'badgeid' => $badge->id);
  82  if ($edit) {
  83      $criteria = $badge->criteria[$type];
  84      $msg = 'criteriaupdated';
  85  } else {
  86      $criteria = award_criteria::build($cparams);
  87      $msg = 'criteriacreated';
  88  }
  89  
  90  $mform = new edit_criteria_form($FULLME, array('criteria' => $criteria, 'addcourse' => $addcourse, 'course' => $badge->courseid));
  91  
  92  if (!empty($addcourse)) {
  93      if ($data = $mform->get_data()) {
  94          // If no criteria yet, add overall aggregation.
  95          if (count($badge->criteria) == 0) {
  96              $criteria_overall = award_criteria::build(array('criteriatype' => BADGE_CRITERIA_TYPE_OVERALL, 'badgeid' => $badge->id));
  97              $criteria_overall->save(array('agg' => BADGE_CRITERIA_AGGREGATION_ALL));
  98          }
  99  
 100          $id = $criteria->add_courses($data->courses);
 101          redirect(new moodle_url('/badges/criteria_settings.php',
 102              array('badgeid' => $badgeid, 'edit' => true, 'type' => BADGE_CRITERIA_TYPE_COURSESET, 'crit' => $id)));
 103      }
 104  } else if ($data = $mform->get_data()) {
 105      // If no criteria yet, add overall aggregation.
 106      if (count($badge->criteria) == 0) {
 107          $criteria_overall = award_criteria::build(array('criteriatype' => BADGE_CRITERIA_TYPE_OVERALL, 'badgeid' => $badge->id));
 108          $criteria_overall->save(array('agg' => BADGE_CRITERIA_AGGREGATION_ALL));
 109      }
 110      $criteria->save((array)$data);
 111      $return->param('msg', $msg);
 112      redirect($return);
 113  }
 114  
 115  echo $OUTPUT->header();
 116  $mform->display();
 117  echo $OUTPUT->footer();