AutorÃa | Ultima modificación | Ver Log |
<?php// This file is part of Moodle - http://moodle.org///// Moodle is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.//// Moodle is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with Moodle. If not, see <http://www.gnu.org/licenses/>.namespace tool_courserating\event;use tool_courserating\local\models\rating;/*** Event rating updated** @package tool_courserating* @copyright 2022 Marina Glancy <marina.glancy@gmail.com>* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later*/class rating_updated extends \core\event\base {/*** Init*/protected function init() {$this->data['crud'] = 'u';$this->data['edulevel'] = self::LEVEL_PARTICIPATING;$this->data['objecttable'] = rating::TABLE;}/*** Event name** @return string*/public static function get_name(): string {return get_string('event:rating_updated', 'tool_courserating');}/*** Event description** @return string*/public function get_description(): string {return "User {$this->relateduserid} has changed the rating for the course from ".$this->other['oldrating']." to ".$this->other['rating'];}/*** Shortcut to create an instance of event** @param rating $object* @param \stdClass $recordold* @return self*/public static function create_from_rating(rating $object, \stdClass $recordold): self {/** @var self $event */$event = static::create(['objectid' => $object->get('id'),'courseid' => $object->get('courseid'),'relateduserid' => $recordold->userid,'context' => \context_course::instance($object->get('courseid')),'other' => ['rating' => $object->get('rating'), 'oldrating' => $recordold->rating],]);$event->add_record_snapshot($event->data['objecttable'], $object->to_record());return $event;}}