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/create.php

    r10129 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Create
     4 *
     5 * @package    BuddyPress
     6 * @subpackage bp-legacy
     7 */
    28
    39/**
    410 * Fires at the top of the groups creation template file.
    511 *
    6  * @since BuddyPress (1.7.0)
     12 * @since 1.7.0
    713 */
    814do_action( 'bp_before_create_group_page' ); ?>
     
    1521     * Fires before the display of group creation content.
    1622     *
    17      * @since BuddyPress (1.6.0)
     23     * @since 1.6.0
    1824     */
    1925    do_action( 'bp_before_create_group_content_template' ); ?>
     
    2632         * Fires before the display of group creation.
    2733         *
    28          * @since BuddyPress (1.2.0)
     34         * @since 1.2.0
    2935         */
    3036        do_action( 'bp_before_create_group' ); ?>
     
    5359                 * Fires before the display of the group details creation step.
    5460                 *
    55                  * @since BuddyPress (1.1.0)
     61                 * @since 1.1.0
    5662                 */
    5763                do_action( 'bp_before_group_details_creation_step' ); ?>
     
    7278                 * Fires after the display of the group details creation step.
    7379                 *
    74                  * @since BuddyPress (1.1.0)
     80                 * @since 1.1.0
    7581                 */
    7682                do_action( 'bp_after_group_details_creation_step' );
     
    8995                 * Fires before the display of the group settings creation step.
    9096                 *
    91                  * @since BuddyPress (1.1.0)
     97                 * @since 1.1.0
    9298                 */
    9399                do_action( 'bp_before_group_settings_creation_step' ); ?>
     
    163169                 * Fires after the display of the group settings creation step.
    164170                 *
    165                  * @since BuddyPress (1.1.0)
     171                 * @since 1.1.0
    166172                 */
    167173                do_action( 'bp_after_group_settings_creation_step' ); ?>
     
    179185                 * Fires before the display of the group avatar creation step.
    180186                 *
    181                  * @since BuddyPress (1.1.0)
     187                 * @since 1.1.0
    182188                 */
    183189                do_action( 'bp_before_group_avatar_creation_step' ); ?>
     
    207213                     * Load the Avatar UI templates
    208214                     *
    209                      * @since  BuddyPress (2.3.0)
     215                     * @since 2.3.0
    210216                     */
    211217                    bp_avatar_get_templates(); ?>
     
    239245                 * Fires after the display of the group avatar creation step.
    240246                 *
    241                  * @since BuddyPress (1.1.0)
     247                 * @since 1.1.0
    242248                 */
    243249                do_action( 'bp_after_group_avatar_creation_step' ); ?>
     
    255261                 * Fires before the display of the group invites creation step.
    256262                 *
    257                  * @since BuddyPress (1.1.0)
     263                 * @since 1.1.0
    258264                 */
    259265                do_action( 'bp_before_group_invites_creation_step' ); ?>
     
    323329                 * Fires after the display of the group invites creation step.
    324330                 *
    325                  * @since BuddyPress (1.1.0)
     331                 * @since 1.1.0
    326332                 */
    327333                do_action( 'bp_after_group_invites_creation_step' ); ?>
     
    336342             * Allows plugins to add custom group creation steps.
    337343             *
    338              * @since BuddyPress (1.1.0)
     344             * @since 1.1.0
    339345             */
    340346            do_action( 'groups_custom_create_steps' ); ?>
     
    345351             * Fires before the display of the group creation step buttons.
    346352             *
    347              * @since BuddyPress (1.1.0)
     353             * @since 1.1.0
    348354             */
    349355            do_action( 'bp_before_group_creation_step_buttons' ); ?>
     
    389395             * Fires after the display of the group creation step buttons.
    390396             *
    391              * @since BuddyPress (1.1.0)
     397             * @since 1.1.0
    392398             */
    393399            do_action( 'bp_after_group_creation_step_buttons' ); ?>
     
    401407             * Fires and displays the groups directory content.
    402408             *
    403              * @since BuddyPress (1.1.0)
     409             * @since 1.1.0
    404410             */
    405411            do_action( 'bp_directory_groups_content' ); ?>
     
    412418         * Fires after the display of group creation.
    413419         *
    414          * @since BuddyPress (1.2.0)
     420         * @since 1.2.0
    415421         */
    416422        do_action( 'bp_after_create_group' ); ?>
     
    423429     * Fires after the display of group creation content.
    424430     *
    425      * @since BuddyPress (1.6.0)
     431     * @since 1.6.0
    426432     */
    427433    do_action( 'bp_after_create_group_content_template' ); ?>
     
    434440 * Fires at the bottom of the groups creation template file.
    435441 *
    436  * @since BuddyPress (1.7.0)
     442 * @since 1.7.0
    437443 */
    438444do_action( 'bp_after_create_group_page' ); ?>
Note: See TracChangeset for help on using the changeset viewer.