This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

BBP_BuddyPress_Activity::record_activity( type $args = array() )

Wrapper for recoding Forums actions to the BuddyBoss activity stream

Description

Parameters

$args

(Optional) Array of arguments for bp_activity_add()

Default value: array()

Return

(type) Activity ID if successful, false if not

Source

File: bp-forums/activity.php

213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
private function record_activity( $args = array() ) {
 
    // Default activity args
    $activity = bbp_parse_args( $args, array(
        'id'                => null,
        'user_id'           => bbp_get_current_user_id(),
        'type'              => '',
        'action'            => '',
        'item_id'           => '',
        'secondary_item_id' => '',
        'content'           => '',
        'primary_link'      => '',
        'component'         => $this->component,
        'recorded_time'     => bp_core_current_time(),
        'hide_sitewide'     => false
    ), 'record_activity' );
 
    // Add the activity
    return bp_activity_add( $activity );
}

Changelog

Changelog
Version Description
bbPress (r3395) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.