Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/29/2016 06:12:08 PM (7 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-activity/bp-activity-notifications.php

    r10715 r10825  
    1717 *
    1818 * @since 1.2.0
    19  *
    20  * @uses bp_notifications_add_notification()
    21  * @uses bp_get_user_meta()
    22  * @uses bp_core_get_user_displayname()
    23  * @uses bp_activity_get_permalink()
    24  * @uses bp_core_get_user_domain()
    25  * @uses bp_get_settings_slug()
    26  * @uses bp_activity_filter_kses()
    27  * @uses bp_core_get_core_userdata()
    28  * @uses wp_specialchars_decode()
    29  * @uses get_blog_option()
    30  * @uses bp_is_active()
    31  * @uses bp_is_group()
    32  * @uses bp_get_current_group_name()
    33  * @uses apply_filters() To call the 'bp_activity_at_message_notification_to' hook.
    34  * @uses apply_filters() To call the 'bp_activity_at_message_notification_subject' hook.
    35  * @uses apply_filters() To call the 'bp_activity_at_message_notification_message' hook.
    36  * @uses wp_mail()
    37  * @uses do_action() To call the 'bp_activity_sent_mention_email' hook.
    3819 *
    3920 * @param int $activity_id      The ID of the activity update.
     
    10889 * @since 1.2.0
    10990 * @since 2.5.0 Updated to use new email APIs.
    110  *
    111  * @uses bp_get_user_meta()
    112  * @uses bp_core_get_user_displayname()
    113  * @uses bp_activity_get_permalink()
    114  * @uses bp_core_get_user_domain()
    115  * @uses bp_get_settings_slug()
    116  * @uses bp_activity_filter_kses()
    117  * @uses bp_core_get_core_userdata()
    118  * @uses wp_specialchars_decode()
    119  * @uses get_blog_option()
    120  * @uses bp_get_root_blog_id()
    121  * @uses apply_filters() To call the 'bp_activity_new_comment_notification_to' hook.
    122  * @uses apply_filters() To call the 'bp_activity_new_comment_notification_subject' hook.
    123  * @uses apply_filters() To call the 'bp_activity_new_comment_notification_message' hook.
    124  * @uses wp_mail()
    125  * @uses do_action() To call the 'bp_activity_sent_reply_to_update_email' hook.
    126  * @uses apply_filters() To call the 'bp_activity_new_comment_notification_comment_author_to' hook.
    127  * @uses apply_filters() To call the 'bp_activity_new_comment_notification_comment_author_subject' hook.
    128  * @uses apply_filters() To call the 'bp_activity_new_comment_notification_comment_author_message' hook.
    129  * @uses do_action() To call the 'bp_activity_sent_reply_to_reply_email' hook.
    13091 *
    13192 * @param int   $comment_id   The comment id.
     
    243204 * @since 1.5.0
    244205 *
    245  * @uses bp_loggedin_user_domain()
    246  * @uses bp_get_activity_slug()
    247  * @uses bp_core_get_user_displayname()
    248  * @uses apply_filters() To call the 'bp_activity_multiple_at_mentions_notification' hook.
    249  * @uses apply_filters() To call the 'bp_activity_single_at_mentions_notification' hook.
    250  * @uses do_action() To call 'activity_format_notifications' hook.
    251  *
    252206 * @param string $action            The type of activity item. Just 'new_at_mention' for now.
    253207 * @param int    $item_id           The activity ID.
     
    454408 *
    455409 * @param int $user_id The id of the user whose notifications are marked as read.
    456  * @uses bp_notifications_mark_all_notifications_by_type()
    457410 */
    458411function bp_activity_remove_screen_notifications( $user_id = 0 ) {
Note: See TracChangeset for help on using the changeset viewer.