friends_reject_friendship (intfriendship_id美元)
将连接请求标记为拒绝。
描述
参数
- friendship_id美元
-
(int)(必需)等待的友谊对象的ID。
返回
(保龄球)成功时真,失败时假。
源
文件:bp-friends / bp-friends-functions.php
function friends_reject_friendship($friendship_id) {$friendship = new BP_Friends_Friendship($friendship_id, true, false);if (empty($friendship->is_confirmed) && BP_Friends_Friendship::reject($friendship_id)){/** *连接请求被拒绝后触发。* * @since BuddyPress 1.0.0 * * @param int $friendship_id等待友谊的ID。* @param BP_Friends_Friendship $friendships友谊对象。以引用的方式传递。*/ do_action_ref_array('friends_friendship_rejected', array($friendship_id, &$friendship));返回true;}返回false;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |