Changeset 6808
- Timestamp:
- 04/23/2018 03:53:41 AM (6 years ago)
- Location:
- trunk/src/includes/extend/buddypress
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/extend/buddypress/groups.php
r6791 r6808 38 38 $this->setup_filters(); 39 39 $this->maybe_unset_forum_menu(); 40 $this->fully_loaded(); 40 41 } 41 42 … … 151 152 add_filter( 'bbp_current_user_can_access_create_reply_form', array( $this, 'form_permissions' ) ); 152 153 } 154 } 155 156 /** 157 * Allow the variables, actions, and filters to be modified by third party 158 * plugins and themes. 159 * 160 * @since 2.6.0 bbPress (r6808) 161 */ 162 private function fully_loaded() { 163 do_action_ref_array( 'bbp_buddypress_groups_loaded', array( $this ) ); 153 164 } 154 165 -
trunk/src/includes/extend/buddypress/members.php
r6805 r6808 31 31 $this->setup_actions(); 32 32 $this->setup_filters(); 33 $this->fully_loaded(); 33 34 } 34 35 … … 75 76 } 76 77 78 /** 79 * Allow the variables, actions, and filters to be modified by third party 80 * plugins and themes. 81 * 82 * @since 2.6.0 bbPress (r6808) 83 */ 84 private function fully_loaded() { 85 do_action_ref_array( 'bbp_buddypress_members_loaded', array( $this ) ); 86 } 87 77 88 /** Filters ***************************************************************/ 78 89
Note: See TracChangeset
for help on using the changeset viewer.