Changeset 7407 for trunk/bp-blogs/bp-blogs-cache.php
- Timestamp:
- 10/10/2013 02:44:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-cache.php
r7228 r7407 2 2 3 3 /** 4 * BuddyPress Blogs Caching 4 * BuddyPress Blogs Caching. 5 5 * 6 6 * Caching functions handle the clearing of cached objects and pages on specific … … 15 15 16 16 /** 17 * Clear the blog object cache 17 * Clear the blog object cache. 18 18 * 19 19 * @since BuddyPress (1.0) 20 * @package BuddyPress 21 * @subpackage BlogsCache 22 * @param int $blog_id 23 * @param int $user_id 20 * 21 * @param int $blog_id ID of the current blog. 22 * @param int $user_id ID of the user whose blog cache should be cleared. 24 23 */ 25 24 function bp_blogs_clear_blog_object_cache( $blog_id, $user_id ) { … … 29 28 30 29 /** 31 * Clear cache when a new blog is created 30 * Clear cache when a new blog is created. 32 31 * 33 32 * @since BuddyPress (1.0) 34 * @package BuddyPress 35 * @subpackage BlogsCache 36 * @param BP_Blogs_Blog $recorded_blog_obj 33 * 34 * @param BP_Blogs_Blog $recorded_blog_obj The recorded blog, passed by 'bp_blogs_new_blog'. 37 35 */ 38 36 function bp_blogs_format_clear_blog_cache( $recorded_blog_obj ) {
Note: See TracChangeset
for help on using the changeset viewer.