本文整理汇总了PHP中BP_Friends_Friendship::withdraw方法的典型用法代码示例。如果您正苦于以下问题:PHP BP_Friends_Friendship::withdraw方法的具体用法?PHP BP_Friends_Friendship::withdraw怎么用?PHP BP_Friends_Friendship::withdraw使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BP_Friends_Friendship
的用法示例。
在下文中一共展示了BP_Friends_Friendship::withdraw方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: friends_withdraw_friendship
/**
* Withdraw a friendship request.
*
* @since 1.6.0
*
* @param int $initiator_userid ID of the friendship initiator - this is the
* user who requested the friendship, and is doing the withdrawing.
* @param int $friend_userid ID of the requested friend.
* @return bool True on success, false on failure.
*/
function friends_withdraw_friendship($initiator_userid, $friend_userid)
{
$friendship_id = BP_Friends_Friendship::get_friendship_id($initiator_userid, $friend_userid);
$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));
/**
* Fires after a friendship request has been withdrawn.
*
* @since 1.9.0
*
* @param int $friendship_id ID of the friendship.
* @param BP_Friends_Friendship $friendship Friendship object. Passed by reference.
*/
do_action_ref_array('friends_friendship_withdrawn', array($friendship_id, &$friendship));
return true;
}
return false;
}
示例2: friends_withdraw_friendship
/**
* Withdraw a friendship request.
*
* @param int $initiator_userid ID of the friendship initiator - this is the
* user who requested the friendship, and is doing the withdrawing.
* @param int $friend_userid ID of the requested friend.
* @return bool True on success, false on failure.
*/
function friends_withdraw_friendship($initiator_userid, $friend_userid)
{
$friendship_id = BP_Friends_Friendship::get_friendship_id($initiator_userid, $friend_userid);
$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 1.9
do_action_ref_array('friends_friendship_withdrawn', array($friendship_id, &$friendship));
return true;
}
return false;
}
示例3: friends_withdraw_friendship
function friends_withdraw_friendship($initiator_userid, $friend_userid)
{
global $bp;
$friendship_id = BP_Friends_Friendship::get_friendship_id($initiator_userid, $friend_userid);
$friendship = new BP_Friends_Friendship($friendship_id, true, false);
if (!$friendship->is_confirmed && BP_Friends_Friendship::withdraw($friendship_id)) {
// Remove the friend request notice
bp_core_delete_notifications_by_item_id($friendship->friend_user_id, $friendship->initiator_user_id, $bp->friends->id, 'friendship_request');
do_action_ref_array('friends_friendship_whithdrawn', array($friendship_id, &$friendship));
return true;
}
return false;
}