- Timestamp:
- 08/23/2021 02:03:02 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-notifications/bp-notifications-template.php
r13034 r13091 493 493 echo bp_get_the_notification_description(); 494 494 } 495 496 495 /** 497 496 * Get full-text description for a specific notification. … … 526 525 * @since 2.3.0 Added the `$notification` parameter. 527 526 * 528 * @param string $description Full-text description for a specific notification.529 * @param object$notification Notification object.527 * @param string $description Full-text description for a specific notification. 528 * @param BP_Notifications_Notification $notification Notification object. 530 529 */ 531 530 return apply_filters( 'bp_get_the_notification_description', $description, $notification ); … … 600 599 $args = array( 601 600 'action' => 'read', 602 'notification_id' => $id 601 'notification_id' => $id, 603 602 ); 604 603 … … 692 691 $args = array( 693 692 'action' => 'unread', 694 'notification_id' => $id 693 'notification_id' => $id, 695 694 ); 696 695 … … 835 834 $args = array( 836 835 'action' => 'delete', 837 'notification_id' => $id 836 'notification_id' => $id, 838 837 ); 839 838
Note: See TracChangeset
for help on using the changeset viewer.