PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/eastfin/wp-content/themes/kingdom/aa-framework/utils/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/eastfin/wp-content/themes/kingdom/aa-framework/utils/action_admin_ajax.php |
<?php /* * Define class kingdom_ActionAdminAjax * Make sure you skip down to the end of this file, as there are a few * lines of code that are very important. */ !defined('ABSPATH') and exit; if (class_exists('kingdom_ActionAdminAjax') != true) { class kingdom_ActionAdminAjax { /* * Some required plugin information */ const VERSION = '1.0'; /* * Store some helpers config */ public $the_plugin = null; public $amzHelper = null; static protected $_instance; /* * Required __construct() function that initalizes the FG Framework */ public function __construct( $parent ) { $this->the_plugin = $parent; $this->amzHelper = $this->the_plugin->amzHelper; add_action('wp_ajax_kingdom_AttributesCleanDuplicate', array( $this, 'attributes_clean_duplicate' )); } /** * Singleton pattern * * @return Singleton instance */ static public function getInstance() { if (!self::$_instance) { self::$_instance = new self; } return self::$_instance; } /** * Clean Duplicate Attributes * */ public function attributes_clean_duplicate( $retType = 'die' ) { $action = isset($_REQUEST['sub_action']) ? $_REQUEST['sub_action'] : ''; $ret = array( 'status' => 'invalid', 'msg_html' => '' ); if ($action != 'attr_clean_duplicate' ) die(json_encode($ret)); return $this->amzHelper->attrclean_clean_all(); } } } // Initialize the kingdom_ActionAdminAjax class //$kingdom_ActionAdminAjax = new kingdom_ActionAdminAjax();