File "ajax-handler.php"
Full Path: /home/diablzlo/glucosebalnce.com/wp-content-20250820145857/themes/hello-elementor/modules/admin-home/components/ajax-handler.php
File size: 343 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace HelloTheme\Modules\AdminHome\Components;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Ajax_Handler {
public function __construct() {
add_action( 'wp_ajax_ehe_install_elementor', [ $this, 'install_elementor' ] );
}
public function install_elementor() {
wp_ajax_install_plugin();
}
}