. /** * mod_data comment created event. * * @package mod_data * @copyright 2013 Rajesh Taneja * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace mod_data\event; defined('MOODLE_INTERNAL') || die(); /** * mod_data comment created event. * * @package mod_data * @copyright 2013 Rajesh Taneja * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class comment_created extends \core\event\comment_created { /** * Get URL related to the action. * * @return \moodle_url */ public function get_url() { return new \moodle_url('/mod/data/view.php', array('id' => $this->contextinstanceid)); } /** * Returns description of what happened. * * @return string */ public function get_description() { return 'User with id ' . $this->userid . ' added comment for database activity with id ' . $this->other['itemid']; } }