- Timestamp:
- 08/31/2015 06:51:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/classes/class-bp-activity-feed.php
r9834 r10077 4 4 * 5 5 * @package BuddyPress 6 * @subpackage Activity 6 * @subpackage ActivityFeeds 7 7 */ 8 8 … … 31 31 * @type array $activity_args Optional. Arguments passed to {@link bp_has_activities()} 32 32 * } 33 * @since BuddyPress (1.8.0)33 * @since 1.8.0 34 34 */ 35 35 class BP_Activity_Feed { … … 74 74 * Filters if BuddyPress should consider feeds enabled. If disabled, it will return early. 75 75 * 76 * @since BuddyPress (1.8.0)76 * @since 1.8.0 77 77 * 78 78 * @param bool true Default true aka feeds are enabled. … … 126 126 * Fires before the feed is setup so plugins can modify. 127 127 * 128 * @since BuddyPress (1.8.0)128 * @since 1.8.0 129 129 * 130 130 * @param BP_Activity_Feed $this Current instance of activity feed. Passed by reference. … … 144 144 * Fires after the feed is setup so plugins can modify. 145 145 * 146 * @since BuddyPress (1.8.0)146 * @since 1.8.0 147 147 * 148 148 * @param BP_Activity_Feed $this Current instance of activity feed. Passed by reference. … … 210 210 * This hook was originally separated out for individual components but has since been abstracted into the BP_Activity_Feed class. 211 211 * 212 * @since BuddyPress (1.0.0)212 * @since 1.0.0 213 213 */ 214 214 do_action( 'bp_activity_' . $this->id . '_feed' ); … … 225 225 * This hook was originally separated out for individual components but has since been abstracted into the BP_Activity_Feed class. 226 226 * 227 * @since BuddyPress (1.0.0)227 * @since 1.0.0 228 228 */ 229 229 do_action( 'bp_activity_' . $this->id . '_feed_head' ); … … 254 254 * This hook was originally separated out for individual components but has since been abstracted into the BP_Activity_Feed class. 255 255 * 256 * @since BuddyPress (1.0.0)256 * @since 1.0.0 257 257 */ 258 258 do_action( 'bp_activity_' . $id . '_feed_item' ); … … 293 293 * Most of this class method is derived from {@link WP::send_headers()}. 294 294 * 295 * @since BuddyPress (1.9.0)295 * @since 1.9.0 296 296 * 297 297 * @access protected … … 388 388 * Fires at the end of the opening RSS tag for feed output so plugins can add extra attributes. 389 389 * 390 * @since BuddyPress (1.8.0)390 * @since 1.8.0 391 391 */ 392 392 do_action( 'bp_activity_feed_rss_attributes' ); ?> … … 409 409 * Fires at the end of channel elements list in RSS feed so plugins can add extra channel elements. 410 410 * 411 * @since BuddyPress (1.8.0)411 * @since 1.8.0 412 412 */ 413 413 do_action( 'bp_activity_feed_channel_elements' ); ?> … … 434 434 * Fires at the end of the individual RSS Item list in RSS feed so plugins can add extra item elements. 435 435 * 436 * @since BuddyPress (1.8.0)436 * @since 1.8.0 437 437 */ 438 438 do_action( 'bp_activity_feed_item_elements' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.