2 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
21 * @copyright 2013 Rajesh Taneja <rajesh@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
29 * Event when user profile is deleted.
31 * @property-read array $other {
32 * Extra information about event.
34 * @type string username name of user.
35 * @type string email user email.
36 * @type string idnumber user idnumber.
37 * @type string picture user picture.
38 * @type int mnethostid mnet host id.
42 * @copyright 2013 Rajesh Taneja <rajesh@moodle.com>
43 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
45 class user_deleted extends base {
48 * Initialise required event data properties.
50 protected function init() {
51 $this->data['objecttable'] = 'user';
52 $this->data['crud'] = 'd';
53 $this->data['edulevel'] = self::LEVEL_OTHER;
57 * Returns localised event name.
61 public static function get_name() {
62 return get_string('eventuserdeleted');
66 * Returns non-localised event description with id's for admin use only.
70 public function get_description() {
71 return 'User profile deleted for userid ' . $this->objectid;
75 * Return name of the legacy event, which is replaced by this event.
77 * @return string legacy event name
79 public static function get_legacy_eventname() {
80 return 'user_deleted';
84 * Return user_deleted legacy event data.
86 * @return \stdClass user data.
88 protected function get_legacy_eventdata() {
89 $user = $this->get_record_snapshot('user', $this->data['objectid']);
91 $user->username = $this->data['other']['username'];
92 $user->email = $this->data['other']['email'];
93 $user->idnumber = $this->data['other']['idnumber'];
94 $user->picture = $this->data['other']['picture'];
99 * Returns array of parameters to be passed to legacy add_to_log() function.
103 protected function get_legacy_logdata() {
104 $user = $this->get_record_snapshot('user', $this->data['objectid']);
105 return array(SITEID, 'user', 'delete', "view.php?id=".$user->id, $user->firstname.' '.$user->lastname);
111 * @throws \coding_exception
114 protected function validate_data() {
115 parent::validate_data();
117 if (!isset($this->other['username'])) {
118 throw new \coding_exception('username must be set in $other.');
121 if (!isset($this->other['email'])) {
122 throw new \coding_exception('email must be set in $other.');
125 if (!isset($this->other['idnumber'])) {
126 throw new \coding_exception('idnumber must be set in $other.');
129 if (!isset($this->other['picture'])) {
130 throw new \coding_exception('picture must be set in $other.');
133 if (!isset($this->other['mnethostid'])) {
134 throw new \coding_exception('mnethostid must be set in $other.');