Skip to content

Commit

Permalink
MDL-45837 Grades: Add events for scales
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourget authored and mdjnelson committed Feb 9, 2018
1 parent 315a0a3 commit 2f3b709
Show file tree
Hide file tree
Showing 5 changed files with 327 additions and 3 deletions.
3 changes: 3 additions & 0 deletions lang/en/grades.php
Expand Up @@ -195,6 +195,9 @@
$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.';
Expand Down
93 changes: 93 additions & 0 deletions lib/classes/event/scale_created.php
@@ -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');
}

}
81 changes: 81 additions & 0 deletions lib/classes/event/scale_deleted.php
@@ -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');
}

}
93 changes: 93 additions & 0 deletions lib/classes/event/scale_updated.php
@@ -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');
}

}
60 changes: 57 additions & 3 deletions lib/grade/grade_scale.php
Expand Up @@ -119,7 +119,26 @@ public static function fetch_all($params) {
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;
}

/**
Expand All @@ -130,17 +149,52 @@ public function insert($source=null) {
*/
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();
Expand Down

0 comments on commit 2f3b709

Please sign in to comment.