zZzzZ.
home2
/
zrzvbdry
/
public_html
/
wp-content
/
plugins
/
wc-multi-currency
/
core
New Folder
Editing: AppsbdAjaxConfirmResponse.php
Save
Cancel
<?php /** * @since: 03/02/2019 * @author: Sarwar Hasan * @version 1.0.0 */ //phpcs:disable if(!class_exists("AppsbdAjaxConfirmResponse")) { class AppsbdAjaxConfirmResponse { public $status = false; public $msg = ""; public $data = NULL; public $icon = ""; public $isSticky = false; public $title = NULL; function SetResponse( $status, $msg, $data = NULL, $icon = "", $title = NULL, $isSticky = false ) { if ( empty( $icon ) ) { $icon = $status ? " fa fa-check-circle-o " : " fa fa-times-circle-o "; } $this->status = $status; $this->msg = $msg; $this->data = $data; $this->icon = $icon; $this->isSticky = $isSticky; } function DisplayWithResponse( $status, $msg, $data = NULL, $icon = "", $title = NULL, $isSticky = false ) { $this->SetResponse( $status, $msg, $data, $icon, $title, $isSticky ); $this->Display(); } function Display() { wp_send_json($this); } } }