Merge branch 'MDL-57742_master' of git://github.com/markn86/moodle
[moodle.git] / lib / classes / event / course_module_instance_list_viewed.php
blobf1437bca6fb0ded16d483a8d2339d72447d5f463
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.
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/>.
17 /**
18 * Course module instance list viewed event.
20 * @package core
21 * @copyright 2013 onwards Ankit Agarwal
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 namespace core\event;
26 defined('MOODLE_INTERNAL') || die();
28 /**
29 * Course module instance list viewed event class.
31 * This is an abstract to guide the developers in using this event name for their events.
32 * It is intended to be used when the user viewes the list of all the instances of a module
33 * in a course. This replaces the historical 'view all' log entry generated in mod/somemod/index.php.
35 * Example:
37 * \mod_chat\event\course_module_instance_list_viewed extends \core\event\course_module_instance_list_viewed
39 * @package core
40 * @since Moodle 2.7
41 * @copyright 2013 onwards Ankit Agarwal
42 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
44 abstract class course_module_instance_list_viewed extends base{
46 /** @var string protected var to store mod name */
47 protected $modname;
49 /**
50 * Init method.
52 * @throws \coding_exception
53 * @return void
55 protected function init() {
56 $this->data['crud'] = 'r';
57 $this->data['edulevel'] = self::LEVEL_OTHER;
58 if (strstr($this->component, 'mod_') === false) {
59 throw new \coding_exception('The event name or namespace is invalid.');
60 } else {
61 $this->modname = str_replace('mod_', '', $this->component);
65 /**
66 * Returns description of what happened.
68 * @return string
70 public function get_description() {
71 return "The user with id '$this->userid' viewed the instance list for the module '$this->modname' in the course " .
72 "with id '$this->courseid'.";
75 /**
76 * Return localised event name.
78 * @return string
80 public static function get_name() {
81 return get_string('eventcoursemoduleinstancelistviewed', 'core');
84 /**
85 * Get URL related to the action.
87 * @return \moodle_url
89 public function get_url() {
90 return new \moodle_url("/mod/$this->modname/index.php", array('id' => $this->courseid));
93 /**
94 * Return the legacy event log data.
96 * @return array|null
98 protected function get_legacy_logdata() {
99 return array($this->courseid, $this->modname, 'view all', 'index.php?id=' . $this->courseid, '');
104 * Custom validation.
106 * @throws \coding_exception
107 * @return void
109 protected function validate_data() {
110 parent::validate_data();
111 if ($this->contextlevel != CONTEXT_COURSE) {
112 throw new \coding_exception('Context level must be CONTEXT_COURSE.');