BP_Invitation_Manager::request_exists( $args = array() )
Check whether a request 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 existing request or false if none found.
Source Source
File: bp-core/classes/class-bp-invitation-manager.php
public function request_exists( $args = array() ) {
$has_request = false;
$args['fields'] = 'ids';
$requests = $this->get_requests( $args );
if ( $requests ) {
$has_request = current( $requests );
}
return $has_request;
}
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |