Files
__inwestprofil.pagedev.pl/wp-content/themes/hello-elementor/modules/admin-home/components/ajax-handler.php
Roman Pyrih 296b13244b first commit
2025-07-11 12:34:24 +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();
}
}