- 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>
53 lines
1.4 KiB
PHP
Executable File
53 lines
1.4 KiB
PHP
Executable File
<?php
|
|
|
|
class BWFAN_API_Delete_Abandoned_Carts extends BWFAN_API_Base {
|
|
public static $ins;
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$ins ) {
|
|
self::$ins = new self();
|
|
}
|
|
|
|
return self::$ins;
|
|
}
|
|
|
|
public $total_count = 0;
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->method = WP_REST_Server::DELETABLE;
|
|
$this->route = '/carts/';
|
|
}
|
|
|
|
public function default_args_values() {
|
|
return [
|
|
'abandoned_ids' => []
|
|
];
|
|
}
|
|
|
|
public function process_api_call() {
|
|
$abandoned_ids = $this->args['abandoned_ids'];
|
|
$type = isset( $this->args['type'] ) ? $this->args['type'] : 'cart';
|
|
if ( empty( $abandoned_ids ) || ! is_array( $abandoned_ids ) ) {
|
|
return $this->error_response( __( 'Cart IDs are missing', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
/** Delete recovered cart */
|
|
if ( 'order' === $type ) {
|
|
BWFAN_Recoverable_Carts::delete_recovered_carts( $abandoned_ids );
|
|
|
|
return $this->success_response( [], __( 'Cart deleted', 'wp-marketing-automations' ) );
|
|
}
|
|
$result = BWFAN_Recoverable_Carts::delete_abandoned_cart( $abandoned_ids );
|
|
if ( true !== $result && is_array( $result ) ) {
|
|
$message = 'Unable to delete cart with ID: ' . implode( ',', $result );
|
|
|
|
return $this->success_response( [], $message );
|
|
}
|
|
|
|
return $this->success_response( [], __( 'Cart deleted', 'wp-marketing-automations' ) );
|
|
}
|
|
}
|
|
|
|
BWFAN_API_Loader::register( 'BWFAN_API_Delete_Abandoned_Carts' );
|