. /** * Question category created event. * * @package core * @copyright 2014 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core\event; defined('MOODLE_INTERNAL') || die(); /** * Question category created event class. * * @package core * @since Moodle 2.7 * @copyright 2014 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class question_category_created extends question_category_base { /** * Init method. */ protected function init() { parent::init(); $this->data['crud'] = 'c'; } /** * Returns localised general event name. * * @return string */ public static function get_name() { return get_string('eventquestioncategorycreated', 'question'); } /** * Returns description of what happened. * * @return string */ public function get_description() { return "The user with id '$this->userid' created the question category with id '$this->objectid'."; } /** * Return the legacy event log data. * * @return array|null */ protected function get_legacy_logdata() { if ($this->contextlevel == CONTEXT_MODULE) { return array($this->courseid, 'quiz', 'addcategory', 'view.php?id=' . $this->contextinstanceid, $this->objectid, $this->contextinstanceid); } // This is not related to individual quiz at all. return null; } }