Changeset 10147 for trunk/src/bp-friends/bp-friends-notifications.php
- Timestamp:
- 09/27/2015 05:08:37 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-friends/bp-friends-notifications.php
r9995 r10147 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Friends Activity Functions. … … 11 10 */ 12 11 13 // Exit if accessed directly 12 // Exit if accessed directly. 14 13 defined( 'ABSPATH' ) || exit; 15 14 … … 62 61 * Filters the email address for who is getting the friend request. 63 62 * 64 * @since BuddyPress (1.2.0)63 * @since 1.2.0 65 64 * 66 65 * @param string $to Email address for who is getting the friend request. … … 71 70 * Filters the subject for the friend request email. 72 71 * 73 * @since BuddyPress (1.2.0)72 * @since 1.2.0 74 73 * 75 74 * @param string $subject Subject line to be used in friend request email. … … 81 80 * Filters the message for the friend request email. 82 81 * 83 * @since BuddyPress (1.2.0)82 * @since 1.2.0 84 83 * 85 84 * @param string $message Message to be used in friend request email. … … 96 95 * Fires after the new friend request email is sent. 97 96 * 98 * @since BuddyPress (1.5.0)97 * @since 1.5.0 99 98 * 100 99 * @param int $friend_id ID of the request recipient. … … 151 150 * Filters the email address for whose friend request got accepted. 152 151 * 153 * @since BuddyPress (1.2.0)152 * @since 1.2.0 154 153 * 155 154 * @param string $to Email address for whose friend request got accepted. … … 160 159 * Filters the subject for the friend request accepted email. 161 160 * 162 * @since BuddyPress (1.2.0)161 * @since 1.2.0 163 162 * 164 163 * @param string $subject Subject line to be used in friend request accepted email. … … 170 169 * Filters the message for the friend request accepted email. 171 170 * 172 * @since BuddyPress (1.2.0)171 * @since 1.2.0 173 172 * 174 173 * @param string $message Message to be used in friend request email. … … 184 183 * Fires after the friend request accepted email is sent. 185 184 * 186 * @since BuddyPress (1.5.0)185 * @since 1.5.0 187 186 * 188 187 * @param int $initiator_id ID of the friendship requester. … … 261 260 * - bp_friends_multiple_friendship_request_notification 262 261 * 263 * @since BuddyPress (1.0.0)262 * @since 1.0.0 264 263 * 265 264 * @param string|array $value Depending on format, an HTML link to new requests profile … … 281 280 * Fires at the end of the bp-friends notification format callback. 282 281 * 283 * @since BuddyPress (1.0.0)282 * @since 1.0.0 284 283 * 285 284 * @param string $action The kind of notification being rendered. … … 308 307 * Delete any friendship request notifications for the logged in user. 309 308 * 310 * @since BuddyPress (1.9.0)309 * @since 1.9.0 311 310 */ 312 311 function bp_friends_mark_friendship_request_notifications_by_type() { … … 320 319 * Delete any friendship acceptance notifications for the logged in user. 321 320 * 322 * @since BuddyPress (1.9.0)321 * @since 1.9.0 323 322 */ 324 323 function bp_friends_mark_friendship_accepted_notifications_by_type() { … … 332 331 * Notify one use that another user has requested their virtual friendship. 333 332 * 334 * @since BuddyPress (1.9.0)333 * @since 1.9.0 335 334 * @param int $friendship_id The unique ID of the friendship. 336 335 * @param int $initiator_user_id The friendship initiator user ID. … … 355 354 * Remove friend request notice when a member rejects another members 356 355 * 357 * @since BuddyPress (1.9.0)356 * @since 1.9.0 358 357 * 359 358 * @param int $friendship_id (not used) … … 370 369 * Notify a member when another member accepts their virtual friendship request. 371 370 * 372 * @since BuddyPress (1.9.0)371 * @since 1.9.0 373 372 * 374 373 * @param int $friendship_id The unique ID of the friendship. … … 402 401 * Remove friend request notice when a member withdraws their friend request. 403 402 * 404 * @since BuddyPress (1.9.0)403 * @since 1.9.0 405 404 * 406 405 * @param int $friendship_id (not used) … … 417 416 * Remove friendship requests FROM user, used primarily when a user is deleted. 418 417 * 419 * @since BuddyPress (1.9.0)418 * @since 1.9.0 420 419 * 421 420 * @param int $user_id
Note: See TracChangeset
for help on using the changeset viewer.