- Timestamp:
- 04/28/2018 01:32:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/includes/members/template-tags.php
r11985 r12008 19 19 * Fires at the begining of the templates BP injected content. 20 20 * 21 * @since 2.3.0 (BuddyPress)21 * @since 2.3.0 22 22 */ 23 23 do_action( 'bp_before_directory_members_page' ); … … 26 26 * Fires before the display of the members. 27 27 * 28 * @since 1.1.0 (BuddyPress)28 * @since 1.1.0 29 29 */ 30 30 do_action( 'bp_before_directory_members' ); … … 33 33 * Fires before the display of the members content. 34 34 * 35 * @since 1.1.0 (BuddyPress)35 * @since 1.1.0 36 36 */ 37 37 do_action( 'bp_before_directory_members_content' ); … … 40 40 * Fires before the display of the members list tabs. 41 41 * 42 * @since 1.8.0 (BuddyPress)42 * @since 1.8.0 43 43 */ 44 44 do_action( 'bp_before_directory_members_tabs' ); … … 55 55 * Fires and displays the members content. 56 56 * 57 * @since 1.1.0 (BuddyPress)57 * @since 1.1.0 58 58 */ 59 59 do_action( 'bp_directory_members_content' ); … … 62 62 * Fires after the display of the members content. 63 63 * 64 * @since 1.1.0 (BuddyPress)64 * @since 1.1.0 65 65 */ 66 66 do_action( 'bp_after_directory_members_content' ); … … 69 69 * Fires after the display of the members. 70 70 * 71 * @since 1.1.0 (BuddyPress)71 * @since 1.1.0 72 72 */ 73 73 do_action( 'bp_after_directory_members' ); … … 76 76 * Fires at the bottom of the members directory template file. 77 77 * 78 * @since 1.5.0 (BuddyPress)78 * @since 1.5.0 79 79 */ 80 80 do_action( 'bp_after_directory_members_page' ); … … 150 150 * Fires in the member header actions section. 151 151 * 152 * @since 1.2.6 (BuddyPress)152 * @since 1.2.6 153 153 */ 154 154 do_action( 'bp_member_header_actions' ); … … 200 200 * Fires inside the members action HTML markup to display actions. 201 201 * 202 * @since 1.1.0 (BuddyPress)202 * @since 1.1.0 203 203 */ 204 204 do_action( $action ); … … 603 603 * Fires before the display of member body content. 604 604 * 605 * @since 1.2.0 (BuddyPress)605 * @since 1.2.0 606 606 */ 607 607 do_action( 'bp_before_member_body' ); … … 637 637 * Fires after the display of member body content. 638 638 * 639 * @since 1.2.0 (BuddyPress)639 * @since 1.2.0 640 640 */ 641 641 do_action( 'bp_after_member_body' ); … … 659 659 * Fires before the display of a member's header. 660 660 * 661 * @since 1.2.0 (BuddyPress)661 * @since 1.2.0 662 662 */ 663 663 do_action( 'bp_before_member_header' ); … … 669 669 * Fires after the display of a member's header. 670 670 * 671 * @since 1.2.0 (BuddyPress)671 * @since 1.2.0 672 672 */ 673 673 do_action( 'bp_after_member_header' ); … … 926 926 function bp_nouveau_get_wp_profile_field_id() { 927 927 $field = bp_nouveau()->members->wp_profile_current; 928 929 /** 930 * Filters the WP profile field ID used for BuddyPress Nouveau. 931 * 932 * @since 3.0.0 933 * 934 * @param string $id Field ID. 935 */ 928 936 return apply_filters( 'bp_nouveau_get_wp_profile_field_id', $field->id ); 929 937 } … … 947 955 function bp_nouveau_get_wp_profile_field_label() { 948 956 $field = bp_nouveau()->members->wp_profile_current; 957 958 /** 959 * Filters the WP profile field label used for BuddyPress Nouveau. 960 * 961 * @since 3.0.0 962 * 963 * @param string $label Field label. 964 */ 949 965 return apply_filters( 'bp_nouveau_get_wp_profile_field_label', $field->label ); 950 966 } … … 963 979 * Filters a WP profile field value. 964 980 * 965 * @param string $data The profile field value. 981 * @since 3.0.0 982 * 983 * @param string $data The profile field data value. 966 984 */ 967 985 apply_filters( 'bp_nouveau_get_wp_profile_field_data', $data ),
Note: See TracChangeset
for help on using the changeset viewer.