_bbp_akismet_batch_delete

_bbp_akismet_batch_delete

Hook Type: action

See hook in core

Displaying hooks found in version: bbpress.2.6.9

do_action('_bbp_akismet_batch_delete') is found 3 times:

  • /includes/extend/akismet.php line 1064
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
         *
         * @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 1145
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
         *
         * @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 1223
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
         *
         * @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;
    }
     
    /**