diff --git a/classes/privacy/provider.php b/classes/privacy/provider.php new file mode 100644 index 00000000..f58eea55 --- /dev/null +++ b/classes/privacy/provider.php @@ -0,0 +1,46 @@ +. +/** + * Privacy class for Moodle Gapfill question type. + * + * @package qtype_gapfill + * @copyright Marcus Green 2018 + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ +namespace qtype_gapfill\privacy; +defined('MOODLE_INTERNAL') || die(); + +/** + * Privacy Subsystem for qtype_gapfill implementing null_provider. + * + * @copyright 2018 Marcus Green + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ +class provider implements + // This plugin does not store any personal user data. + \core_privacy\local\metadata\null_provider +{ + use \core_privacy\local\legacy_polyfill; + /** + * 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() { + return 'privacy:null_reason'; + } +} \ No newline at end of file