Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/12/2015 06:03:18 AM (9 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Blogs component.

See #6576

File:
1 edited

Legend:

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

    r10011 r10100  
    11<?php
    2 
    32/**
    43 * BuddyPress Blogs Screens.
     
    2120     * Fires right before the loading of the My Blogs screen template file.
    2221     *
    23      * @since BuddyPress (1.0.0)
     22     * @since 1.0.0
    2423     */
    2524    do_action( 'bp_blogs_screen_my_blogs' );
     
    4241     * Fires right before the loading of the Create A Blog screen template file.
    4342     *
    44      * @since BuddyPress (1.0.0)
     43     * @since 1.0.0
    4544     */
    4645    do_action( 'bp_blogs_screen_create_a_blog' );
     
    6059         * Fires right before the loading of the top-level Blogs screen template file.
    6160         *
    62          * @since BuddyPress (1.0.0)
     61         * @since 1.0.0
    6362         */
    6463        do_action( 'bp_blogs_screen_index' );
     
    7776 * group template parts to the_title and the_content areas of a theme.
    7877 *
    79  * @since BuddyPress (1.7.0)
     78 * @since 1.7.0
    8079 */
    8180class BP_Blogs_Theme_Compat {
     
    8483     * Set up theme compatibility for the Blogs component.
    8584     *
    86      * @since BuddyPress (1.7.0)
     85     * @since 1.7.0
    8786     */
    8887    public function __construct() {
     
    9392     * Are we looking at something that needs Blogs theme compatibility?
    9493     *
    95      * @since BuddyPress (1.7.0)
     94     * @since 1.7.0
    9695     */
    9796    public function is_blogs() {
     
    113112             * before the actions and filters are added.
    114113             *
    115              * @since BuddyPress (1.5.0)
     114             * @since 1.5.0
    116115             */
    117116            do_action( 'bp_blogs_screen_index' );
     
    137136     * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}.
    138137     *
    139      * @since BuddyPress (1.8.0)
     138     * @since 1.8.0
    140139     *
    141140     * @param string $templates The templates from bp_get_theme_compat_templates().
     
    148147         * Filters the custom templates used for theme compat with the blog directory page.
    149148         *
    150          * @since BuddyPress (1.8.0)
     149         * @since 1.8.0
    151150         *
    152151         * @param array $value Array of template paths to add to template list to look for.
     
    166165     * Update the global $post with directory data.
    167166     *
    168      * @since BuddyPress (1.7.0)
     167     * @since 1.7.0
    169168     */
    170169    public function directory_dummy_post() {
     
    186185     * Filter the_content with the groups index template part.
    187186     *
    188      * @since BuddyPress (1.7.0)
     187     * @since 1.7.0
    189188     */
    190189    public function directory_content() {
     
    200199     * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}.
    201200     *
    202      * @since BuddyPress (1.8.0)
     201     * @since 1.8.0
    203202     *
    204203     * @param string $templates The templates from bp_get_theme_compat_templates().
     
    211210         * Filters the custom templates used for theme compat with the blog create page.
    212211         *
    213          * @since BuddyPress (1.8.0)
     212         * @since 1.8.0
    214213         *
    215214         * @param array $value Array of template paths to add to template list to look for.
     
    229228     * Update the global $post with create screen data.
    230229     *
    231      * @since BuddyPress (1.7.0)
     230     * @since 1.7.0
    232231     */
    233232    public function create_dummy_post() {
     
    256255     * Filter the_content with the create screen template part.
    257256     *
    258      * @since BuddyPress (1.7.0)
     257     * @since 1.7.0
    259258     */
    260259    public function create_content() {
Note: See TracChangeset for help on using the changeset viewer.