當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BP_Friends_Friendship::withdraw方法代碼示例

本文整理匯總了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;
}
開發者ID:CompositeUK,項目名稱:clone.BuddyPress,代碼行數:30,代碼來源:bp-friends-functions.php

示例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;
}
開發者ID:eresyyl,項目名稱:mk,代碼行數:21,代碼來源:bp-friends-functions.php

示例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;
}
開發者ID:pyropictures,項目名稱:wordpress-plugins,代碼行數:13,代碼來源:bp-friends-functions.php


注:本文中的BP_Friends_Friendship::withdraw方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。