Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/31/2015 06:51:35 AM (11 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Activity component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/classes/class-bp-activity-feed.php

    r9834 r10077  
    44 *
    55 * @package BuddyPress
    6  * @subpackage Activity
     6 * @subpackage ActivityFeeds
    77 */
    88
     
    3131 *   @type array  $activity_args    Optional. Arguments passed to {@link bp_has_activities()}
    3232 * }
    33  * @since BuddyPress (1.8.0)
     33 * @since 1.8.0
    3434 */
    3535class BP_Activity_Feed {
     
    7474                 * Filters if BuddyPress should consider feeds enabled. If disabled, it will return early.
    7575                 *
    76                  * @since BuddyPress (1.8.0)
     76                 * @since 1.8.0
    7777                 *
    7878                 * @param bool true Default true aka feeds are enabled.
     
    126126                 * Fires before the feed is setup so plugins can modify.
    127127                 *
    128                  * @since BuddyPress (1.8.0)
     128                 * @since 1.8.0
    129129                 *
    130130                 * @param BP_Activity_Feed $this Current instance of activity feed. Passed by reference.
     
    144144                 * Fires after the feed is setup so plugins can modify.
    145145                 *
    146                  * @since BuddyPress (1.8.0)
     146                 * @since 1.8.0
    147147                 *
    148148                 * @param BP_Activity_Feed $this Current instance of activity feed. Passed by reference.
     
    210210                 * This hook was originally separated out for individual components but has since been abstracted into the BP_Activity_Feed class.
    211211                 *
    212                  * @since BuddyPress (1.0.0)
     212                 * @since 1.0.0
    213213                 */
    214214                do_action( 'bp_activity_' . $this->id . '_feed' );
     
    225225                 * This hook was originally separated out for individual components but has since been abstracted into the BP_Activity_Feed class.
    226226                 *
    227                  * @since BuddyPress (1.0.0)
     227                 * @since 1.0.0
    228228                 */
    229229                do_action( 'bp_activity_' . $this->id . '_feed_head' );
     
    254254                 * This hook was originally separated out for individual components but has since been abstracted into the BP_Activity_Feed class.
    255255                 *
    256                  * @since BuddyPress (1.0.0)
     256                 * @since 1.0.0
    257257                 */
    258258                do_action( 'bp_activity_' . $id . '_feed_item' );
     
    293293         * Most of this class method is derived from {@link WP::send_headers()}.
    294294         *
    295          * @since BuddyPress (1.9.0)
     295         * @since 1.9.0
    296296         *
    297297         * @access protected
     
    388388         * Fires at the end of the opening RSS tag for feed output so plugins can add extra attributes.
    389389         *
    390          * @since BuddyPress (1.8.0)
     390         * @since 1.8.0
    391391         */
    392392        do_action( 'bp_activity_feed_rss_attributes' ); ?>
     
    409409         * Fires at the end of channel elements list in RSS feed so plugins can add extra channel elements.
    410410         *
    411          * @since BuddyPress (1.8.0)
     411         * @since 1.8.0
    412412         */
    413413        do_action( 'bp_activity_feed_channel_elements' ); ?>
     
    434434                                 * Fires at the end of the individual RSS Item list in RSS feed so plugins can add extra item elements.
    435435                                 *
    436                                  * @since BuddyPress (1.8.0)
     436                                 * @since 1.8.0
    437437                                 */
    438438                                do_action( 'bp_activity_feed_item_elements' ); ?>
Note: See TracChangeset for help on using the changeset viewer.