You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.8 KiB
88 lines
2.8 KiB
<?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/>.
|
|
|
|
/**
|
|
* The assignsubmission_onlinetext submission_created event.
|
|
*
|
|
* @package assignsubmission_onlinetext
|
|
* @copyright 2014 Adrian Greeve <adrian@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace assignsubmission_onlinetext\event;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* The assignsubmission_onlinetext submission_created event class.
|
|
*
|
|
* @property-read array $other {
|
|
* Extra information about the event.
|
|
*
|
|
* - int onlinetextwordcount: Word count of the online text submission.
|
|
* }
|
|
*
|
|
* @package assignsubmission_onlinetext
|
|
* @since Moodle 2.7
|
|
* @copyright 2014 Adrian Greeve <adrian@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class submission_created extends \mod_assign\event\submission_created {
|
|
|
|
/**
|
|
* Init method.
|
|
*/
|
|
protected function init() {
|
|
parent::init();
|
|
$this->data['objecttable'] = 'assignsubmission_onlinetext';
|
|
}
|
|
|
|
/**
|
|
* Returns non-localised description of what happened.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_description() {
|
|
$descriptionstring = "The user with id '$this->userid' created an online text submission with " .
|
|
"'{$this->other['onlinetextwordcount']}' words in the assignment with course module id " .
|
|
"'$this->contextinstanceid'";
|
|
if (!empty($this->other['groupid'])) {
|
|
$descriptionstring .= " for the group with id '{$this->other['groupid']}'.";
|
|
} else {
|
|
$descriptionstring .= ".";
|
|
}
|
|
|
|
return $descriptionstring;
|
|
}
|
|
|
|
/**
|
|
* Custom validation.
|
|
*
|
|
* @throws \coding_exception
|
|
* @return void
|
|
*/
|
|
protected function validate_data() {
|
|
parent::validate_data();
|
|
if (!isset($this->other['onlinetextwordcount'])) {
|
|
throw new \coding_exception('The \'onlinetextwordcount\' value must be set in other.');
|
|
}
|
|
}
|
|
|
|
public static function get_objectid_mapping() {
|
|
// No mapping available for 'assignsubmission_onlinetext'.
|
|
return array('db' => 'assignsubmission_onlinetext', 'restore' => \core\event\base::NOT_MAPPED);
|
|
}
|
|
}
|
|
|