diff --git a/mod/lti/service/toolproxy/classes/privacy/provider.php b/mod/lti/service/toolproxy/classes/privacy/provider.php new file mode 100644 index 00000000000..e73edf00bbb --- /dev/null +++ b/mod/lti/service/toolproxy/classes/privacy/provider.php @@ -0,0 +1,46 @@ +. + +/** + * Privacy Subsystem implementation for ltiservice_toolproxy. + * + * @package ltiservice_toolproxy + * @copyright 2018 Mark Nelson + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +namespace ltiservice_toolproxy\privacy; + +defined('MOODLE_INTERNAL') || die(); + +/** + * Privacy Subsystem for ltiservice_toolproxy 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/toolproxy/lang/en/ltiservice_toolproxy.php b/mod/lti/service/toolproxy/lang/en/ltiservice_toolproxy.php index 4e61740c4b1..5b389a4ddad 100644 --- a/mod/lti/service/toolproxy/lang/en/ltiservice_toolproxy.php +++ b/mod/lti/service/toolproxy/lang/en/ltiservice_toolproxy.php @@ -24,3 +24,4 @@ */ $string['pluginname'] = 'Tool Proxy Service'; +$string['privacy:metadata'] = 'The Tool Proxy Service plugin does not store any personal data.';