BP_Invitation_Manager::invitation_exists( $args = array() )
Check whether an invitation exists matching the passed arguments.
Description Description
See also See also
- BP_Invitation::get(): for a description of accepted parameters.
Return Return
(int|bool) ID of first found invitation or false if none found.
Source Source
File: bp-core/classes/class-bp-invitation-manager.php
public function invitation_exists( $args = array() ) {
$is_invited = false;
$args['fields'] = 'ids';
$invites = $this->get_invitations( $args );
if ( $invites ) {
$is_invited = current( $invites );
}
return $is_invited;
}
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |