BP_Friends_Friendship:: get_friendship_id (intuser_id美元,intfriend_id美元)
获取一对用户之间的友谊对象(如果有的话)的ID。
描述
参数
- user_id美元
-
(int)(必需)第一个用户的ID。
- friend_id美元
-
(int)(必需)第二个用户的ID。
返回
(int |空)如果找到友谊对象的ID,则为空。
源
文件:bp-friends /类/ class-bp-friends-friendship.php
Public static function get_friendship_id($user_id, $friend_id) {$friendship_id = null;//不能加自己为朋友。If ($user_id == $friend_id) {return $friendship_id;} /* *查找可能的friend_userid是*启动器或朋友的友谊。*/ $args = array('initiator_user_id' => $friend_id, 'friend_user_id' => $friend_id);$result = self::get_friendships($user_id, $args, 'OR');If ($result) {$friendship_id = current($result)->id;}返回friendship_id美元;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |