Differences Between: [Versions 400 and 401] [Versions 400 and 402] [Versions 400 and 403]
Privacy class for requesting user data for auth_oauth2.
Copyright: | 2018 Carlos Escobedo <carlos@moodle.com> |
License: | http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
File Size: | 196 lines (8 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
provider:: (8 methods):
get_metadata()
get_contexts_for_userid()
get_users_in_context()
export_user_data()
delete_data_for_all_users_in_context()
delete_data_for_users()
delete_data_for_user()
delete_user_data()
get_metadata(collection $collection) X-Ref |
Get information about the user data stored by this plugin. return: collection The metadata. param: collection $collection An object for storing metadata. |
get_contexts_for_userid(int $userid) X-Ref |
Return all contexts for this userid. In this situation the user context. return: contextlist The list of context IDs. param: int $userid The user ID. |
get_users_in_context(userlist $userlist) X-Ref |
Get the list of users within a specific context. param: userlist $userlist The userlist containing the list of users who have data in this context/plugin combination. |
export_user_data(approved_contextlist $contextlist) X-Ref |
Export all oauth2 information for the list of contexts and this user. param: approved_contextlist $contextlist The list of approved contexts for a user. |
delete_data_for_all_users_in_context(\context $context) X-Ref |
Delete all user data for this context. param: \context $context The context to delete data for. |
delete_data_for_users(approved_userlist $userlist) X-Ref |
Delete multiple users within a single context. param: approved_userlist $userlist The approved context and user information to delete information for. |
delete_data_for_user(approved_contextlist $contextlist) X-Ref |
Delete all user data for this user only. param: approved_contextlist $contextlist The list of approved contexts for a user. |
delete_user_data(int $userid) X-Ref |
This does the deletion of user data for the auth_oauth2. param: int $userid The user ID |