Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/03/2016 05:01:13 AM (9 years ago)
Author:
tw2113
Message:

Adds many missing @since tags to the BP Core component.

See #6398.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-wpabstraction.php

    r10417 r10497  
    3232}
    3333
    34 /**
     34/*
    3535 * Only add MS-specific abstraction functions if WordPress is not in multisite mode.
    3636 */
     
    4545        /**
    4646         * Retrieve blog option.
     47         *
     48         * @since 1.0.0
    4749         *
    4850         * @see get_blog_option()
     
    6264
    6365        /**
    64          * Add blog option
     66         * Add blog option.
     67         *
     68         * @since 1.2.0
    6569         *
    6670         * @see add_blog_option()
     
    8286         * Update blog option.
    8387         *
     88         * @since 1.2.0
     89         *
    8490         * @see update_blog_option()
    8591         *
     
    100106         * Delete blog option.
    101107         *
     108         * @since 1.5.0
     109         *
    102110         * @see delete_blog_option()
    103111         *
     
    117125         * Switch to specified blog.
    118126         *
     127         * @since 1.2.0
     128         *
    119129         * @see switch_to_blog()
    120130         *
     
    134144         * Restore current blog.
    135145         *
     146         * @since 1.2.0
     147         *
    136148         * @see restore_current_blog()
    137149         *
     
    148160         * Retrive blogs associated with user.
    149161         *
     162         * @since 1.2.0
     163         *
    150164         * @see get_blogs_of_user()
    151165         *
     
    161175
    162176    if ( !function_exists( 'update_blog_status' ) ) {
     177
    163178        /**
    164179         * Whether or not to update blog status.
     180         *
     181         * @since 1.2.0
    165182         *
    166183         * @see update_blog_status()
     
    179196
    180197    if ( !function_exists( 'is_subdomain_install' ) ) {
     198
    181199        /**
    182200         * Whether or not if subdomain install.
     201         *
     202         * @since 1.2.5.1
    183203         *
    184204         * @see is_subdomain_install()
     
    220240 */
    221241if ( !function_exists( 'mb_strlen' ) ) {
     242
    222243    /**
    223244     * Fallback implementation of mb_strlen(), hardcoded to UTF-8.
     
    245266
    246267if ( !function_exists( 'mb_strpos' ) ) {
     268
    247269    /**
    248270     * Fallback implementation of mb_strpos(), hardcoded to UTF-8.
     
    269291
    270292if ( !function_exists( 'mb_strrpos' ) ) {
     293
    271294    /**
    272295     * Fallback implementation of mb_strrpos(), hardcoded to UTF-8.
Note: See TracChangeset for help on using the changeset viewer.