BP_Invitation_Manager::get_requests( $args = array() )
Get requests, based on provided filter parameters.
Description
See also
- BP_Invitation::get(): for a description of accepted parameters.
Return
(array) Located invitations.
Source
File: bp-core/classes/class-bp-invitation-manager.php
393 394 395 396 397 398 399 400 401 402 403 | public function get_requests( $args = array () ) { // Set request-specific parameters. $args [ 'type' ] = 'request' ; $args [ 'inviter_id' ] = false; $args [ 'invite_sent' ] = 'all' ; // Use the class_name property value. $args [ 'class' ] = $this ->class_name; return BP_Invitation::get( $args ); } |
Changelog
Version | Description |
---|---|
BuddyBoss 1.3.5 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.