Changeset 10148 for trunk/src/bp-groups/bp-groups-cache.php
- Timestamp:
- 09/27/2015 05:25:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-cache.php
r9906 r10148 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Groups Caching. … … 11 10 */ 12 11 13 // Exit if accessed directly 12 // Exit if accessed directly. 14 13 defined( 'ABSPATH' ) || exit; 15 14 … … 62 61 * Bust group caches when editing or deleting. 63 62 * 64 * @since BuddyPress (1.7.0)63 * @since 1.7.0 65 64 * 66 65 * @param int $group_id The group being edited. … … 77 76 * Bust group cache when modifying metadata. 78 77 * 79 * @since BuddyPress (2.0.0)78 * @since 2.0.0 80 79 * 81 80 * @param int $meta_id … … 91 90 * Clear caches for the group creator when a group is created. 92 91 * 93 * @since BuddyPress (1.6.0)92 * @since 1.6.0 94 93 * 95 94 * @param int $group_id ID of the group. … … 105 104 * Clears caches for all members in a group when a group is deleted. 106 105 * 107 * @since BuddyPress (1.6.0)106 * @since 1.6.0 108 107 * 109 108 * @param BP_Groups_Group $group_obj Group object. … … 122 121 * Count is cleared when an invite is accepted, rejected or deleted. 123 122 * 124 * @since BuddyPress (2.0.0)123 * @since 2.0.0 125 124 * 126 125 * @param int $user_id The user ID. … … 138 137 * Groan. Our API functions are not consistent. 139 138 * 140 * @since BuddyPress (2.0.0)139 * @since 2.0.0 141 140 * 142 141 * @param int $group_id The group ID. Not used in this function. … … 151 150 * Clear a user's cached total group invite count when a new invite is sent. 152 151 * 153 * @since BuddyPress (2.0.0)152 * @since 2.0.0 154 153 * 155 154 * @param int $group_id The group ID. Not used in this function. … … 182 181 * Clear group administrator cache. 183 182 * 184 * @since BuddyPress (2.1.0)183 * @since 2.1.0 185 184 * 186 185 * @param int $group_id The group ID. … … 199 198 * using {@link BP_Groups_Member::save()}. Usually via a plugin. 200 199 * 201 * @since BuddyPress (2.1.0)200 * @since 2.1.0 202 201 * 203 202 * @param BP_Groups_Member $member
Note: See TracChangeset
for help on using the changeset viewer.