PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
instagram-feed
/
admin
<?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(); } }
[+]
builder
[+]
..
[-] SBI_Upgrader.php
[edit]
[-] SBI_oEmbeds.php
[edit]
[-] SBI_Global_Settings.php
[edit]
[+]
assets
[-] SBI_About_Us.php
[edit]
[-] SBI_Support.php
[edit]
[+]
views
[-] SBI_Admin_Notices.php
[edit]
[+]
Traits
[-] SBI_Response.php
[edit]
[-] SBI_View.php
[edit]
[-] SBI_HTTP_Request.php
[edit]