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/single/group-header.php

    r9828 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Header
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of a group's header.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_group_header' );
     
    2126         * Fires after the display of the group's administrators.
    2227         *
    23          * @since BuddyPress (1.1.0)
     28         * @since 1.1.0
    2429         */
    2530        do_action( 'bp_after_group_menu_admins' );
     
    3035             * Fires before the display of the group's moderators, if there are any.
    3136             *
    32              * @since BuddyPress (1.1.0)
     37             * @since 1.1.0
    3338             */
    3439            do_action( 'bp_before_group_menu_mods' ); ?>
     
    4146             * Fires after the display of the group's moderators, if there are any.
    4247             *
    43              * @since BuddyPress (1.1.0)
     48             * @since 1.1.0
    4449             */
    4550            do_action( 'bp_after_group_menu_mods' );
     
    7075     * Fires before the display of the group's header meta.
    7176     *
    72      * @since BuddyPress (1.2.0)
     77     * @since 1.2.0
    7378     */
    7479    do_action( 'bp_before_group_header_meta' ); ?>
     
    8590             * Fires in the group header actions section.
    8691             *
    87              * @since BuddyPress (1.2.6)
     92             * @since 1.2.6
    8893             */
    8994            do_action( 'bp_group_header_actions' ); ?>
     
    96101         * Fires after the group header actions section.
    97102         *
    98          * @since BuddyPress (1.2.0)
     103         * @since 1.2.0
    99104         */
    100105        do_action( 'bp_group_header_meta' ); ?>
     
    108113 * Fires after the display of a group's header.
    109114 *
    110  * @since BuddyPress (1.2.0)
     115 * @since 1.2.0
    111116 */
    112117do_action( 'bp_after_group_header' );
Note: See TracChangeset for help on using the changeset viewer.