Changeset 9834 for trunk/src/bp-activity/bp-activity-filters.php
- Timestamp:
- 05/03/2015 10:51:31 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-filters.php
r9833 r9834 211 211 * @since BuddyPress (1.2.0) 212 212 * 213 * @param array Array of allowed HTML tags and attributes.213 * @param array $value Array of allowed HTML tags and attributes. 214 214 */ 215 215 $activity_allowedtags = apply_filters( 'bp_activity_allowed_tags', $activity_allowedtags ); … … 321 321 * @uses bp_activity_update_mention_count_for_user() 322 322 * 323 * @param BP_Activity_Activity $activity The BP_Activity_Activity object 323 * @param BP_Activity_Activity $activity The BP_Activity_Activity object. 324 324 */ 325 325 function bp_activity_at_name_send_emails( $activity ) { … … 379 379 * @param array $matches Items matched by preg_replace_callback() in bp_activity_make_nofollow_filter(). 380 380 * 381 * @return string $text Link with rel=nofollow added 381 * @return string $text Link with rel=nofollow added. 382 382 */ 383 383 function bp_activity_make_nofollow_filter_callback( $matches ) { … … 431 431 * @since BuddyPress (1.5.0) 432 432 * 433 * @param string $ read_more Internationalized "Read more" text.433 * @param string $value Internationalized "Read more" text. 434 434 */ 435 435 $append_text = apply_filters( 'bp_activity_excerpt_append_text', __( '[Read more]', 'buddypress' ) ); … … 440 440 * @since BuddyPress (1.5.0) 441 441 * 442 * @param int $ excerpt_lengthNumber indicating how many words to trim the excerpt down to.442 * @param int $value Number indicating how many words to trim the excerpt down to. 443 443 */ 444 444 $excerpt_length = apply_filters( 'bp_activity_excerpt_length', 358 ); … … 544 544 * @since BuddyPress (2.0.0) 545 545 * 546 * @uses bp_activity_get_last_updated() to get the recorded date of the last activity 546 * @uses bp_activity_get_last_updated() to get the recorded date of the last activity. 547 547 * 548 548 * @param array $response … … 626 626 * @since BuddyPress (2.0.0) 627 627 * 628 * @param array $ settingsHeartbeat settings array.628 * @param array $value Heartbeat settings array. 629 629 */ 630 630 $heartbeat_settings = apply_filters( 'heartbeat_settings', array() ); … … 639 639 * @since BuddyPress (2.0.0) 640 640 * 641 * @param int $ frequencyThe frequency in seconds between pulses.641 * @param int $value The frequency in seconds between pulses. 642 642 */ 643 643 $bp_activity_pulse = apply_filters( 'bp_activity_heartbeat_pulse', 15 );
Note: See TracChangeset
for help on using the changeset viewer.