bp_nouveau_get_activity_directory_nav_items()
Source Source
File: bp-templates/bp-nouveau/includes/activity/functions.php
function bp_nouveau_get_activity_directory_nav_items() { $nav_items = array(); $nav_items['all'] = array( 'component' => 'activity', 'slug' => 'all', // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array( 'dynamic' ), 'link' => bp_get_activity_directory_permalink(), 'text' => __( 'All Members', 'buddypress' ), 'count' => '', 'position' => 5, ); // deprecated hooks $deprecated_hooks = array( array( 'bp_before_activity_type_tab_all', 'activity', 0 ), array( 'bp_activity_type_tabs', 'activity', 46 ), ); if ( is_user_logged_in() ) { $deprecated_hooks = array_merge( $deprecated_hooks, array( array( 'bp_before_activity_type_tab_friends', 'activity', 6 ), array( 'bp_before_activity_type_tab_groups', 'activity', 16 ), array( 'bp_before_activity_type_tab_favorites', 'activity', 26 ), ) ); // If the user has favorite create a nav item if ( bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) ) { $nav_items['favorites'] = array( 'component' => 'activity', 'slug' => 'favorites', // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array(), 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/favorites/', 'text' => __( 'My Favorites', 'buddypress' ), 'count' => false, 'position' => 35, ); } // The friends component is active and user has friends if ( bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) { $nav_items['friends'] = array( 'component' => 'activity', 'slug' => 'friends', // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array( 'dynamic' ), 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/' . bp_nouveau_get_component_slug( 'friends' ) . '/', 'text' => __( 'My Friends', 'buddypress' ), 'count' => '', 'position' => 15, ); } // The groups component is active and user has groups if ( bp_is_active( 'groups' ) && bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) { $nav_items['groups'] = array( 'component' => 'activity', 'slug' => 'groups', // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array( 'dynamic' ), 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/' . bp_nouveau_get_component_slug( 'groups' ) . '/', 'text' => __( 'My Groups', 'buddypress' ), 'count' => '', 'position' => 25, ); } // Mentions are allowed if ( bp_activity_do_mentions() ) { $deprecated_hooks[] = array( 'bp_before_activity_type_tab_mentions', 'activity', 36 ); $count = ''; if ( bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ) { $count = bp_get_total_mention_count_for_user( bp_loggedin_user_id() ); } $nav_items['mentions'] = array( 'component' => 'activity', 'slug' => 'mentions', // slug is used because BP_Core_Nav requires it, but it's the scope 'li_class' => array( 'dynamic' ), 'link' => bp_loggedin_user_domain() . bp_nouveau_get_component_slug( 'activity' ) . '/mentions/', 'text' => __( 'Mentions', 'buddypress' ), 'count' => $count, 'position' => 45, ); } } // Check for deprecated hooks : foreach ( $deprecated_hooks as $deprectated_hook ) { list( $hook, $component, $position ) = $deprectated_hook; $extra_nav_items = bp_nouveau_parse_hooked_dir_nav( $hook, $component, $position ); if ( ! empty( $extra_nav_items ) ) { $nav_items = array_merge( $nav_items, $extra_nav_items ); } } /** * Filters the activity directory navigation items. * * Use this filter to introduce your custom nav items for the activity directory. * * @since 3.0.0 * * @param array $nav_items The list of the activity directory nav items. */ return apply_filters( 'bp_nouveau_get_activity_directory_nav_items', $nav_items ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |