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/>.
18 * core webservice service updated event.
21 * @copyright 2013 Frédéric Massart
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
29 * core webservice service updated event class.
32 * @copyright 2013 Frédéric Massart
33 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35 class webservice_service_updated extends \core\event\base {
38 * Returns description of what happened.
42 public function get_description() {
43 return "The web service service $this->objectid has been updated by user $this->userid.";
47 * Return the legacy event log data.
51 protected function get_legacy_logdata() {
53 $service = $this->get_record_snapshot('external_services', $this->objectid);
54 return array(SITEID, 'webservice', 'edit', $CFG->wwwroot . "/" . $CFG->admin . "/settings.php?section=externalservices",
55 get_string('editservice', 'webservice', $service));
59 * Return localised event name.
63 public static function get_name() {
64 return get_string('event_webservice_service_updated', 'webservice');
68 * Get URL related to the action.
72 public function get_url() {
73 return new \moodle_url('/admin/settings.php', array('section' => 'externalservices'));
81 protected function init() {
82 $this->context = \context_system::instance();
83 $this->data['crud'] = 'u';
84 $this->data['level'] = self::LEVEL_OTHER;
85 $this->data['objecttable'] = 'external_services';
89 * Set the legacy event log data.
93 public function set_legacy_logdata($legacylogdata) {
94 $this->legacylogdata = $legacylogdata;