Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/29/2016 06:12:08 PM (8 years ago)
Author:
djpaul
Message:

Remove redundant @uses PHPDoc tag from inline documentation.

Per WordPress' inline documentation standards, the @uses tag is not recommended to be used to indicate a used-by relationship, as this information can be derived through other means. These tags also are very likely to become out-of-date as our functions change over time.

File:
1 edited

Legend:

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

    r10652 r10825  
    5858 * @since 1.7.0
    5959 *
    60  * @uses apply_filters()
    61  *
    6260 * @return string ID of the theme package in use.
    6361 */
     
    8280 * @since 1.7.0
    8381 *
    84  * @uses apply_filters()
    85  *
    8682 * @return string Name of the theme package currently in use.
    8783 */
     
    106102 * @since 1.7.0
    107103 *
    108  * @uses apply_filters()
    109  *
    110104 * @return string The version string of the theme package currently in use.
    111105 */
     
    129123 *
    130124 * @since 1.7.0
    131  *
    132  * @uses apply_filters()
    133125 *
    134126 * @return string The absolute path of the theme package currently in use.
     
    155147 * @since 1.7.0
    156148 *
    157  * @uses apply_filters()
    158  *
    159149 * @return string URL of the theme package currently in use.
    160150 */
     
    178168 *
    179169 * @since 1.9.0
    180  *
    181  * @uses bp_detect_theme_compat_with_current_theme()
    182170 *
    183171 * @return bool True if the current theme needs theme compatibility.
     
    679667 * @since 1.7.0
    680668 *
    681  * @uses bp_is_single_user() To check if page is single user.
    682  * @uses bp_get_single_user_template() To get user template.
    683  * @uses bp_is_single_user_edit() To check if page is single user edit.
    684  * @uses bp_get_single_user_edit_template() To get user edit template.
    685  * @uses bp_is_single_view() To check if page is single view.
    686  * @uses bp_get_single_view_template() To get view template.
    687  * @uses bp_is_forum_edit() To check if page is forum edit.
    688  * @uses bp_get_forum_edit_template() To get forum edit template.
    689  * @uses bp_is_topic_merge() To check if page is topic merge.
    690  * @uses bp_get_topic_merge_template() To get topic merge template.
    691  * @uses bp_is_topic_split() To check if page is topic split.
    692  * @uses bp_get_topic_split_template() To get topic split template.
    693  * @uses bp_is_topic_edit() To check if page is topic edit.
    694  * @uses bp_get_topic_edit_template() To get topic edit template.
    695  * @uses bp_is_reply_edit() To check if page is reply edit.
    696  * @uses bp_get_reply_edit_template() To get reply edit template.
    697  * @uses bp_set_theme_compat_template() To set the global theme compat template.
    698  *
    699669 * @param string $template Template name.
    700670 * @return string $template Template name.
Note: See TracChangeset for help on using the changeset viewer.