Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/16/2017 09:20:52 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Documentation: Remove all @uses usages.

Per the 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/includes/core/template-functions.php

    r6551 r6573  
    2222 * @param string $slug
    2323 * @param string $name Optional. Default null
    24  * @uses bbp_locate_template()
    25  * @uses load_template()
    26  * @uses get_template_part()
    2724 */
    2825function bbp_get_template_part( $slug, $name = null ) {
     
    398395 * @param string $type Filename without extension.
    399396 * @param array $templates An optional list of template candidates
    400  * @uses bbp_set_theme_compat_templates()
    401  * @uses bbp_locate_template()
    402  * @uses bbp_set_theme_compat_template()
    403397 * @return string Full path to file.
    404398 */
     
    496490 *
    497491 * @param WP_Query $posts_query
    498  *
    499  * @uses get_query_var() To get {@link WP_Query} query var
    500  * @uses get_user_by() To try to get the user by nicename or id
    501  * @uses get_userdata() to get the user data
    502  * @uses current_user_can() To check if the current user can edit the user
    503  * @uses is_user_member_of_blog() To check if user profile page exists
    504  * @uses WP_Query::set_404() To set a 404 status
    505  * @uses apply_filters() Calls 'enable_edit_any_user_configuration' with true
    506  * @uses bbp_get_view_query_args() To get the view query args
    507  * @uses bbp_get_forum_post_type() To get the forum post type
    508  * @uses bbp_get_topic_post_type() To get the topic post type
    509  * @uses bbp_get_reply_post_type() To get the reply post type
    510  * @uses remove_action() To remove the auto save post revision action
    511492 */
    512493function bbp_parse_query( $posts_query ) {
Note: See TracChangeset for help on using the changeset viewer.