Product SiteDocumentation Site

5.8.2. Users

EVENT_MANAGE_USER_CREATE_FORM (Execute)

This event allows plugins to do processing or display form elements on the Create User page. It is triggered immediately before the submit button.
Any output here should follow the format found in manage_user_create_page.php.

EVENT_MANAGE_USER_CREATE (Execute)

This event allows plugins to do post-processing of newly-created users. This event is triggered for each user created. The Users create form is one possible case for triggering such events, but there can be other ways users can be created.

Parameters

  • <Integer>: User ID

EVENT_MANAGE_USER_UPDATE_FORM (Execute)

This event allows plugins to do processing or display form elements in the Manage User page. It is triggered immediately before the submit button.
Any output here should follow the format found in manage_user_edit_page.php.

Parameters

  • <Integer>: User ID

EVENT_MANAGE_USER_UPDATE (Execute)

This event allows plugins to do post-processing of modified users. This may be triggered by the Manage User page or some other path.

Parameters

  • <Integer>: User ID

EVENT_MANAGE_USER_DELETE (Execute)

This event allows plugins to do pre-processing of user deletion.

Parameters

  • <Integer>: User ID

EVENT_MANAGE_USER_PAGE (Execute)

This event allows plugins to do processing or display information on the View User page. It is triggered immediately after the reset password segment.
Any output here should be contained within its own container.

Parameters

  • <Integer>: User ID

EVENT_MANAGE_PROJECT_USER_CREATE (Execute)

This event allows plugins to do post-processing of newly-added user on project.

Parameters

  • <Integer>: User ID
  • <Integer>: Project ID

EVENT_MANAGE_PROJECT_USER_UPDATE (Execute)

This event allows plugins to do post-processing of modified user on project.

Parameters

  • <Integer>: User ID
  • <Integer>: Project ID

EVENT_MANAGE_PROJECT_USER_DELETE (Execute)

This event allows plugins to do pre-processing of user deletion on project. This event is triggered prior to the user removal from the project in database.

Parameters

  • <Integer>: User ID
  • <Integer>: Project ID