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

    r9891 r10150  
    11<?php
     2/**
     3 * BuddyPress - Blogs
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires at the top of the blogs directory template file.
    510 *
    6  * @since BuddyPress (2.3.0)
     11 * @since 2.3.0
    712 */
    813do_action( 'bp_before_directory_blogs_page' ); ?>
     
    1520     * Fires before the display of the blogs
    1621     *
    17      * @since BuddyPress (1.5.0)
     22     * @since 1.5.0
    1823     */
    1924    do_action( 'bp_before_directory_blogs' ); ?>
     
    2429     * Fires before the display of the blogs listing content.
    2530     *
    26      * @since BuddyPress (1.1.0)
     31     * @since 1.1.0
    2732     */
    2833    do_action( 'bp_before_directory_blogs_content' ); ?>
     
    3742     * Fires before the display of the blogs list tabs.
    3843     *
    39      * @since BuddyPress (2.3.0)
     44     * @since 2.3.0
    4045     */
    4146    do_action( 'bp_before_directory_blogs_tabs' ); ?>
     
    5863                 * Fires inside the unordered list displaying blog types.
    5964                 *
    60                  * @since BuddyPress (1.2.0)
     65                 * @since 1.2.0
    6166                 */
    6267                do_action( 'bp_blogs_directory_blog_types' ); ?>
     
    7378                 * Fires inside the unordered list displaying blog sub-types.
    7479                 *
    75                  * @since BuddyPress (1.5.0)
     80                 * @since 1.5.0
    7681                 */
    7782                do_action( 'bp_blogs_directory_blog_sub_types' ); ?>
     
    9095                         * Fires inside the select input listing blogs orderby options.
    9196                         *
    92                          * @since BuddyPress (1.2.0)
     97                         * @since 1.2.0
    9398                         */
    9499                        do_action( 'bp_blogs_directory_order_options' ); ?>
     
    110115         * Fires inside and displays the blogs content.
    111116         *
    112          * @since BuddyPress (1.1.0)
     117         * @since 1.1.0
    113118         */
    114119        do_action( 'bp_directory_blogs_content' ); ?>
     
    121126         * Fires after the display of the blogs listing content.
    122127         *
    123          * @since BuddyPress (1.1.0)
     128         * @since 1.1.0
    124129         */
    125130        do_action( 'bp_after_directory_blogs_content' ); ?>
     
    132137     * Fires at the bottom of the blogs directory template file.
    133138     *
    134      * @since BuddyPress (1.5.0)
     139     * @since 1.5.0
    135140     */
    136141    do_action( 'bp_after_directory_blogs' ); ?>
     
    143148 * Fires at the bottom of the blogs directory template file.
    144149 *
    145  * @since BuddyPress (2.3.0)
     150 * @since 2.3.0
    146151 */
    147152do_action( 'bp_after_directory_blogs_page' );
Note: See TracChangeset for help on using the changeset viewer.