From 1acd3ef21dce4c24e4e6c7469b455654a979f386 Mon Sep 17 00:00:00 2001 From: Dmitrii Metelkin Date: Thu, 16 Apr 2020 18:34:53 +1000 Subject: Add null privacy provider to fix #15 --- classes/privacy/provider.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 classes/privacy/provider.php (limited to 'classes') diff --git a/classes/privacy/provider.php b/classes/privacy/provider.php new file mode 100644 index 0000000..9fe7bd9 --- /dev/null +++ b/classes/privacy/provider.php @@ -0,0 +1,42 @@ +. + +/** + * Privacy Subsystem implementation for local_webhooks. + * + * @package local_webhooks + * @copyright 2020 Dmitrii Metelkin + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +namespace local_webhooks\privacy; + +defined('MOODLE_INTERNAL') || die(); + +class provider implements + // This plugin does not store any personal user data. + \core_privacy\local\metadata\null_provider { + + /** + * Get the language string identifier with the component's language + * file to explain why this plugin stores no data. + * + * @return string + */ + public static function get_reason() : string { + return 'privacy:metadata'; + } +} \ No newline at end of file -- cgit v1.2.3