first commit

This commit is contained in:
2026-04-30 09:50:43 +02:00
commit ac807c2833
145 changed files with 13938 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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();
}
}