芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/privacy/classes/local/request/plugin/subsystem_provider.php
. /** * This file contains the \core_privacy\local\request\plugin\subsystem_provider * interface to describe a class which provides data in some form for a * subsystem. * * It should not be implemented directly, but should be extended by the * subsystem responsible for the plugintype. * * @package core_privacy * @copyright 2018 Andrew Nicols
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_privacy\local\request\plugin; defined('MOODLE_INTERNAL') || die(); /** * The subsystem_provider interface is for plugins which may not * necessarily be called directly, but instead via a subsystem. * * One example of this is the questiontype plugintype. These are * intrinsically linked against the question subsystem and the question * subsystem should define an interface extending this one through which it * can query and retrieve specific data from each questiontype as required. * * Each questiontype may additionally respond directly to the privacy API * if it also impleents the \core_privacay\local\request\plugin\provider * interface directly. * * Care should be taken when extending this provider to not conflict with * the \core_privacay\local\request\plugin\provider interface. * * @package core_privacy * @copyright 2018 Andrew Nicols
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ interface subsystem_provider extends \core_privacy\local\request\shared_data_provider { }