Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/12/2015 05:51:55 AM (10 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Forums component.

See #6576

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-forums/bp-forums-screens.php

    r9819 r10096  
    44 *
    55 * @package BuddyPress
    6  * @subpackage Forums
    7  */
    8 
    9 // Exit if accessed directly
     6 * @subpackage ForumsScreens
     7 */
     8
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    3232         * Fires early in the initialization of bbPress-based areas of BuddyPress.
    3333         *
    34          * @since BuddyPress (1.1.0)
     34         * @since 1.1.0
    3535         */
    3636        do_action( 'bbpress_init' );
     
    8484         * Fires right before the loading of the forums directory screen template file.
    8585         *
    86          * @since BuddyPress (1.1.0)
     86         * @since 1.1.0
    8787         */
    8888        do_action( 'bp_forums_directory_forums_setup' );
     
    9191         * Filters the template to load for the forums directory screen.
    9292         *
    93          * @since BuddyPress (1.1.0)
     93         * @since 1.1.0
    9494         *
    9595         * @param string $template Path to the forums template to load.
     
    108108     * Fires right before the loading of the forums topics started screen template file.
    109109     *
    110      * @since BuddyPress (1.5.0)
     110     * @since 1.5.0
    111111     */
    112112    do_action( 'bp_member_forums_screen_topics' );
     
    115115     * Filters the template to load for the forums topics started screen.
    116116     *
    117      * @since BuddyPress (1.5.0)
     117     * @since 1.5.0
    118118     *
    119119     * @param string $template Path to the forums topics started template to load.
     
    130130     * Fires right before the loading of the forums replied to screen template file.
    131131     *
    132      * @since BuddyPress (1.5.0)
     132     * @since 1.5.0
    133133     */
    134134    do_action( 'bp_member_forums_screen_replies' );
     
    137137     * Filters the template to load for the forums replied to screen.
    138138     *
    139      * @since BuddyPress (1.5.0)
     139     * @since 1.5.0
    140140     *
    141141     * @param string $template Path to the forums replied to template to load.
     
    154154     * Fires right before the loading of the forums favorites screen template file.
    155155     *
    156      * @since BuddyPress (1.5.0)
     156     * @since 1.5.0
    157157     */
    158158    do_action( 'bp_member_forums_screen_favorites' );
     
    161161     * Filters the template to load for the forums favorites screen.
    162162     *
    163      * @since BuddyPress (1.5.0)
     163     * @since 1.5.0
    164164     *
    165165     * @param string $template Path to the forums favorites template to load.
     
    179179     * Fires right before the loading of the forums single forum screen template file.
    180180     *
    181      * @since BuddyPress (1.5.0)
     181     * @since 1.5.0
    182182     */
    183183    do_action( 'bp_forums_screen_single_forum' );
     
    186186     * Filters the template to load for the forums single forum screen.
    187187     *
    188      * @since BuddyPress (1.5.0)
     188     * @since 1.5.0
    189189     *
    190190     * @param string $template Path to the forums single forum template to load.
     
    205205     * Fires right before the loading of the forums single topic screen template file.
    206206     *
    207      * @since BuddyPress (1.5.0)
     207     * @since 1.5.0
    208208     */
    209209    do_action( 'bp_forums_screen_single_topic' );
     
    212212     * Filters the template to load for the forums single topic screen.
    213213     *
    214      * @since BuddyPress (1.5.0)
     214     * @since 1.5.0
    215215     *
    216216     * @param string $template Path to the forums single topic template to load.
     
    229229 * old forum template parts to the_title and the_content areas of a theme.
    230230 *
    231  * @since BuddyPress (1.7.0)
     231 * @since 1.7.0
    232232 */
    233233class BP_Forum_Legacy_Theme_Compat {
     
    236236     * Set up theme compatibility for the legacy forums component.
    237237     *
    238      * @since BuddyPress (1.7.0)
     238     * @since 1.7.0
    239239     */
    240240    public function __construct() {
     
    245245     * Are we looking at something that needs old forum theme compatibility?
    246246     *
    247      * @since BuddyPress (1.7.0)
     247     * @since 1.7.0
    248248     */
    249249    public function is_legacy_forum() {
     
    280280     * Update the global $post with directory data.
    281281     *
    282      * @since BuddyPress (1.7.0)
     282     * @since 1.7.0
    283283     */
    284284    public function directory_dummy_post() {
     
    307307     * Filter the_content with the old forum index template part.
    308308     *
    309      * @since BuddyPress (1.7.0)
     309     * @since 1.7.0
    310310     */
    311311    public function directory_content() {
Note: See TracChangeset for help on using the changeset viewer.