From 6dfe28dab58409c4a005dcd271b6ddd2ef72c443 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 27 Oct 2017 12:10:16 +0400 Subject: The described class for simple journaling --- classes/event/response_get.php | 74 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 classes/event/response_get.php diff --git a/classes/event/response_get.php b/classes/event/response_get.php new file mode 100644 index 0000000..2fa6620 --- /dev/null +++ b/classes/event/response_get.php @@ -0,0 +1,74 @@ +. + +/** + * Registration of the system of events. + * + * @package local_webhooks + * @copyright 2017 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +namespace local_webhooks\event; + +defined("MOODLE_INTERNAL") || die(); + +/** + * Defines how to work with events. + * + * @copyright 2017 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ +class response_get extends \core\event\base { + /** + * Init method. + * + * @return void + */ + protected function init() { + $this->data["crud"] = "u"; + $this->data["objecttable"] = "local_webhooks_service"; + $this->data["edulevel"] = self::LEVEL_OTHER; + } + + /** + * Return localised event name. + * + * @return string + */ + public static function get_name() { + return new \lang_string("backuplogdetailed", "moodle"); + } + + /** + * Returns description of what happened. + * + * @return string + */ + public function get_description() { + $status = $this->other["status"]; + return "The servers answer is \"$status\"."; + } + + /** + * Get URL related to the action. + * + * @return \moodle_url + */ + public function get_url() { + return new \moodle_url("/local/webhooks/editservice.php", array("serviceid" => $this->objectid)); + } +} \ No newline at end of file -- cgit v1.2.3