bp_rest_activity_show_hidden, $retval, $component, $user_id
bp_rest_activity_show_hidden, $retval, $component, $user_id
Appears in: buddypress.14.5.2
Hook Type: filter
Displaying hooks found in version: buddypress.14.5.2apply_filters('bp_rest_activity_show_hidden, $retval, $component, $user_id') is found 1 times:
- /bp-activity/classes/class-bp-rest-activity-endpoint.php line 1243
* @param bool $retval True to show hidden activities. False otherwise. * @param string $component The component name/ID. * @param int $user_id The current user ID. */ $retval = apply_filters( 'bp_rest_activity_show_hidden', $retval, $component, $user_id ); } // Moderators as well. if ( bp_current_user_can( 'bp_moderate' ) ) { $retval = true; }