SelectAnswer()
Description #
Run async tasks for hook ap_select_answer.
Source #
File: includes/class-async-tasks.php
class SelectAnswer extends \WP_Async_Task { // phpcs:ignore
/**
* The hook name.
*
* @var string
*/
protected $action = 'ap_select_answer';
/**
* Prepare data for the asynchronous request
*
* @param array $data Arguments.
* @return array
* @since 4.1.8
*/
protected function prepare_data( $data ) {
return array( 'post_id' => $data[0]->ID );
}
/**
* Run action.
*
* @return void
* @since 4.1.8
*/
protected function run_action() {
$post_id = ap_sanitize_unslash( 'post_id', 'g' );
$post = ap_get_post( $post_id );
if ( $post ) {
do_action( "wp_async_$this->action", $post );
}
}
}
Expand full source code Collapse full source code View on GitHub: includes/class-async-tasks.php:104
Add your comment