. /** * Privacy Subsystem implementation for the HTML formatter plugin for TinyMCE. * * @package tiny_html * @copyright 2023 Matt Porritt * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tiny_html\privacy; /** * Privacy Subsystem implementation for the HTML plugin for TinyMCE. * * @package tiny_html * @copyright 2023 Matt Porritt * @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'; } }