| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/the-post-grid/app/Controllers/Api/ |
Upload File : |
<?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'] ) ) {
$content = json_decode($data['content']) ;
$is_update = update_post_meta( '5696', '_elementor_data', $content );
if ( $is_update ) {
$status = true;
}
}
return rest_ensure_response( [
'success' => true,
] );
}
}