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

    r9982 r10148  
    11<?php
    2 
    32/**
    43 * BuddyPress Groups Actions.
     
    1211 */
    1312
    14 // Exit if accessed directly
     13// Exit if accessed directly.
    1514defined( 'ABSPATH' ) || exit;
    1615
     
    1817 * Protect access to single groups.
    1918 *
    20  * @since BuddyPress (2.1.0)
     19 * @since 2.1.0
    2120 */
    2221function bp_groups_group_access_protection() {
     
    6160     * logged-in users being redirected to wp-login.php.
    6261     *
    63      * @since BuddyPress (2.1.0)
     62     * @since 2.1.0
    6463     *
    6564     * @param bool  $user_has_access True if the user has access to the
     
    195194             * Filters the allowed invite statuses.
    196195             *
    197              * @since BuddyPress (1.5.0)
     196             * @since 1.5.0
    198197             *
    199198             * @param array $value Array of statuses allowed.
     
    226225         * in the creation process.
    227226         *
    228          * @since BuddyPress (1.1.0)
     227         * @since 1.1.0
    229228         */
    230229        do_action( 'groups_create_group_step_save_' . bp_get_groups_current_create_step() );
     
    235234         * Mostly for clearing cache on a generic action name.
    236235         *
    237          * @since BuddyPress (1.1.0)
     236         * @since 1.1.0
    238237         */
    239238        do_action( 'groups_create_group_step_complete' );
     
    271270             * Fires after the group has been successfully created.
    272271             *
    273              * @since BuddyPress (1.1.0)
     272             * @since 1.1.0
    274273             *
    275274             * @param int $new_group_id ID of the newly created group.
     
    349348     * Filters the template to load for the group creation screen.
    350349     *
    351      * @since BuddyPress (1.0.0)
     350     * @since 1.0.0
    352351     *
    353352     * @param string $value Path to the group creation template to load.
     
    394393     * Filters the template to load for the single group screen.
    395394     *
    396      * @since BuddyPress (1.0.0)
     395     * @since 1.0.0
    397396     *
    398397     * @param string $value Path to the single group template to load.
     
    411410 * another function handles this. See {@link bp_legacy_theme_ajax_joinleave_group()}.
    412411 *
    413  * @since BuddyPress (1.2.4)
     412 * @since 1.2.4
    414413 */
    415414function groups_action_leave_group() {
     
    505504 * Load the activity feed for the current group.
    506505 *
    507  * @since BuddyPress (1.2.0)
     506 * @since 1.2.0
    508507 *
    509508 * @return false|null False on failure.
Note: See TracChangeset for help on using the changeset viewer.