Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/27/2015 05:25:02 AM (9 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Groups Component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/bp-groups-cache.php

    r9906 r10148  
    11<?php
    2 
    32/**
    43 * BuddyPress Groups Caching.
     
    1110 */
    1211
    13 // Exit if accessed directly
     12// Exit if accessed directly.
    1413defined( 'ABSPATH' ) || exit;
    1514
     
    6261 * Bust group caches when editing or deleting.
    6362 *
    64  * @since BuddyPress (1.7.0)
     63 * @since 1.7.0
    6564 *
    6665 * @param int $group_id The group being edited.
     
    7776 * Bust group cache when modifying metadata.
    7877 *
    79  * @since BuddyPress (2.0.0)
     78 * @since 2.0.0
    8079 *
    8180 * @param int $meta_id
     
    9190 * Clear caches for the group creator when a group is created.
    9291 *
    93  * @since BuddyPress (1.6.0)
     92 * @since 1.6.0
    9493 *
    9594 * @param int             $group_id  ID of the group.
     
    105104 * Clears caches for all members in a group when a group is deleted.
    106105 *
    107  * @since BuddyPress (1.6.0)
     106 * @since 1.6.0
    108107 *
    109108 * @param BP_Groups_Group $group_obj Group object.
     
    122121 * Count is cleared when an invite is accepted, rejected or deleted.
    123122 *
    124  * @since BuddyPress (2.0.0)
     123 * @since 2.0.0
    125124 *
    126125 * @param int $user_id The user ID.
     
    138137 * Groan. Our API functions are not consistent.
    139138 *
    140  * @since BuddyPress (2.0.0)
     139 * @since 2.0.0
    141140 *
    142141 * @param int $group_id The group ID. Not used in this function.
     
    151150 * Clear a user's cached total group invite count when a new invite is sent.
    152151 *
    153  * @since BuddyPress (2.0.0)
     152 * @since 2.0.0
    154153 *
    155154 * @param int   $group_id      The group ID. Not used in this function.
     
    182181 * Clear group administrator cache.
    183182 *
    184  * @since BuddyPress (2.1.0)
     183 * @since 2.1.0
    185184 *
    186185 * @param int $group_id The group ID.
     
    199198 * using {@link BP_Groups_Member::save()}.  Usually via a plugin.
    200199 *
    201  * @since BuddyPress (2.1.0)
     200 * @since 2.1.0
    202201 *
    203202 * @param BP_Groups_Member $member
Note: See TracChangeset for help on using the changeset viewer.