This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BBP_Forums_Group_Extension::setup_actions()
Setup the group forums class actions
Description
Source
File: bp-forums/groups.php
private function setup_actions() {
// Possibly redirect
add_action( 'bbp_template_redirect', array( $this, 'redirect_canonical' ) );
// Remove group forum cap map when view is done
add_action( 'bbp_after_group_forum_display', array( $this, 'remove_group_forum_meta_cap_map' ) );
// Forums needs to listen to BuddyBoss group deletion.
add_action( 'groups_before_delete_group', array( $this, 'disconnect_forum_from_group' ) );
// Adds a Forums metabox to the new BuddyBoss Group Admin UI
add_action( 'bp_groups_admin_meta_boxes', array( $this, 'group_admin_ui_edit_screen' ) );
// Saves the Forums options if they come from the BuddyBoss Group Admin UI
add_action( 'bp_group_admin_edit_after', array( $this, 'edit_screen_save' ) );
// Adds a hidden input value to the "Group Settings" page
add_action( 'bp_before_group_settings_admin', array( $this, 'group_settings_hidden_field' ) );
}
Changelog
| Version | Description |
|---|---|
| bbPress (r4552) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.