Skip to:
Content

BuddyPress.org

Ticket #4590: 4590.diff

File 4590.diff, 2.0 KB (added by lakrisgubben, 9 years ago)
  • src/bp-activity/bp-activity-template.php

     
    44464446         * @since 2.1.0
    44474447         *
    44484448         * @param string $context The current context. 'activity', 'member',
    4449          *                        'member_groups', 'group'.
     4449         *                        'member_groups', 'group', 'mentions'.
    44504450         *
    44514451         * @return string HTML for <option> values.
    44524452         */
     
    44554455                if ( empty( $context ) ) {
    44564456
    44574457                        // On member pages, default to 'member', unless this
    4458                         // is a user's Groups activity.
     4458                        // is a user's Groups activity or a user's mentions activity.
    44594459                        if ( bp_is_user() ) {
    44604460                                if ( bp_is_active( 'groups' ) && bp_is_current_action( bp_get_groups_slug() ) ) {
    44614461                                        $context = 'member_groups';
     4462                                } elseif ( bp_is_current_action( 'mentions' ) ) {
     4463                                        $context = 'mentions';
    44624464                                } else {
    44634465                                        $context = 'member';
    44644466                                }
     
    44984500                 * @since 2.2.0
    44994501                 *
    45004502                 * @param array  $filters Array of filter options for the given context, in the following format: $option_value => $option_name.
    4501                  * @param string $context Context for the filter. 'activity', 'member', 'member_groups', 'group'.
     4503                 * @param string $context Context for the filter. 'activity', 'member', 'member_groups', 'group', 'mentions'.
    45024504                 */
    45034505                $filters = apply_filters( 'bp_get_activity_show_filters_options', $filters, $context );
    45044506
     
    45184520                 *
    45194521                 * @param string $output  HTML output for the activity filter dropdown.
    45204522                 * @param array  $filters Array of filter options for the given context, in the following format: $option_value => $option_name.
    4521                  * @param string $context Context for the filter. 'activity', 'member', 'member_groups', 'group'.
     4523                 * @param string $context Context for the filter. 'activity', 'member', 'member_groups', 'group', 'mentions'.
    45224524                 */
    45234525                return apply_filters( 'bp_get_activity_show_filters', $output, $filters, $context );
    45244526        }