BP_Akismet::update_activity_ham_meta( BP_Activity_Activity $activity )

Update activity meta after a manual ham change (user-initiated).

Description

Parameters

$activity

(Required) The activity to check.

Source

File: bp-activity/classes/class-bp-akismet.php

470
471
472
473
474
475
476
477
478
public function update_activity_ham_meta( $activity ) {
    // By default, only handle activity updates and activity comments.
    if ( !in_array( $activity->type, BP_Akismet::get_activity_types() ) )
        return;
 
    $this->update_activity_history( $activity->id, sprintf( __( '%s reported this activity as not spam', 'buddyboss' ), bp_get_loggedin_user_username() ), 'report-ham' );
    bp_activity_update_meta( $activity->id, '_bp_akismet_user_result', 'false' );
    bp_activity_update_meta( $activity->id, '_bp_akismet_user', bp_get_loggedin_user_username() );
}

Changelog

Changelog
Version Description
BuddyPress 1.6.0 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.