80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?php
|
|
|
|
register_woocommerce_admin_test_helper_rest_route(
|
|
'/options',
|
|
'wca_test_helper_get_options',
|
|
array(
|
|
'methods' => 'GET',
|
|
'args' => array(
|
|
'page' => array(
|
|
'description' => 'Current page of the collection.',
|
|
'type' => 'integer',
|
|
'default' => 1,
|
|
'sanitize_callback' => 'absint',
|
|
),
|
|
'per_page' => array(
|
|
'description' => 'Maximum number of items to be returned in result set.',
|
|
'type' => 'integer',
|
|
'default' => 10,
|
|
'sanitize_callback' => 'absint',
|
|
),
|
|
'search' => array(
|
|
'description' => 'Limit results to those matching a string.',
|
|
'type' => 'string',
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
),
|
|
),
|
|
)
|
|
);
|
|
|
|
register_woocommerce_admin_test_helper_rest_route(
|
|
'/options/(?P<option_names>(.*)+)',
|
|
'wca_test_helper_delete_option',
|
|
array(
|
|
'methods' => 'DELETE',
|
|
'args' => array(
|
|
'option_names' => array(
|
|
'type' => 'string',
|
|
),
|
|
),
|
|
)
|
|
);
|
|
|
|
function wca_test_helper_delete_option( $request ) {
|
|
global $wpdb;
|
|
$option_names = explode( ',', $request->get_param( 'option_names' ) );
|
|
$option_names = array_map( function( $option_name ) {
|
|
return "'" . $option_name . "'";
|
|
}, $option_names );
|
|
|
|
$option_names = implode( ',', $option_names );
|
|
$query = "delete from {$wpdb->prefix}options where option_name in ({$option_names})";
|
|
$wpdb->query( $query );
|
|
|
|
return new WP_REST_RESPONSE( null, 204 );
|
|
}
|
|
|
|
function wca_test_helper_get_options( $request ) {
|
|
global $wpdb;
|
|
|
|
$per_page = $request->get_param( 'per_page' );
|
|
$page = $request->get_param( 'page' );
|
|
$search = $request->get_param( 'search' );
|
|
|
|
$query = "
|
|
select option_id, option_name, option_value, autoload
|
|
from {$wpdb->prefix}options
|
|
";
|
|
|
|
if ( $search ) {
|
|
$query .= "where option_name like '%{$search}%'";
|
|
}
|
|
|
|
$query .= ' order by option_id desc limit 30';
|
|
|
|
$options = $wpdb->get_results( $query );
|
|
|
|
return new WP_REST_Response( $options, 200 );
|
|
}
|
|
|