Changeset 13890 for trunk/src/bp-friends/bp-friends-functions.php
- Timestamp:
- 06/02/2024 01:06:10 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-friends/bp-friends-functions.php
r13503 r13890 29 29 * When true, running friends_add_friend() will result in an accepted 30 30 * friendship, with no notifications being sent. Default: false. 31 * @return bool True on success, false on failure.31 * @return bool 32 32 */ 33 33 function friends_add_friend( $initiator_userid, $friend_userid, $force_accept = false ) { … … 97 97 * @param int $initiator_userid ID of the friendship initiator. 98 98 * @param int $friend_userid ID of the friend user. 99 * @return bool True on success, false on failure.99 * @return bool 100 100 */ 101 101 function friends_remove_friend( $initiator_userid, $friend_userid ) { … … 157 157 * 158 158 * @param int $friendship_id ID of the pending friendship object. 159 * @return bool True on success, false on failure.159 * @return bool 160 160 */ 161 161 function friends_accept_friendship( $friendship_id ) { … … 194 194 * 195 195 * @param int $friendship_id ID of the pending friendship object. 196 * @return bool True on success, false on failure.196 * @return bool 197 197 */ 198 198 function friends_reject_friendship( $friendship_id ) { … … 225 225 * user who requested the friendship, and is doing the withdrawing. 226 226 * @param int $friend_userid ID of the requested friend. 227 * @return bool True on success, false on failure.227 * @return bool 228 228 */ 229 229 function friends_withdraw_friendship( $initiator_userid, $friend_userid ) {
Note: See TracChangeset
for help on using the changeset viewer.