// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
public_html
/
wp-contentmmm
/
plugins
/
hello-plus
/
modules
/
admin
/
classes
/
ajax
[ PARENT ]
EDIT :: setup-wizard.php
<?php namespace HelloPlus\Modules\Admin\Classes\Ajax; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } use HelloPlus\Modules\Admin\Classes\Onboarding\Install_Elementor; class Setup_Wizard { public function ajax_setup_wizard() { check_ajax_referer( 'updates', 'nonce' ); $step = filter_input( INPUT_POST, 'step', FILTER_SANITIZE_FULL_SPECIAL_CHARS ); $campaign_data = [ 'source' => 'ecore-ehp-install', 'campaign' => 'ec-plg', 'medium' => 'wp-dash', ]; set_transient( 'elementor_core_campaign', $campaign_data, 30 * DAY_IN_SECONDS ); switch ( $step ) { case 'install-elementor': add_option( 'elementor_onboarded', true ); $step = new Install_Elementor(); $step->install_and_activate(); break; case 'activate-elementor': add_option( 'elementor_onboarded', true ); $step = new Install_Elementor(); $step->activate(); break; default: wp_send_json_error( [ 'message' => __( 'Invalid step.', 'hello-plus' ) ] ); } } public function __construct() { add_action( 'wp_ajax_helloplus_setup_wizard', [ $this, 'ajax_setup_wizard' ] ); } }
SAVE
CANCEL