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

    r9896 r10150  
    11<?php
     2/**
     3 * BuddyPress Activity templates
     4 *
     5 * @since      2.3.0
     6 * @package    BuddyPress
     7 * @subpackage BuddyPressActivity
     8 */
    29
    310/**
    411 * Fires before the activity directory listing.
    512 *
    6  * @since BuddyPress (1.5.0)
     13 * @since 1.5.0
    714 */
    815do_action( 'bp_before_directory_activity' ); ?>
     
    1522     * Fires before the activity directory display content.
    1623     *
    17      * @since BuddyPress (1.2.0)
     24     * @since 1.2.0
    1825     */
    1926    do_action( 'bp_before_directory_activity_content' ); ?>
     
    3037     * Fires towards the top of template pages for notice display.
    3138     *
    32      * @since BuddyPress (1.0.0)
     39     * @since 1.0.0
    3340     */
    3441    do_action( 'template_notices' ); ?>
     
    4148             * Fires before the listing of activity type tabs.
    4249             *
    43              * @since BuddyPress (1.2.0)
     50             * @since 1.2.0
    4451             */
    4552            do_action( 'bp_before_activity_type_tab_all' ); ?>
     
    5461                 * Fires before the listing of friends activity type tab.
    5562                 *
    56                  * @since BuddyPress (1.2.0)
     63                 * @since 1.2.0
    5764                 */
    5865                do_action( 'bp_before_activity_type_tab_friends' ); ?>
     
    7380                 * Fires before the listing of groups activity type tab.
    7481                 *
    75                  * @since BuddyPress (1.2.0)
     82                 * @since 1.2.0
    7683                 */
    7784                do_action( 'bp_before_activity_type_tab_groups' ); ?>
     
    9299                 * Fires before the listing of favorites activity type tab.
    93100                 *
    94                  * @since BuddyPress (1.2.0)
     101                 * @since 1.2.0
    95102                 */
    96103                do_action( 'bp_before_activity_type_tab_favorites' ); ?>
     
    109116                     * Fires before the listing of mentions activity type tab.
    110117                     *
    111                      * @since BuddyPress (1.2.0)
     118                     * @since 1.2.0
    112119                     */
    113120                    do_action( 'bp_before_activity_type_tab_mentions' ); ?>
     
    124131             * Fires after the listing of activity type tabs.
    125132             *
    126              * @since BuddyPress (1.2.0)
     133             * @since 1.2.0
    127134             */
    128135            do_action( 'bp_activity_type_tabs' ); ?>
     
    139146             * Fires before the display of the activity syndication options.
    140147             *
    141              * @since BuddyPress (1.2.0)
     148             * @since 1.2.0
    142149             */
    143150            do_action( 'bp_activity_syndication_options' ); ?>
     
    155162                     * Fires inside the select input for activity filter by options.
    156163                     *
    157                      * @since BuddyPress (1.2.0)
     164                     * @since 1.2.0
    158165                     */
    159166                    do_action( 'bp_activity_filter_options' ); ?>
     
    169176     * Fires before the display of the activity list.
    170177     *
    171      * @since BuddyPress (1.5.0)
     178     * @since 1.5.0
    172179     */
    173180    do_action( 'bp_before_directory_activity_list' ); ?>
     
    184191     * Fires after the display of the activity list.
    185192     *
    186      * @since BuddyPress (1.5.0)
     193     * @since 1.5.0
    187194     */
    188195    do_action( 'bp_after_directory_activity_list' ); ?>
     
    200207     * Fires after the activity directory display content.
    201208     *
    202      * @since BuddyPress (1.2.0)
     209     * @since 1.2.0
    203210     */
    204211    do_action( 'bp_after_directory_activity_content' ); ?>
     
    209216     * Fires after the activity directory listing.
    210217     *
    211      * @since BuddyPress (1.5.0)
     218     * @since 1.5.0
    212219     */
    213220    do_action( 'bp_after_directory_activity' ); ?>
Note: See TracChangeset for help on using the changeset viewer.