芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/www/cepali/lib/classes/event/course_information_viewed.php
. /** * Course information viewed event. * * @package core * @copyright 2016 Stephen Bourget * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core\event; defined('MOODLE_INTERNAL') || die(); /** * Course information viewed event class. * * Class for event to be triggered when a course information is viewed. * * @package core * @since Moodle 3.2 * @copyright 2016 Stephen Bourget * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class course_information_viewed extends base { /** * Init method. * * @return void */ protected function init() { $this->data['crud'] = 'r'; $this->data['edulevel'] = self::LEVEL_PARTICIPATING; $this->data['objecttable'] = 'course'; } /** * Returns description of what happened. * * @return string */ public function get_description() { return "The user with id '$this->userid' viewed the course information for the course with id '$this->courseid'."; } /** * Return localised event name. * * @return string */ public static function get_name() { return get_string('eventcourseinformationviewed', 'core'); } /** * Get URL related to the action. * * @return \moodle_url|null */ public function get_url() { return new \moodle_url('/course/info.php', array('id' => $this->objectid)); } /** * Custom validation. * * @throws \coding_exception * @return void */ protected function validate_data() { parent::validate_data(); if ($this->contextlevel != CONTEXT_COURSE) { throw new \coding_exception('Context level must be CONTEXT_COURSE.'); } } }