From 0618160ac10ac347a0c67e27af67c2c9e120810c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Tom=C3=A9=20Fern=C3=A1ndez?= Date: Wed, 16 Feb 2022 16:52:30 +0100 Subject: [PATCH] 13 - Added privacy provider file --- classes/privacy/provider.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 classes/privacy/provider.php diff --git a/classes/privacy/provider.php b/classes/privacy/provider.php new file mode 100644 index 0000000..74ac98c --- /dev/null +++ b/classes/privacy/provider.php @@ -0,0 +1,32 @@ +. + +namespace auth_ip\privacy; + +defined('MOODLE_INTERNAL') || die(); + +class provider implements \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'; + } +}