BP_Activity_Component::late_includes()
Late includes method.
Description
Only load up certain code when on specific pages.
Source
File: bp-activity/classes/class-bp-activity-component.php
public function late_includes() { // Bail if PHPUnit is running. if ( defined( 'BP_TESTS_DIR' ) ) { return; } /* * Load activity action and screen code if PHPUnit isn't running. * * For PHPUnit, we load these files in tests/phpunit/includes/install.php. */ if ( bp_is_current_component( 'activity' ) ) { // Authenticated actions - Only fires when JS is disabled. if ( is_user_logged_in() && in_array( bp_current_action(), array( 'delete', 'spam', 'post', 'reply', 'favorite', 'unfavorite' ), true ) ) { require $this->path . 'bp-activity/actions/' . bp_current_action() . '.php'; } // RSS feeds. if ( bp_is_current_action( 'feed' ) || bp_is_action_variable( 'feed', 0 ) ) { require $this->path . 'bp-activity/actions/feeds.php'; } // Screens - Directory. if ( bp_is_activity_directory() ) { require $this->path . 'bp-activity/screens/directory.php'; } // Screens - User main nav. if ( bp_is_user() ) { require $this->path . 'bp-activity/screens/just-me.php'; } // Screens - User secondary nav. if ( bp_is_user() && in_array( bp_current_action(), array( 'friends', 'groups', 'favorites', 'mentions' ), true ) ) { require $this->path . 'bp-activity/screens/' . bp_current_action() . '.php'; } // Screens - Single permalink. if ( bp_is_current_action( 'p' ) || is_numeric( bp_current_action() ) ) { require $this->path . 'bp-activity/screens/permalink.php'; } // Theme compatibility. new BP_Activity_Theme_Compat(); } }
Changelog
Version | Description |
---|---|
BuddyPress 3.0.0 | 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.