Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Privacy class for requesting user data.

Copyright: 2018 Jake Dallimore <jrhdallimore@gmail.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 66 lines (3 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

portfolio_provider:: (3 methods):
  export_portfolio_user_data()
  delete_portfolio_for_context()
  delete_portfolio_for_user()


Interface: portfolio_provider  - X-Ref

Provider for the portfolio API.

export_portfolio_user_data(int $userid, \context $context, array $subcontext, array $linkarray)   X-Ref
Export all portfolio data from each portfolio plugin for the specified userid and context.

param: int         $userid The user to export.
param: \context    $context The context to export.
param: array       $subcontext The subcontext within the context to export this information to.
param: array       $linkarray The weird and wonderful link array used to display information for a specific item

delete_portfolio_for_context(\context $context)   X-Ref
Delete all user information for the provided context.

param: \context $context The context to delete user data for.

delete_portfolio_for_user(int $userid, \context $context)   X-Ref
Delete all user information for the provided user and context.

param: int      $userid    The user to delete
param: \context $context   The context to refine the deletion.