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/admin/metaboxes.php

    r6542 r6573  
    9595 *
    9696 * @deprecated 2.6.0 bbPress (r5268)
    97  *
    98  * @uses bbp_get_version() To get the current bbPress version
    99  * @uses bbp_get_statistics() To get the forum statistics
    100  * @uses current_user_can() To check if the user is capable of doing things
    101  * @uses bbp_get_forum_post_type() To get the forum post type
    102  * @uses bbp_get_topic_post_type() To get the topic post type
    103  * @uses bbp_get_reply_post_type() To get the reply post type
    104  * @uses get_admin_url() To get the administration url
    105  * @uses add_query_arg() To add custom args to the url
    106  * @uses do_action() Calls 'bbp_dashboard_widget_right_now_content_table_end'
    107  *                    below the content table
    108  * @uses do_action() Calls 'bbp_dashboard_widget_right_now_table_end'
    109  *                    below the discussion table
    110  * @uses do_action() Calls 'bbp_dashboard_widget_right_now_discussion_table_end'
    111  *                    below the discussion table
    112  * @uses do_action() Calls 'bbp_dashboard_widget_right_now_end' below the widget
    11397 */
    11498function bbp_dashboard_widget_right_now() {
     
    319303 *
    320304 * @since 2.0.0 bbPress (r2744)
    321  *
    322  * @uses bbp_is_forum_closed() To check if a forum is closed or not
    323  * @uses bbp_is_forum_category() To check if a forum is a category or not
    324  * @uses bbp_is_forum_private() To check if a forum is private or not
    325  * @uses bbp_dropdown() To show a dropdown of the forums for forum parent
    326  * @uses do_action() Calls 'bbp_forum_metabox'
    327305 */
    328306function bbp_forum_metabox( $post ) {
     
    416394 *
    417395 * @since 2.0.0 bbPress (r2464)
    418  *
    419  * @uses bbp_get_topic_forum_id() To get the topic forum id
    420  * @uses do_action() Calls 'bbp_topic_metabox'
    421396 */
    422397function bbp_topic_metabox( $post ) {
     
    489464 *
    490465 * @since 2.0.0 bbPress (r2464)
    491  *
    492  * @uses bbp_get_topic_post_type() To get the topic post type
    493  * @uses do_action() Calls 'bbp_reply_metabox'
    494466 */
    495467function bbp_reply_metabox( $post ) {
     
    626598 *
    627599 * @param WP_Post $post The current post object
    628  * @uses bbp_is_reply_anonymous() To check if reply is anonymous
    629  * @uses bbp_is_topic_anonymous() To check if topic is anonymous
    630  * @uses get_post_meta() To get the author user information
    631600 */
    632601function bbp_author_metabox( $post ) {
     
    678647 *
    679648 * @since 2.6.0 bbPress (r2828)
    680  *
    681  * @uses get_the_ID() To get the global post ID
    682  * @uses get_post_meta() To get the author user information
    683649 */
    684650function bbp_moderator_assignment_metabox( $post ) {
Note: See TracChangeset for help on using the changeset viewer.