You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
954 B
PHP
46 lines
954 B
PHP
<?php
|
|
|
|
namespace RT\ThePostGrid\Controllers\Api;
|
|
|
|
use RT\ThePostGrid\Helpers\Fns;
|
|
|
|
class ElImport {
|
|
public function __construct() {
|
|
add_action( "rest_api_init", [ $this, 'register_image_size_route' ] );
|
|
}
|
|
|
|
public function register_image_size_route() {
|
|
register_rest_route( 'rttpg/v1', 'elimport', [
|
|
'methods' => 'POST',
|
|
'callback' => [ $this, 'el_import' ],
|
|
'permission_callback' => function () {
|
|
return true;
|
|
}
|
|
] );
|
|
}
|
|
|
|
public function el_import( $data ) {
|
|
$content = $data["content"];
|
|
|
|
$status = false;
|
|
|
|
if ( isset( $data['content'] ) ) {
|
|
// wp_unslash(wp_unslash( ) ))
|
|
$content = json_decode($data['content']) ;
|
|
|
|
// error_log( print_r( $content , true ) . "\n\n" , 3, __DIR__ . '/log.txt' );
|
|
|
|
$is_update = update_post_meta( '5696', '_elementor_data', $content );
|
|
|
|
if ( $is_update ) {
|
|
$status = true;
|
|
}
|
|
}
|
|
|
|
|
|
return rest_ensure_response( [
|
|
'success' => true,
|
|
] );
|
|
}
|
|
|
|
} |