Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/17/2014 08:22:32 PM (10 years ago)
Author:
boonebgorges
Message:

Add docblock for groups_get_invites_for_group().

Props dcavins.
Fixes #6023.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/bp-groups-functions.php

    r9121 r9152  
    10481048}
    10491049
     1050/**
     1051 * Get IDs of users with outstanding invites to a given group from a specified user.
     1052 *
     1053 * @param int $user_id ID of the inviting user.
     1054 * @param int $group_id ID of the group.
     1055 * @return array IDs of users who have been invited to the group by the
     1056 *         user but have not yet accepted.
     1057 */
    10501058function groups_get_invites_for_group( $user_id, $group_id ) {
    10511059    return BP_Groups_Group::get_invites( $user_id, $group_id );
Note: See TracChangeset for help on using the changeset viewer.