mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 12:32:08 +02:00
MDL-65622 core: add grade_item_created event
This commit is contained in:
parent
f3507273e9
commit
657cc33be9
@ -216,12 +216,18 @@ class tool_recyclebin_events_testcase extends advanced_testcase {
|
||||
$sink = $this->redirectEvents();
|
||||
$rb->restore_item($item);
|
||||
$events = $sink->get_events();
|
||||
$event = reset($events);
|
||||
$eventscount = 0;
|
||||
|
||||
// Check that the event contains the expected values.
|
||||
$this->assertInstanceOf('\tooL_recyclebin\event\course_bin_item_restored', $event);
|
||||
$this->assertEquals(context_course::instance($course->id), $event->get_context());
|
||||
$this->assertEquals($item->id, $event->objectid);
|
||||
$this->assertEventContextNotUsed($event);
|
||||
foreach ($events as $event) {
|
||||
if ($event instanceof \tooL_recyclebin\event\course_bin_item_restored) {
|
||||
// Check that the event contains the expected values.
|
||||
$this->assertEquals(context_course::instance($course->id), $event->get_context());
|
||||
$this->assertEquals($item->id, $event->objectid);
|
||||
$this->assertEventContextNotUsed($event);
|
||||
$eventscount++;
|
||||
}
|
||||
}
|
||||
// Only one course_bin_item_restored event should be triggered.
|
||||
$this->assertEquals(1, $eventscount);
|
||||
}
|
||||
}
|
||||
|
@ -245,6 +245,9 @@ class restore_gradebook_structure_step extends restore_structure_step {
|
||||
}
|
||||
|
||||
$newitemid = $DB->insert_record('grade_items', $data);
|
||||
$data->id = $newitemid;
|
||||
$gradeitem = new grade_item($data);
|
||||
core\event\grade_item_created::create_from_grade_item($gradeitem)->trigger();
|
||||
}
|
||||
$this->set_mapping('grade_item', $oldid, $newitemid);
|
||||
}
|
||||
|
@ -194,6 +194,7 @@ $string['errorupdatinggradecategoryaggregateoutcomes'] = 'Error updating the "In
|
||||
$string['errorupdatinggradecategoryaggregation'] = 'Error updating the aggregation type of grade category ID {$a->id}';
|
||||
$string['errorupdatinggradeitemaggregationcoef'] = 'Error updating the aggregation coefficient (weight or extra credit) of grade item ID {$a->id}';
|
||||
$string['eventgradedeleted'] = 'Grade deleted';
|
||||
$string['eventgradeitemcreated'] = 'Grade item created';
|
||||
$string['eventgradelettercreated'] = 'Grade letter created';
|
||||
$string['eventgradeletterdeleted'] = 'Grade letter deleted';
|
||||
$string['eventgradeletterupdated'] = 'Grade letter updated';
|
||||
|
146
lib/classes/event/grade_item_created.php
Normal file
146
lib/classes/event/grade_item_created.php
Normal file
@ -0,0 +1,146 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Grade item created event.
|
||||
*
|
||||
* @package core
|
||||
* @copyright 2019 Dmitrii Metelkin <dmitriim@catalyst-au.net>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace core\event;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Grade item created event class.
|
||||
*
|
||||
* @package core
|
||||
* @since Moodle 3.8
|
||||
* @copyright 2019 Dmitrii Metelkin <dmitriim@catalyst-au.net>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class grade_item_created extends base {
|
||||
|
||||
/** @var \grade_item $gradeitem */
|
||||
protected $gradeitem;
|
||||
|
||||
/**
|
||||
* Init method.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function init() {
|
||||
$this->data['objecttable'] = 'grade_items';
|
||||
$this->data['crud'] = 'c';
|
||||
$this->data['edulevel'] = self::LEVEL_OTHER;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return localised event name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_name() {
|
||||
return get_string('eventgradeitemcreated', 'core_grades');
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility method to create a new event.
|
||||
*
|
||||
* @param \grade_item $gradeitem
|
||||
* @return grade_item_created
|
||||
*/
|
||||
public static function create_from_grade_item(\grade_item $gradeitem) {
|
||||
$event = self::create([
|
||||
'objectid' => $gradeitem->id,
|
||||
'courseid' => $gradeitem->courseid,
|
||||
'context' => \context_course::instance($gradeitem->courseid),
|
||||
'other' => [
|
||||
'itemname' => $gradeitem->itemname,
|
||||
'itemtype' => $gradeitem->itemtype,
|
||||
'itemmodule' => $gradeitem->itemmodule,
|
||||
],
|
||||
]);
|
||||
|
||||
$event->gradeitem = $gradeitem;
|
||||
|
||||
return $event;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get grade object.
|
||||
*
|
||||
* @throws \coding_exception
|
||||
* @return \grade_item
|
||||
*/
|
||||
public function get_grade_item() {
|
||||
if ($this->is_restored()) {
|
||||
throw new \coding_exception('get_grade_item() is intended for event observers only');
|
||||
}
|
||||
|
||||
if (!isset($this->gradeitem)) {
|
||||
$this->gradeitem = \grade_item::fetch(['id' => $this->objectid]);
|
||||
}
|
||||
|
||||
return $this->gradeitem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns description of what happened.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function get_description() {
|
||||
return "The user with id '" . $this->userid . "' created a grade item with id '" . $this->objectid . "'" .
|
||||
" of type '" . $this->other['itemtype'] . "' and name '" . $this->other['itemname'] . "'" .
|
||||
" in the course with the id '" . $this->courseid . "'.";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns relevant URL.
|
||||
* @return \moodle_url
|
||||
*/
|
||||
public function get_url() {
|
||||
$url = new \moodle_url('/grade/edit/tree/index.php');
|
||||
$url->param('id', $this->courseid);
|
||||
|
||||
return $url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom validation.
|
||||
*
|
||||
* @throws \coding_exception when validation does not pass.
|
||||
*/
|
||||
protected function validate_data() {
|
||||
parent::validate_data();
|
||||
|
||||
if (!array_key_exists('itemname', $this->other)) {
|
||||
throw new \coding_exception('The \'itemname\' value must be set in other.');
|
||||
}
|
||||
|
||||
if (!array_key_exists('itemtype', $this->other)) {
|
||||
throw new \coding_exception('The \'itemtype\' value must be set in other.');
|
||||
}
|
||||
|
||||
if (!array_key_exists('itemmodule', $this->other)) {
|
||||
throw new \coding_exception('The \'itemmodule\' value must be set in other.');
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -479,6 +479,10 @@ class grade_item extends grade_object {
|
||||
if (parent::insert($source)) {
|
||||
// force regrading of items if needed
|
||||
$this->force_regrading();
|
||||
|
||||
$event = \core\event\grade_item_created::create_from_grade_item($this);
|
||||
$event->trigger();
|
||||
|
||||
return $this->id;
|
||||
|
||||
} else {
|
||||
|
@ -67,6 +67,7 @@ class core_grade_item_testcase extends grade_base_testcase {
|
||||
$this->sub_test_update_final_grade();
|
||||
$this->sub_test_grade_item_can_control_visibility();
|
||||
$this->sub_test_grade_item_fix_sortorder();
|
||||
$this->sub_test_grade_item_created_event();
|
||||
}
|
||||
|
||||
protected function sub_test_grade_item_construct() {
|
||||
@ -977,4 +978,37 @@ class core_grade_item_testcase extends grade_base_testcase {
|
||||
$this->assertEquals($todefaults['weightoverride'], $gi->weightoverride);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that grade item event triggered when a grade item is created.
|
||||
*/
|
||||
protected function sub_test_grade_item_created_event() {
|
||||
$sink = $this->redirectEvents();
|
||||
|
||||
$gradeitem = new grade_item();
|
||||
|
||||
$gradeitem->courseid = $this->courseid;
|
||||
$gradeitem->categoryid = $this->grade_categories[1]->id;
|
||||
$gradeitem->itemname = 'unittestgradeitem4';
|
||||
$gradeitem->itemtype = 'mod';
|
||||
$gradeitem->itemmodule = 'quiz';
|
||||
$gradeitem->iteminfo = 'Grade item used for unit testing';
|
||||
|
||||
$gradeitem->insert();
|
||||
|
||||
$result = $sink->get_events();
|
||||
$sink->close();
|
||||
|
||||
$this->assertCount(1, $result);
|
||||
|
||||
$event = reset($result);
|
||||
$this->assertEventContextNotUsed($event);
|
||||
|
||||
$eventgradeitem = $event->get_grade_item();
|
||||
|
||||
$this->assertInstanceOf('grade_item', $eventgradeitem);
|
||||
$this->assertEquals($gradeitem->id, $eventgradeitem->id);
|
||||
$this->assertEquals($gradeitem->itemname, $event->other['itemname']);
|
||||
$this->assertEquals($gradeitem->itemtype, $event->other['itemtype']);
|
||||
$this->assertEquals($gradeitem->itemmodule, $event->other['itemmodule']);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user