|
| 1 | +<?php |
| 2 | +// This file is part of Moodle - http://moodle.org/ |
| 3 | +// |
| 4 | +// Moodle is free software: you can redistribute it and/or modify |
| 5 | +// it under the terms of the GNU General Public License as published by |
| 6 | +// the Free Software Foundation, either version 3 of the License, or |
| 7 | +// (at your option) any later version. |
| 8 | +// |
| 9 | +// Moodle is distributed in the hope that it will be useful, |
| 10 | +// but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | +// GNU General Public License for more details. |
| 13 | +// |
| 14 | +// You should have received a copy of the GNU General Public License |
| 15 | +// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
| 16 | + |
| 17 | +/** |
| 18 | + * Bounce count reset event |
| 19 | + * |
| 20 | + * @package tool_emailutils |
| 21 | + * @author Benjamin Walker ([email protected]) |
| 22 | + * @copyright 2024 Catalyst IT |
| 23 | + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
| 24 | + */ |
| 25 | +namespace tool_emailutils\event; |
| 26 | + |
| 27 | +/** |
| 28 | + * Event |
| 29 | + */ |
| 30 | +class bounce_count_reset extends \core\event\base { |
| 31 | + |
| 32 | + /** |
| 33 | + * Initialise required event data properties. |
| 34 | + */ |
| 35 | + protected function init(): void { |
| 36 | + $this->data['crud'] = 'u'; |
| 37 | + $this->data['edulevel'] = self::LEVEL_OTHER; |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * Returns localised event name. |
| 42 | + * |
| 43 | + * @return string |
| 44 | + */ |
| 45 | + public static function get_name(): string { |
| 46 | + return get_string('event:bouncecountreset', 'tool_emailutils'); |
| 47 | + } |
| 48 | + |
| 49 | + /** |
| 50 | + * Returns non-localised description of what happened. |
| 51 | + * |
| 52 | + * @return string |
| 53 | + */ |
| 54 | + public function get_description(): string { |
| 55 | + $reason = empty($this->userid) ? 'because an email was delivered successfully' : 'manually'; |
| 56 | + return "The user with id '$this->relateduserid' had their email bounce count reset $reason."; |
| 57 | + } |
| 58 | +} |
0 commit comments