Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

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