display_header = false; $this->display_footer = false; $this->content_only = true; parent::__construct(); $this->_ajax_results['error_on'] = 1; } public function init() { // Process POST | GET $this->initProcess(); } /** * * @throws Exception */ public function initProcess() { ob_start(); $RevSliderAdmin = new RevSliderAdmin(); $RevSliderAdmin->do_ajax_action(); $output = ob_get_contents(); ob_end_clean(); //die($output); die($output); } }