Skip to:
Content

BuddyPress.org

Changeset 12206


Ignore:
Timestamp:
08/30/2018 01:27:29 AM (7 years ago)
Author:
imath
Message:

BP Nouveau: bring back the single group members search form filter.

This specific filter was forgotten in r12183, the bp_directory_members_search_form filter is also fired when bp_groups_members_template_part() displays the single group members loop.

See #7881
See #7955
(branch 3.0)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/src/bp-templates/bp-nouveau/includes/template-tags.php

    r12183 r12206  
    19011901            do_action( 'bp_members_directory_member_sub_types' );
    19021902        }
    1903     } elseif ( 'group' === $objects['primary'] && 'activity' === $objects['secondary'] ) {
    1904         /**
    1905          * Fires inside the syndication options list, after the RSS option.
    1906          *
    1907          * @since 1.2.0
    1908          */
    1909         do_action( 'bp_group_activity_syndication_options' );
     1903    } elseif ( 'group' === $objects['primary'] ) {
     1904        if ( 'members' !== $objects['secondary'] ) {
     1905            /**
     1906             * Filter here to edit the HTML output of the displayed group search form.
     1907             *
     1908             * @since 3.2.0
     1909             *
     1910             * @param string $search_form_html The HTML output for the directory search form.
     1911             */
     1912            echo apply_filters( "bp_group_{$objects['secondary']}_search_form", $search_form_html );
     1913
     1914        } else {
     1915            /**
     1916             * Filters the Members component search form.
     1917             *
     1918             * @since 1.9.0
     1919             *
     1920             * @param string $search_form_html HTML markup for the member search form.
     1921             */
     1922            echo apply_filters( 'bp_directory_members_search_form', $search_form_html );
     1923        }
     1924
     1925        if ( 'members' === $objects['secondary'] ) {
     1926            /**
     1927             * Fires at the end of the group members search unordered list.
     1928             *
     1929             * Part of bp_groups_members_template_part().
     1930             *
     1931             * @since 1.5.0
     1932             */
     1933            do_action( 'bp_members_directory_member_sub_types' );
     1934
     1935        } elseif ( 'activity' === $objects['secondary'] ) {
     1936            /**
     1937             * Fires inside the syndication options list, after the RSS option.
     1938             *
     1939             * @since 1.2.0
     1940             */
     1941            do_action( 'bp_group_activity_syndication_options' );
     1942        }
    19101943    }
    19111944}
Note: See TracChangeset for help on using the changeset viewer.