friends_withdraw_friendship (intinitiator_userid美元,intfriend_userid美元)
撤销连接请求。
描述
参数
- initiator_userid美元
-
(int)(必需)友谊发起者的ID——这是请求友谊并正在进行退出的用户。
- friend_userid美元
-
(int)(必需)请求的朋友的ID。
返回
(保龄球)成功时真,失败时假。
源
文件:bp-friends / bp-friends-functions.php
function friends_withdraw_friendship($initiator_userid, $friend_userid) {$friendship_id = BP_Friends_Friendship::get_friendship_id($initiator_userid, $friend_userid);$ friends_friendship = new BP_Friends_Friendship($friendship_id, true, false);if (empty($friendship->is_confirmed) && BP_Friends_Friendship::withdraw($friendship_id)) {// @deprecated Since 1.9 do_action_ref_array('friends_friendship_whithdrawn', array($friendship_id, &$friendship));/** *在连接请求被撤销后触发。* * @since BuddyPress 1.9.0 * * @param int $friendship_id好友ID。* @param BP_Friends_Friendship $friendship友谊对象。以引用的方式传递。*/ do_action_ref_array('friends_friendship_withdraw ', array($friendship_id, &$friendship));返回true;}返回false; }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.6.0 | 介绍了。 |