You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.1 KiB
55 lines
2.1 KiB
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* This file contains the assignfeedback_user_provider interface.
|
|
*
|
|
* Assignment Sub plugins should implement this if they store personal information and can retrieve a userid.
|
|
*
|
|
* @package mod_assign
|
|
* @copyright 2018 Adrian Greeve <adrian@moodle.com>
|
|
*
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
namespace mod_assign\privacy;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
interface assignfeedback_user_provider extends
|
|
\core_privacy\local\request\plugin\subplugin_provider,
|
|
\core_privacy\local\request\shared_userlist_provider
|
|
{
|
|
|
|
/**
|
|
* If you have tables that contain userids and you can generate entries in your tables without creating an
|
|
* entry in the assign_grades table then please fill in this method.
|
|
*
|
|
* @param \core_privacy\local\request\userlist $userlist The userlist object
|
|
*/
|
|
public static function get_userids_from_context(\core_privacy\local\request\userlist $userlist);
|
|
|
|
/**
|
|
* Deletes all feedback for the grade ids / userids provided in a context.
|
|
* assign_plugin_request_data contains:
|
|
* - context
|
|
* - assign object
|
|
* - grade ids (pluginids)
|
|
* - user ids
|
|
* @param assign_plugin_request_data $deletedata A class that contains the relevant information required for deletion.
|
|
*/
|
|
public static function delete_feedback_for_grades(assign_plugin_request_data $deletedata);
|
|
|
|
}
|
|
|