Files
Roman Pyrih 97352dcdc9 first commit
2025-08-26 10:50:15 +02:00

19 lines
343 B
PHP

<?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();
}
}