groups_get_invites_for_user (intuser_id美元,int | bool美元的限制=假,int | bool美元的页面=假,字符串| | bool数组排除美元=假)
从指定用户获取具有未完成邀请到给定组的用户id。
描述
参数
- user_id美元
-
(int)(必需)被邀请用户的ID。
- 美元的限制
-
(int|保龄球)(可选)限制限制到。
默认值:假
- 美元的页面
-
(int|保龄球)(可选)返回结果的页偏移量。
默认值:假
- 排除美元
-
(字符串|数组|保龄球)(可选)要从结果中排除的组id,以逗号分隔的列表。
默认值:假
返回
(数组)
- “组织”
(数组)分页查询返回的组数组。 - “总”
(int)匹配查询的组计数。
源
文件:bp-groups / bp-groups-functions.php
函数groups_get_invites_for_user($user_id = 0, $limit = false, $page = false, $exclude = false) {if (empty($user_id)) $user_id = bp_loggedin_user_id();返回BP_Groups_Member:: get_invited ($user_id, $limit, $page, $exclude);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |