Changeset 14159
- Timestamp:
- 12/19/2025 07:05:53 PM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/bp-members/bp-members-invitations.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-invitations.php
r14077 r14159 1 1 <?php 2 2 /** 3 * BuddyPress Members ip Invitations3 * BuddyPress Membership Invitations 4 4 * 5 5 * @package BuddyPress … … 44 44 * 45 45 * @since 8.0.0 46 *47 * @param bool|WP_Error $user_id True on success, WP_Error on failure.48 46 */ 49 function bp_members_invitations_complete_signup( $user_id) {47 function bp_members_invitations_complete_signup() { 50 48 51 49 // Check to see if this signup is the result of a valid invitation. … … 80 78 'id' => $invite->id, 81 79 ); 80 82 81 $invites_class->accept_invitation( $args ); 83 82 … … 130 129 131 130 /** 132 * If a user submits a site membership request, but there's a 131 * If a user submits a site membership request, but there's already a 133 132 * sent invitation to her, bypass the manual approval of the request. 134 133 * … … 180 179 * @since 12.0.0 181 180 * 182 * @ param bool $accessWhether the user can view member invitations screens.181 * @return bool Whether the user can view member invitations screens. 183 182 */ 184 183 function bp_members_invitations_user_can_view_screens() { … … 192 191 * @since 12.0.0 193 192 * 194 * @ param bool $accessWhether the user can view member invitations send screen.193 * @return bool Whether the user can view member invitations send screen. 195 194 */ 196 195 function bp_members_invitations_user_can_view_send_screen() {
Note: See TracChangeset
for help on using the changeset viewer.