Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/27/2015 06:04:27 AM (10 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Templates Component.

Fixes #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/index.php

    r9890 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups
     4 *
     5 * @package    BuddyPress
     6 * @subpackage bp-legacy
     7 */
    28
    39/**
    410 * Fires at the top of the groups directory template file.
    511 *
    6  * @since BuddyPress (1.5.0)
     12 * @since 1.5.0
    713 */
    814do_action( 'bp_before_directory_groups_page' ); ?>
     
    1521     * Fires before the display of the groups.
    1622     *
    17      * @since BuddyPress (1.1.0)
     23     * @since 1.1.0
    1824     */
    1925    do_action( 'bp_before_directory_groups' ); ?>
     
    2430     * Fires before the display of the groups content.
    2531     *
    26      * @since BuddyPress (1.1.0)
     32     * @since 1.1.0
    2733     */
    2834    do_action( 'bp_before_directory_groups_content' ); ?>
     
    5258                 * Fires inside the groups directory group filter input.
    5359                 *
    54                  * @since BuddyPress (1.5.0)
     60                 * @since 1.5.0
    5561                 */
    5662                do_action( 'bp_groups_directory_group_filter' ); ?>
     
    6672                 * Fires inside the groups directory group types.
    6773                 *
    68                  * @since BuddyPress (1.2.0)
     74                 * @since 1.2.0
    6975                 */
    7076                do_action( 'bp_groups_directory_group_types' ); ?>
     
    8591                         * Fires inside the groups directory group order options.
    8692                         *
    87                          * @since BuddyPress (1.2.0)
     93                         * @since 1.2.0
    8894                         */
    8995                        do_action( 'bp_groups_directory_order_options' ); ?>
     
    102108         * Fires and displays the group content.
    103109         *
    104          * @since BuddyPress (1.1.0)
     110         * @since 1.1.0
    105111         */
    106112        do_action( 'bp_directory_groups_content' ); ?>
     
    113119         * Fires after the display of the groups content.
    114120         *
    115          * @since BuddyPress (1.1.0)
     121         * @since 1.1.0
    116122         */
    117123        do_action( 'bp_after_directory_groups_content' ); ?>
     
    124130     * Fires after the display of the groups.
    125131     *
    126      * @since BuddyPress (1.1.0)
     132     * @since 1.1.0
    127133     */
    128134    do_action( 'bp_after_directory_groups' ); ?>
     
    135141 * Fires at the bottom of the groups directory template file.
    136142 *
    137  * @since BuddyPress (1.5.0)
     143 * @since 1.5.0
    138144 */
    139145do_action( 'bp_after_directory_groups_page' );
Note: See TracChangeset for help on using the changeset viewer.