. /** * Abstract comments viewed event. * * @package core * @copyright 2013 Rajesh Taneja * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core\event; defined('MOODLE_INTERNAL') || die(); /** * Abstract comments viewed event class. * * This class has to be extended by any event which is triggred while viewing comment. * * @package core * @copyright 2013 Rajesh Taneja * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class comments_viewed extends \core\event\base { /** * Init method. * * @return void */ protected function init() { $this->data['crud'] = 'r'; $this->data['edulevel'] = self::LEVEL_PARTICIPATING; } /** * Return localised event name. * * @return string */ public static function get_name() { return get_string('eventcommentsviewed', 'moodle'); } /** * Returns description of what happened. * * @return string */ public function get_description() { return 'User with id '. $this->userid . ' viewed comments for ' . $this->component . ' with instance id ' . $this->objectid; } /** * Get URL related to the action. * * @return \moodle_url */ public function get_url() { $context = $this->get_context(); if ($context) { return $context->get_url(); } else { return null; } } }