set_user_role
Fires after the user's role has changed.
Description
Parameters (3)
- 0. $array (callback) =>
array( $this, 'maybe_clear_other_linked_admins_transient' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
3
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'set_user_role', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the set_user_role callback
- function action_set_user_role( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'set_user_role', 'action_set_user_role', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'set_user_role', 'action_set_user_role', 10, 3 );
Defined (3)
The action is defined in the following location(s).
- /class.jetpack.php
- add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 );
- /sync/class.jetpack-sync-module-users.php
- add_action( 'set_user_role', array( $this, 'save_user_role_handler' ), 10, 3 );
- /sync/class.jetpack-sync-users.php
- add_action( 'set_user_role', array( __CLASS__, 'user_role_change' ) );