Your IP : 216.73.216.0


Current Path : /home/goldnueh/nightviewcafe.in/wp-content/plugins/demo-importer-plus/inc/
Upload File :
Current File : /home/goldnueh/nightviewcafe.in/wp-content/plugins/demo-importer-plus/inc/DemoAPI.php

<?php

namespace KraftPlugins\DemoImporterPlus;

class DemoAPI {
	protected static string $endpoint = '';

	public function __construct () {
		static::$endpoint = rtrim( trim( DEMO_IMPORTER_PLUS_MAIN_DEMO_URI ), '/' ) . '/wp-json/demoimporterplusapi/v1/dipa-demos/';
	}


	public static function fetch ( $id ) {

		static::$endpoint = rtrim( trim( DEMO_IMPORTER_PLUS_MAIN_DEMO_URI ), '/' ) . '/wp-json/demoimporterplusapi/v1/dipa-demos/';

		if ( $data = get_transient( "demo_importer_plus_import_data_{$id}" ) ) {
			return (object)$data;
		}

		$response = wp_remote_get( self::$endpoint . $id );

		if ( is_wp_error( $response ) ) {
			return false;
		}
		$body = wp_remote_retrieve_body( $response );
		$data = json_decode( $body, true );

		return (object)$data;
	}
}