Files
roi-theme/wp-content/plugins/wp-marketing-automations/includes/api/settings/class-bwfan-api-table-status.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- 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>
2025-11-03 21:04:30 -06:00

35 lines
860 B
PHP
Executable File

<?php
class BWFAN_API_Table_Status 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::READABLE;
$this->route = '/settings/status/tables';
}
public function process_api_call() {
$automations_table_result = BWFAN_Common::checking_all_tables_exists();
if ( is_array( $automations_table_result ) ) {
$this->response_code = 404;
$message = 'Some tables are not created. ' . implode( ',', $automations_table_result );
return $this->error_response( $message );
}
$this->response_code = 200;
return $this->success_response( [], 'Tables created' );
}
}
BWFAN_API_Loader::register( 'BWFAN_API_Table_Status' );