mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 02:16:41 +02:00

Also performed the following - 1) Deprecated the assignment's add_to_log function (part of it's functionality exists in the base class to set the legacy log data). 2) Edited existing events to use the new base class. 3) Renamed event_test.php to events_test.php to match the rest of core. 4) Moved the event tests from locallib_test.php to events_test.php. 5) When setting legacy data use lang_string, rather than get_string, as we may not be using them if legacy log is disabled.
86 lines
2.3 KiB
PHP
86 lines
2.3 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* mod_assign submission status updated event.
|
|
*
|
|
* @package mod_assign
|
|
* @copyright 2013 Frédéric Massart
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace mod_assign\event;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* mod_assign submission status updated event class.
|
|
*
|
|
* @property-read array $other {
|
|
* Extra information about event.
|
|
*
|
|
* @type string newstatus status of submission.
|
|
* }
|
|
*
|
|
* @package mod_assign
|
|
* @since Moodle 2.6
|
|
* @copyright 2013 Frédéric Massart
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class submission_status_updated extends base {
|
|
|
|
/**
|
|
* Returns description of what happened.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_description() {
|
|
return "User {$this->userid} has updated the status of the submission {$this->objectid} to {$this->other['newstatus']}.";
|
|
}
|
|
|
|
/**
|
|
* Return localised event name.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function get_name() {
|
|
return get_string('eventsubmissionstatusupdated', 'mod_assign');
|
|
}
|
|
|
|
/**
|
|
* Init method.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function init() {
|
|
$this->data['crud'] = 'u';
|
|
$this->data['edulevel'] = self::LEVEL_TEACHING;
|
|
$this->data['objecttable'] = 'assign_submission';
|
|
}
|
|
|
|
/**
|
|
* Custom validation.
|
|
*
|
|
* @throws \coding_exception
|
|
* @return void
|
|
*/
|
|
protected function validate_data() {
|
|
parent::validate_data();
|
|
if (!isset($this->other['newstatus'])) {
|
|
throw new \coding_exception('newstatus must be set in $other.');
|
|
}
|
|
}
|
|
}
|