groups_group_after_save
Fires after the current group item has been saved.
Description
Parameters (1)
- 0. $array (array) =>
array( &$this )
- Current instance of the group item that was saved. Passed by reference.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'groups_group_after_save', $array );
- The following example is for adding a hook callback.
- // define the groups_group_after_save callback
- function action_groups_group_after_save( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'groups_group_after_save', 'action_groups_group_after_save', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'groups_group_after_save', 'action_groups_group_after_save', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /bp-groups/classes/class-bp-groups-group.php
- do_action_ref_array( 'groups_group_after_save', array( &$this ) );