bp_notifications_clear_all_for_user_cache_before_delete( int $args )
Invalidate the ‘all_for_user_’ cache when deleting.
Description
Parameters
- $args
-
(Required) Notification deletion arguments.
Source
File: bp-notifications/bp-notifications-cache.php
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | function bp_notifications_clear_all_for_user_cache_before_delete( $args ) { // Pull up a list of items matching the args (those about te be deleted). $ns = BP_Notifications_Notification::get( $args ); $user_ids = array (); foreach ( $ns as $n ) { $user_ids [] = $n ->user_id; } $user_ids = array_unique ( $user_ids ); foreach ( $user_ids as $user_id ) { bp_notifications_clear_all_for_user_cache( $user_id ); } } |
Changelog
Version | Description |
---|---|
BuddyPress 2.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.