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.
   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   * The tool_usertours tour_ended event.
  19   *
  20   * @package    tool_usertours
  21   * @copyright  2016 Andrew Nicols <andrew@nicols.co.uk>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  namespace tool_usertours\event;
  26  
  27  defined('MOODLE_INTERNAL') || die();
  28  
  29  /**
  30   * The tool_usertours tour_ended event.
  31   *
  32   * @package    tool_usertours
  33   * @copyright  2016 Andrew Nicols <andrew@nicols.co.uk>
  34   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  35   *
  36   * @property-read array $other {
  37   *      Extra information about the event.
  38   *
  39   *      - int       tourid:     The id of the tour
  40   *      - string    pageurl:    The URL of the page viewing the tour
  41   * }
  42   */
  43  class tour_ended extends \core\event\base {
  44  
  45      /**
  46       * Init method.
  47       */
  48      protected function init() {
  49          $this->data['crud'] = 'c';
  50          $this->data['edulevel'] = self::LEVEL_PARTICIPATING;
  51          $this->data['objecttable'] = 'tool_usertours_tours';
  52      }
  53  
  54      /**
  55       * Returns localised general event name.
  56       *
  57       * @return string
  58       */
  59      public static function get_name() {
  60          return get_string('event_tour_ended', 'tool_usertours');
  61      }
  62  
  63      /**
  64       * Custom validation.
  65       *
  66       * @throws \coding_exception
  67       * @return void
  68       */
  69      protected function validate_data() {
  70          parent::validate_data();
  71  
  72          if (!isset($this->other['stepindex'])) {
  73              throw new \coding_exception('The \'stepindex\' value must be set in other.');
  74          }
  75  
  76          if (!isset($this->other['stepid'])) {
  77              throw new \coding_exception('The \'stepid\' value must be set in other.');
  78          }
  79  
  80          if (!isset($this->other['pageurl'])) {
  81              throw new \coding_exception('The \'pageurl\' value must be set in other.');
  82          }
  83      }
  84  
  85      /**
  86       * This is used when restoring course logs where it is required that we
  87       * map the information in 'other' to it's new value in the new course.
  88       *
  89       * Does nothing in the base class except display a debugging message warning
  90       * the user that the event does not contain the required functionality to
  91       * map this information. For events that do not store any other information this
  92       * won't be called, so no debugging message will be displayed.
  93       *
  94       * @return array an array of other values and their corresponding mapping
  95       */
  96      public static function get_other_mapping() {
  97          return [
  98              'stepindex' => \core\event\base::NOT_MAPPED,
  99              'stepid'    => [
 100                  'db'        => 'tool_usertours_steps',
 101                  'restore'   => \core\event\base::NOT_MAPPED,
 102              ],
 103              'pageurl'   => \core\event\base::NOT_MAPPED,
 104          ];
 105      }
 106  
 107      /**
 108       * This is used when restoring course logs where it is required that we
 109       * map the objectid to it's new value in the new course.
 110       *
 111       * Does nothing in the base class except display a debugging message warning
 112       * the user that the event does not contain the required functionality to
 113       * map this information. For events that do not store an objectid this won't
 114       * be called, so no debugging message will be displayed.
 115       *
 116       * @return string the name of the restore mapping the objectid links to
 117       */
 118      public static function get_objectid_mapping() {
 119          return [
 120              'db'        => 'tool_usertours_tours',
 121              'restore'   => \core\event\base::NOT_MAPPED,
 122          ];
 123      }
 124  
 125      /**
 126       * Returns non-localised event description with id's for admin use only.
 127       *
 128       * @return string
 129       */
 130      public function get_description() {
 131          return "The user with id '{$this->userid}' has ended the tour with id " .
 132              "'{$this->objectid}' at step index " .
 133              "'{$this->other['stepindex']}' (id '{$this->other['stepid']}') on the page with URL " .
 134              "'{$this->other['pageurl']}'.";
 135      }
 136  
 137      /**
 138       * Returns relevant URL.
 139       *
 140       * @return \moodle_url
 141       */
 142      public function get_url() {
 143          return \tool_usertours\helper::get_view_tour_link($this->objectid);
 144      }
 145  }