Alert: 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.
BuddyPress::setup_actions()
Set up the default hooks and actions.
Description Description
Source Source
File: class-buddypress.php
private function setup_actions() { // Add actions to plugin activation and deactivation hooks add_action( 'activate_' . $this->basename, 'bp_activation' ); add_action( 'deactivate_' . $this->basename, 'bp_deactivation' ); // If BuddyPress is being deactivated, do not add any actions if ( bp_is_deactivation( $this->basename ) ) { return; } // Array of BuddyPress core actions $actions = array( 'setup_theme', // Setup the default theme compat 'setup_current_user', // Setup currently logged in user 'register_post_types', // Register post types 'register_post_statuses', // Register post statuses 'register_taxonomies', // Register taxonomies 'register_views', // Register the views 'register_theme_directory', // Register the theme directory 'register_theme_packages', // Register bundled theme packages (bp-themes) 'load_textdomain', // Load textdomain 'add_rewrite_tags', // Add rewrite tags 'generate_rewrite_rules' // Generate rewrite rules ); // Add the actions foreach( $actions as $class_action ) { if ( method_exists( $this, $class_action ) ) { add_action( 'bp_' . $class_action, array( $this, $class_action ), 5 ); } } /** * Fires after the setup of all BuddyPress actions. * * Includes bbp-core-hooks.php. * * @since 1.7.0 * * @param BuddyPress $this. Current BuddyPress instance. Passed by reference. */ do_action_ref_array( 'bp_after_setup_actions', array( &$this ) ); }
Changelog Changelog
Version | Description |
---|---|
1.6.0 | Introduced. |