BP_Akismet::update_activity_spam_meta( BP_Activity_Activity $activity )
Update activity meta after a manual spam change (user-initiated).
Description
Parameters
- $activity
-
(Required) The activity to check.
Source
File: bp-activity/classes/class-bp-akismet.php
452 453 454 455 456 457 458 459 460 | public function update_activity_spam_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 spam' , 'buddyboss' ), bp_get_loggedin_user_username() ), 'report-spam' ); bp_activity_update_meta( $activity ->id, '_bp_akismet_user_result' , 'true' ); bp_activity_update_meta( $activity ->id, '_bp_akismet_user' , bp_get_loggedin_user_username() ); } |
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.