Changeset 9251
- Timestamp:
- 12/22/2014 03:49:43 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
src/bp-blogs/bp-blogs-cache.php (modified) (2 diffs)
-
src/bp-core/deprecated/2.2.php (modified) (1 diff)
-
tests/phpunit/testcases/blogs/cache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-cache.php
r7918 r9251 43 43 * @param int $user_id ID of the user whose blog cache should be cleared. 44 44 */ 45 function bp_blogs_clear_blog_object_cache( $blog_id, $user_id ) { 46 wp_cache_delete( 'bp_blogs_of_user_' . $user_id, 'bp' ); 47 wp_cache_delete( 'bp_total_blogs_for_user_' . $user_id, 'bp' ); 48 } 45 function bp_blogs_clear_blog_object_cache( $blog_id = 0, $user_id = 0 ) { 46 if ( ! empty( $user_id ) ) { 47 wp_cache_delete( 'bp_blogs_of_user_' . $user_id, 'bp' ); 48 wp_cache_delete( 'bp_total_blogs_for_user_' . $user_id, 'bp' ); 49 } 49 50 50 /**51 * Clear cache when a new blog is created.52 *53 * @since BuddyPress (1.0.0)54 *55 * @param BP_Blogs_Blog $recorded_blog_obj The recorded blog, passed by56 * 'bp_blogs_new_blog'.57 */58 function bp_blogs_format_clear_blog_cache( $recorded_blog_obj ) {59 bp_blogs_clear_blog_object_cache( false, $recorded_blog_obj->user_id );60 51 wp_cache_delete( 'bp_total_blogs', 'bp' ); 61 52 } … … 63 54 // List actions to clear object caches on 64 55 add_action( 'bp_blogs_remove_blog_for_user', 'bp_blogs_clear_blog_object_cache', 10, 2 ); 65 add_action( 'bp_blogs_new_blog', 'bp_blogs_format_clear_blog_cache', 10, 2 ); 56 add_action( 'wpmu_new_blog', 'bp_blogs_clear_blog_object_cache', 10, 2 ); 57 add_action( 'bp_blogs_remove_blog', 'bp_blogs_clear_blog_object_cache' ); 66 58 67 59 // List actions to clear super cached pages on, if super cache is installed -
trunk/src/bp-core/deprecated/2.2.php
r9194 r9251 64 64 bp_activity_post_type_update( $post ); 65 65 } 66 67 /** 68 * Clear cache when a new blog is created. 69 * 70 * @since BuddyPress (1.0.0) 71 * @deprecated BuddyPress (2.2.0) 72 * 73 * @param BP_Blogs_Blog $recorded_blog_obj The recorded blog, passed by 74 * 'bp_blogs_new_blog'. 75 */ 76 function bp_blogs_format_clear_blog_cache( $recorded_blog_obj ) { 77 _deprecated_function( __FUNCTION__, '2.2', 'bp_blogs_clear_blog_object_cache()' ); 78 bp_blogs_clear_blog_object_cache( false, $recorded_blog_obj->user_id ); 79 } -
trunk/tests/phpunit/testcases/blogs/cache.php
r9231 r9251 255 255 $this->assertEquals( $first_query_count, $wpdb->num_queries ); 256 256 } 257 258 /** 259 * @group bp_blogs_total_blogs 260 */ 261 public function test_bp_blogs_total_blogs_count_after_delete_blog() { 262 if ( ! is_multisite() ) { 263 return; 264 } 265 266 $u = $this->factory->user->create(); 267 268 // need to make sure we set the 'public' flag due to how BP_Blogs_Blogs:get_all() works 269 $b1 = $this->factory->blog->create( array( 270 'meta' => array( 271 'public' => 1 272 ) 273 ) ); 274 $b2 = $this->factory->blog->create( array( 275 'meta' => array( 276 'public' => 1 277 ) 278 ) ); 279 280 bp_blogs_record_blog( $b1, $u ); 281 bp_blogs_record_blog( $b2, $u ); 282 283 // prime total blog count 284 bp_blogs_total_blogs(); 285 286 // delete a blog 287 wpmu_delete_blog( $b2 ); 288 289 $this->assertEquals( 1, bp_blogs_total_blogs() ); 290 } 257 291 }
Note: See TracChangeset
for help on using the changeset viewer.