ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "SBI_Response.php"
Full Path: /home/zcziejy/ryadselyen/-20260112071320/admin/SBI_Response.php
File size: 464 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class SBI_Response
*
* Sends back ajax response to client end
*
* @since 6.0
*/
namespace InstagramFeed;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class SBI_Response {
/**
* Response constructor.
*
* @param $is_success
* @param $data
*
* @throws \Exception
*/
public function __construct( $is_success, $data ) {
$is_success ? wp_send_json_success( $data ) : wp_send_json_error( $data );
wp_die();
}
}