Changeset 12960
- Timestamp:
- 06/05/2021 03:42:50 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-invitations.php
r12945 r12960 11 11 defined( 'ABSPATH' ) || exit; 12 12 13 /** 14 * Set up the displayed user's Members Invitations nav. 15 * 16 * @since 8.0.0 17 */ 13 18 function bp_members_invitations_setup_nav() { 14 19 if ( ! bp_get_members_invitations_allowed() ) { … … 63 68 * When a user joins the network via an invitation, skip sending the activation email. 64 69 * 70 * @since 8.0.0 71 * 65 72 * @param bool $send Whether or not to send the activation key. 66 73 * @param int $user_id User ID to send activation key to. … … 69 76 * @param array $usermeta Miscellaneous metadata about the user (blog-specific 70 77 * signup data, xprofile data, etc). 78 * @return bool Whether or not to send the activation key. 71 79 */ 72 80 function bp_members_invitations_cancel_activation_email( $send, $user_id, $user_email, $activation_key, $usermeta ) { … … 90 98 * - mark all invitations and requests as accepted 91 99 * - activate the user upon signup 100 * 101 * @since 8.0.0 92 102 * 93 103 * @param bool|WP_Error $user_id True on success, WP_Error on failure.
Note: See TracChangeset
for help on using the changeset viewer.