mirror of
https://github.com/elementor/hello-theme.git
synced 2026-03-03 12:56:14 +08:00
18 lines
343 B
PHP
18 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();
|
|
}
|
|
}
|