From 583f84d7cb8e694de50ccd5da5678083fa73042f Mon Sep 17 00:00:00 2001 From: Mark Nelson Date: Mon, 16 Apr 2018 14:05:51 +0800 Subject: [PATCH] MDL-61920 ltiservice_profile: implement privacy provider --- .../profile/classes/privacy/provider.php | 46 +++++++++++++++++++ .../profile/lang/en/ltiservice_profile.php | 1 + 2 files changed, 47 insertions(+) create mode 100644 mod/lti/service/profile/classes/privacy/provider.php diff --git a/mod/lti/service/profile/classes/privacy/provider.php b/mod/lti/service/profile/classes/privacy/provider.php new file mode 100644 index 00000000000..f3407b17ebc --- /dev/null +++ b/mod/lti/service/profile/classes/privacy/provider.php @@ -0,0 +1,46 @@ +. + +/** + * Privacy Subsystem implementation for ltiservice_profile. + * + * @package ltiservice_profile + * @copyright 2018 Mark Nelson + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +namespace ltiservice_profile\privacy; + +defined('MOODLE_INTERNAL') || die(); + +/** + * Privacy Subsystem for ltiservice_profile implementing null_provider. + * + * @copyright 2018 Mark Nelson + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ +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'; + } +} diff --git a/mod/lti/service/profile/lang/en/ltiservice_profile.php b/mod/lti/service/profile/lang/en/ltiservice_profile.php index 9001c1cecaa..f7ab58777ee 100644 --- a/mod/lti/service/profile/lang/en/ltiservice_profile.php +++ b/mod/lti/service/profile/lang/en/ltiservice_profile.php @@ -24,3 +24,4 @@ */ $string['pluginname'] = 'Tool Consumer Profile LTI Service'; +$string['privacy:metadata'] = 'The Tool Consumer Profile LTI Service plugin does not store any personal data.';