X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/mod/assign/classes/privacy
home
/
cbholdings
/
pasukulu
/
mod
/
assign
/
classes
/
privacy
/
📁
..
📄
assign_plugin_request_data.php
(5.82 KB)
📄
assignfeedback_provider.php
(3.45 KB)
📄
assignfeedback_user_provider.php
(2.07 KB)
📄
assignsubmission_provider.php
(3.65 KB)
📄
assignsubmission_user_provider.php
(2.07 KB)
📄
feedback_legacy_polyfill.php
(3.9 KB)
📄
provider.php
(32.71 KB)
📄
submission_legacy_polyfill.php
(4.1 KB)
📄
useridlist.php
(2.61 KB)
Editing: assignfeedback_user_provider.php
<?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); }
Upload File
Create Folder