MDL-45837 Grades: Add events for scales

This commit is contained in:
Stephen Bourget 2018-02-07 12:34:24 -05:00 committed by Mark Nelson
parent 315a0a3aaf
commit 2f3b709859
5 changed files with 327 additions and 3 deletions

View File

@ -195,6 +195,9 @@ $string['errorupdatinggradecategoryaggregation'] = 'Error updating the aggregati
$string['errorupdatinggradeitemaggregationcoef'] = 'Error updating the aggregation coefficient (weight or extra credit) of grade item ID {$a->id}';
$string['eventgradedeleted'] = 'Grade deleted';
$string['eventgradeviewed'] = 'Grades were viewed in the gradebook';
$string['eventscalecreated'] = 'Scale created';
$string['eventscaledeleted'] = 'Scale deleted';
$string['eventscaleupdated'] = 'Scale updated';
$string['eventusergraded'] = 'User graded';
$string['excluded'] = 'Excluded';
$string['excluded_help'] = 'If ticked, the grade will not be included in any aggregation.';

View File

@ -0,0 +1,93 @@
<?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/>.
/**
* Scale created event.
*
* @package core
* @copyright 2017 Stephen Bourget
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core\event;
defined('MOODLE_INTERNAL') || die();
/**
* Scale created event class.
*
* @package core
* @since Moodle 3.5
* @copyright 2017 Stephen Bourget
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class scale_created extends base {
/**
* Init method.
*
* @return void
*/
protected function init() {
$this->data['objecttable'] = 'scale';
$this->data['crud'] = 'c';
$this->data['edulevel'] = self::LEVEL_OTHER;
}
/**
* Return localised event name.
*
* @return string
*/
public static function get_name() {
return get_string('eventscalecreated', 'core_grades');
}
/**
* Returns description of what happened.
*
* @return string
*/
public function get_description() {
if ($this->courseid) {
return "The user with id '$this->userid' created the custom scale with id '$this->objectid'".
" from the course in the id '".$this->courseid."'.";
} else {
return "The user with id '$this->userid' created the standard scale with id '$this->objectid'.";
}
}
/**
* Returns relevant URL.
* @return \moodle_url
*/
public function get_url() {
$url = new \moodle_url('/grade/edit/scale/index.php');
if ($this->courseid) {
$url->param('id', $this->courseid);
}
return $url;
}
/**
* Used for mapping events on restore
* @return array
*/
public static function get_objectid_mapping() {
return array('db' => 'scale', 'restore' => 'scale');
}
}

View File

@ -0,0 +1,81 @@
<?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/>.
/**
* Scale deleted event.
*
* @package core
* @copyright 2017 Stephen Bourget
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core\event;
defined('MOODLE_INTERNAL') || die();
/**
* Scale deleted event class.
*
* @package core
* @since Moodle 3.5
* @copyright 2017 Stephen Bourget
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class scale_deleted extends base {
/**
* Init method.
*
* @return void
*/
protected function init() {
$this->data['objecttable'] = 'scale';
$this->data['crud'] = 'd';
$this->data['edulevel'] = self::LEVEL_OTHER;
}
/**
* Return localised event name.
*
* @return string
*/
public static function get_name() {
return get_string('eventscaledeleted', 'core_grades');
}
/**
* Returns description of what happened.
*
* @return string
*/
public function get_description() {
if ($this->courseid) {
return "The user with id '$this->userid' deleted the custom scale with id '$this->objectid'".
" from the course with the id '".$this->courseid."'.";
} else {
return "The user with id '$this->userid' deleted the standard scale with id '$this->objectid'.";
}
}
/**
* Used for mapping events on restore
* @return array
*/
public static function get_objectid_mapping() {
return array('db' => 'scale', 'restore' => 'scale');
}
}

View File

@ -0,0 +1,93 @@
<?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/>.
/**
* Scale updated event.
*
* @package core
* @copyright 2017 Stephen Bourget
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core\event;
defined('MOODLE_INTERNAL') || die();
/**
* Scale added event class.
*
* @package core
* @since Moodle 3.5
* @copyright 2017 Stephen Bourget
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class scale_updated extends base {
/**
* Init method.
*
* @return void
*/
protected function init() {
$this->data['objecttable'] = 'scale';
$this->data['crud'] = 'u';
$this->data['edulevel'] = self::LEVEL_OTHER;
}
/**
* Return localised event name.
*
* @return string
*/
public static function get_name() {
return get_string('eventscaleupdated', 'core_grades');
}
/**
* Returns description of what happened.
*
* @return string
*/
public function get_description() {
if ($this->courseid) {
return "The user with id '$this->userid' updated the custom scale with id '$this->objectid'".
" from the course in the id '".$this->courseid."'.";
} else {
return "The user with id '$this->userid' updated the standard scale with id '$this->objectid'.";
}
}
/**
* Returns relevant URL.
* @return \moodle_url
*/
public function get_url() {
$url = new \moodle_url('/grade/edit/scale/index.php');
if ($this->courseid) {
$url->param('id', $this->courseid);
}
return $url;
}
/**
* Used for mapping events on restore
* @return array
*/
public static function get_objectid_mapping() {
return array('db' => 'scale', 'restore' => 'scale');
}
}

View File

@ -119,7 +119,26 @@ class grade_scale extends grade_object {
public function insert($source=null) {
$this->timecreated = time();
$this->timemodified = time();
return parent::insert($source);
$result = parent::insert($source);
if ($result) {
// Trigger the scale created event.
if (!empty($this->standard)) {
$eventcontext = context_system::instance();
} else {
if ((!empty($this->courseid)) && ($this->courseid != SITEID)) {
$eventcontext = context_course::instance($this->courseid);
} else {
$eventcontext = context_system::instance();
}
}
$event = \core\event\scale_created::create(array(
'objectid' => $result,
'context' => $eventcontext
));
$event->trigger();
}
return $result;
}
/**
@ -130,17 +149,52 @@ class grade_scale extends grade_object {
*/
public function update($source=null) {
$this->timemodified = time();
return parent::update($source);
$result = parent::update($source);
if ($result) {
// Trigger the scale updated event.
if (!empty($this->standard)) {
$eventcontext = context_system::instance();
} else {
if ((!empty($this->courseid)) && ($this->courseid != SITEID)) {
$eventcontext = context_course::instance($this->courseid);
} else {
$eventcontext = context_system::instance();
}
}
$event = \core\event\scale_updated::create(array(
'objectid' => $this->id,
'context' => $eventcontext
));
$event->trigger();
}
return $result;
}
/**
* Deletes this outcome from the database.
* Deletes this scale from the database.
*
* @param string $source from where was the object deleted (mod/forum, manual, etc.)
* @return bool success
*/
public function delete($source=null) {
global $DB;
// Trigger the scale deleted event.
if (!empty($this->standard)) {
$eventcontext = context_system::instance();
} else {
if ((!empty($this->courseid)) && ($this->courseid != SITEID)) {
$eventcontext = context_course::instance($this->courseid);
} else {
$eventcontext = context_system::instance();
}
}
$event = \core\event\scale_deleted::create(array(
'objectid' => $this->id,
'context' => $eventcontext
));
$event->trigger();
if (parent::delete($source)) {
$context = context_system::instance();
$fs = get_file_storage();