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-activity.php

    r9906 r10148  
    11<?php
    2 
    32/**
    43 * BuddyPress Groups Activity Functions.
     
    1110 */
    1211
    13 // Exit if accessed directly
     12// Exit if accessed directly.
    1413defined( 'ABSPATH' ) || exit;
    1514
     
    7978     * Fires at end of registration of the default activity actions for the Groups component.
    8079     *
    81      * @since BuddyPress (1.1.0)
     80     * @since 1.1.0
    8281     */
    8382    do_action( 'groups_register_activity_actions' );
     
    8887 * Format 'created_group' activity actions.
    8988 *
    90  * @since BuddyPress (2.0.0)
     89 * @since 2.0.0
    9190 *
    9291 * @param string $action   Static activity action.
     
    109108     * Filters the 'created_group' activity actions.
    110109     *
    111      * @since BuddyPress (1.2.0)
     110     * @since 1.2.0
    112111     *
    113112     * @param string $action   The 'created_group' activity action.
     
    120119 * Format 'joined_group' activity actions.
    121120 *
    122  * @since BuddyPress (2.0.0)
     121 * @since 2.0.0
    123122 *
    124123 * @param string $action   Static activity action.
     
    152151     * Filters the 'joined_group' activity actions.
    153152     *
    154      * @since BuddyPress (2.0.0)
     153     * @since 2.0.0
    155154     *
    156155     * @param string $action   The 'joined_group' activity actions.
     
    163162 * Format 'group_details_updated' activity actions.
    164163 *
    165  * @since BuddyPress (2.2.0)
     164 * @since 2.2.0
    166165 *
    167166 * @param  string $action   Static activity action.
     
    206205     * Filters the 'group_details_updated' activity actions.
    207206     *
    208      * @since BuddyPress (2.0.0)
     207     * @since 2.0.0
    209208     *
    210209     * @param string $action   The 'group_details_updated' activity actions.
     
    219218 * This reduces database overhead during the activity loop.
    220219 *
    221  * @since BuddyPress (2.0.0)
     220 * @since 2.0.0
    222221 *
    223222 * @param array $activities Array of activity items.
     
    270269 * Set up activity arguments for use with the 'groups' scope.
    271270 *
    272  * @since BuddyPress (2.2.0)
     271 * @since 2.2.0
    273272 *
    274273 * @param array $retval Empty array by default
     
    416415 * Add an activity stream item when a member joins a group.
    417416 *
    418  * @since BuddyPress (1.9.0)
     417 * @since 1.9.0
    419418 *
    420419 * @param int $user_id  ID of the user joining the group.
     
    436435     * Filters the 'membership_accepted' activity actions.
    437436     *
    438      * @since BuddyPress (1.2.0)
     437     * @since 1.2.0
    439438     *
    440439     * @param string $value    The 'membership_accepted' activity action.
     
    457456 * Add an activity item when a group's details are updated.
    458457 *
    459  * @since BuddyPress (2.2.0)
     458 * @since 2.2.0
    460459 *
    461460 * @param  int             $group_id       ID of the group.
     
    530529 * Delete all activity items related to a specific group.
    531530 *
    532  * @since BuddyPress (1.9.0)
     531 * @since 1.9.0
    533532 *
    534533 * @param int $group_id ID of the group.
     
    551550 * joining/leaving the group in quick succession.
    552551 *
    553  * @since BuddyPress (1.9.0)
     552 * @since 1.9.0
    554553 *
    555554 * @param int $group_id ID of the group.
Note: See TracChangeset for help on using the changeset viewer.