_bbp_akismet_batch_delete
_bbp_akismet_batch_delete
Hook Type: action
Displaying hooks found in version: bbpress.2.6.9do_action('_bbp_akismet_batch_delete') is found 3 times:
- /includes/extend/akismet.php line 10641060106110621063106410651066106710681069
*
* @param string The current
function
.
* @param int The current topic/reply ID.
*/
do_action(
'_bbp_akismet_batch_delete'
,
__FUNCTION__
,
$spam_id
);
}
// Prepared as strings since id is an unsigned BIGINT, and using %
// will constrain the value to the maximum signed BIGINT.
$format_string
= implode(
', '
,
array_fill
( 0,
count
(
$spam_ids
),
'%s'
) );
- /includes/extend/akismet.php line 114511411142114311441145114611471148114911501151
*
* @param string The current
function
.
* @param int The current topic/reply ID.
*/
do_action(
'_bbp_akismet_batch_delete'
,
__FUNCTION__
,
$spam_id
);
}
/**
* Single action that encompasses all topic/reply IDs after the
*
delete
queries have been run.
*
- /includes/extend/akismet.php line 122312191220122112221223122412251226122712281229
*
* @param string The current
function
.
* @param int The current topic/reply ID.
*/
do_action(
'_bbp_akismet_batch_delete'
,
__FUNCTION__
,
$spam_meta
);
// Stash the meta ID being deleted
$spam_meta_deleted
[] =
$last_meta_id
=
$spam_meta
->meta_id;
}
/**