芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/www/cepali/customfield/classes/event/category_created.php
. /** * Custom field category created event. * * @package core_customfield * @copyright 2018 Daniel Neis Araujo
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_customfield\event; use core_customfield\category_controller; defined('MOODLE_INTERNAL') || die(); /** * Custom field category created event class. * * @package core_customfield * @since Moodle 3.6 * @copyright 2018 Daniel Neis Araujo
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class category_created extends \core\event\base { /** * Initialise the event data. */ protected function init() { $this->data['objecttable'] = 'customfield_category'; $this->data['crud'] = 'c'; $this->data['edulevel'] = self::LEVEL_OTHER; } /** * Creates an instance from a category controller object * * @param category_controller $category * @return category_created */ public static function create_from_object(category_controller $category) : category_created { $eventparams = [ 'objectid' => $category->get('id'), 'context' => $category->get_handler()->get_configuration_context(), 'other' => ['name' => $category->get('name')] ]; $event = self::create($eventparams); $event->add_record_snapshot($event->objecttable, $category->to_record()); return $event; } /** * Returns localised general event name. * * @return string */ public static function get_name() { return get_string('eventcategorycreated', 'core_customfield'); } /** * Returns non-localised description of what happened. * * @return string */ public function get_description() { return "The user with id '$this->userid' created the category with id '$this->objectid'."; } }