Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
Static Public Member Functions | |
static | delete_feedback_for_context (assign_plugin_request_data $requestdata) |
Any call to this method should delete all user data for the context defined in the deletion_criteria. | |
static | delete_feedback_for_grade (assign_plugin_request_data $requestdata) |
Calling this function should delete all user data associated with this grade. | |
static | export_feedback_user_data (assign_plugin_request_data $exportdata) |
Export feedback data with the available grade and userid information provided. | |
static | get_context_for_userid_within_feedback (int $userid, contextlist $contextlist) |
Retrieves the contextids associated with the provided userid for this subplugin. | |
static | get_student_user_ids (useridlist $useridlist) |
Returns student user ids related to the provided teacher ID. | |
|
static |
Any call to this method should delete all user data for the context defined in the deletion_criteria.
assign_plugin_request_data contains:
assign_plugin_request_data | $requestdata | Data useful for deleting user data from this sub-plugin. |
Implemented in assignfeedback_comments\privacy\provider, assignfeedback_editpdf\privacy\provider, and assignfeedback_file\privacy\provider.
|
static |
Calling this function should delete all user data associated with this grade.
assign_plugin_request_data contains:
assign_plugin_request_data | $requestdata | Data useful for deleting user data. |
Implemented in assignfeedback_comments\privacy\provider, assignfeedback_editpdf\privacy\provider, and assignfeedback_file\privacy\provider.
|
static |
Export feedback data with the available grade and userid information provided.
assign_plugin_request_data contains:
assign_plugin_request_data | $exportdata | Contains data to help export the user information. |
Implemented in assignfeedback_comments\privacy\provider, assignfeedback_editpdf\privacy\provider, and assignfeedback_file\privacy\provider.
|
static |
Retrieves the contextids associated with the provided userid for this subplugin.
NOTE if your subplugin must have an entry in the assign_grade table to work, then this method can be empty.
int | $userid | The user ID to get context IDs for. |
core_privacy\local\request\contextlist | $contextlist | Use add_from_sql with this object to add your context IDs. |
Implemented in assignfeedback_comments\privacy\provider, assignfeedback_editpdf\privacy\provider, and assignfeedback_file\privacy\provider.
|
static |
Returns student user ids related to the provided teacher ID.
If an entry must be present in the assign_grade table for your plugin to work then there is no need to fill in this method. If you filled in get_context_for_userid_within_feedback() then you probably have to fill this in as well.
useridlist | $useridlist | A list of user IDs of students graded by this user. |
Implemented in assignfeedback_comments\privacy\provider, assignfeedback_editpdf\privacy\provider, and assignfeedback_file\privacy\provider.