. /** * The mod_data template viewed event. * * @package mod_data * @copyright 2014 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace mod_data\event; defined('MOODLE_INTERNAL') || die(); /** * The mod_data template viewed event class. * * @property-read array $other { * Extra information about event. * * - int dataid the id of the data activity. * } * * @package mod_data * @since Moodle 2.7 * @copyright 2014 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class template_viewed extends \core\event\base { /** * Init method. * * @return void */ protected function init() { $this->data['crud'] = 'r'; $this->data['edulevel'] = self::LEVEL_OTHER; } /** * Return localised event name. * * @return string */ public static function get_name() { return get_string('eventtemplateviewed', 'mod_data'); } /** * Returns description of what happened. * * @return string */ public function get_description() { return "The user with id '$this->userid' viewed the template for the data activity with course module " . "id '$this->contextinstanceid'."; } /** * Get URL related to the action. * * @return \moodle_url */ public function get_url() { return new \moodle_url('/mod/data/templates.php', array('d' => $this->other['dataid'])); } /** * Get the legacy event log data. * * @return array */ public function get_legacy_logdata() { return array($this->courseid, 'data', 'templates view', 'templates.php?id=' . $this->contextinstanceid . '&d=' . $this->other['dataid'], $this->other['dataid'], $this->contextinstanceid); } /** * Custom validation. * * @throws \coding_exception when validation does not pass. * @return void */ protected function validate_data() { parent::validate_data(); if (!isset($this->other['dataid'])) { throw new \coding_exception('The \'dataid\' value must be set in other.'); } } }