- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
74 lines
1.7 KiB
PHP
Executable File
74 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
class BWFAN_API_Run_Automation_Tasks extends BWFAN_API_Base {
|
|
public static $ins;
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$ins ) {
|
|
self::$ins = new self();
|
|
}
|
|
|
|
return self::$ins;
|
|
}
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->method = WP_REST_Server::EDITABLE;
|
|
$this->route = '/automations/run-tasks/';
|
|
}
|
|
|
|
public function default_args_values() {
|
|
$args = [
|
|
'task_ids' => '',
|
|
];
|
|
|
|
return $args;
|
|
}
|
|
|
|
public function process_api_call() {
|
|
$task_ids = $this->args['task_ids'];
|
|
|
|
if ( empty( $task_ids ) ) {
|
|
return $this->error_response( __( 'Task Id is missing', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
$resp = array(
|
|
'msg' => __( 'Task Executed Successfully', 'wp-marketing-automations' ),
|
|
'status' => true,
|
|
);
|
|
|
|
try {
|
|
BWFAN_Core()->tasks->bwfan_ac_execute_task( $task_ids );
|
|
} catch ( Exception $exception ) {
|
|
$resp['status'] = false;
|
|
$resp['msg'] = $exception->getMessage();
|
|
$this->response_code = 404;
|
|
|
|
return $this->error_response( $resp );
|
|
}
|
|
|
|
if ( BWFAN_Core()->tasks->ajax_status ) {
|
|
$this->response_code = 200;
|
|
|
|
return $this->success_response( $resp, __( 'Tasks executed', 'wp-marketing-automations' ) );
|
|
}
|
|
$resp = array(
|
|
'msg' => BWFAN_Core()->tasks->ajax_msg,
|
|
'status' => BWFAN_Core()->tasks->ajax_status,
|
|
);
|
|
|
|
if ( 3 !== absint( BWFAN_Core()->tasks->ajax_status ) ) {
|
|
$this->response_code = 404;
|
|
|
|
return $this->success_response( $resp, BWFAN_Core()->tasks->ajax_msg );
|
|
}
|
|
|
|
$this->response_code = 200;
|
|
|
|
|
|
return $this->success_response( $resp, __( 'Task executed', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
}
|
|
|
|
BWFAN_API_Loader::register( 'BWFAN_API_Run_Automation_Tasks' ); |