BP_Groups_List_Table::get_bulk_actions()
Get bulk actions for single group row.
Description Description
Return Return
(array) Key/value pairs for the bulk actions dropdown.
Source Source
File: bp-groups/classes/class-bp-groups-list-table.php
public function get_bulk_actions() { /** * Filters the list of bulk actions to display on a single group row. * * @since 1.7.0 * * @param array $value Array of bulk actions to display. */ return apply_filters( 'bp_groups_list_table_get_bulk_actions', array( 'delete' => __( 'Delete', 'buddypress' ) ) ); }
Changelog Changelog
Version | Description |
---|---|
1.7.0 | Introduced. |