first commit
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
use HelloTheme\Includes\Script;
|
||||
use HelloTheme\Includes\Utils;
|
||||
|
||||
class Admin_Menu_Controller {
|
||||
|
||||
const MENU_PAGE_ICON = 'dashicons-plus-alt';
|
||||
const MENU_PAGE_POSITION = 59.9;
|
||||
const AI_SITE_PLANNER_SLUG = '-ai-site-planner';
|
||||
const THEME_BUILDER_SLUG = '-theme-builder';
|
||||
|
||||
public function admin_menu(): void {
|
||||
add_menu_page(
|
||||
__( 'Hello', 'hello-elementor' ),
|
||||
__( 'Hello', 'hello-elementor' ),
|
||||
'manage_options',
|
||||
EHP_THEME_SLUG,
|
||||
[ $this, 'render_home' ],
|
||||
self::MENU_PAGE_ICON,
|
||||
self::MENU_PAGE_POSITION
|
||||
);
|
||||
|
||||
add_submenu_page(
|
||||
EHP_THEME_SLUG,
|
||||
__( 'Home', 'hello-elementor' ),
|
||||
__( 'Home', 'hello-elementor' ),
|
||||
'manage_options',
|
||||
EHP_THEME_SLUG,
|
||||
[ $this, 'render_home' ]
|
||||
);
|
||||
|
||||
do_action( 'hello-plus-theme/admin-menu', EHP_THEME_SLUG );
|
||||
|
||||
$theme_builder_slug = Utils::get_theme_builder_slug();
|
||||
add_submenu_page(
|
||||
EHP_THEME_SLUG,
|
||||
__( 'Theme Builder', 'hello-elementor' ),
|
||||
__( 'Theme Builder', 'hello-elementor' ),
|
||||
'manage_options',
|
||||
empty( $theme_builder_slug ) ? EHP_THEME_SLUG . self::THEME_BUILDER_SLUG : $theme_builder_slug,
|
||||
[ $this, 'render_home' ]
|
||||
);
|
||||
|
||||
add_submenu_page(
|
||||
EHP_THEME_SLUG,
|
||||
__( 'AI Site Planner', 'hello-elementor' ),
|
||||
__( 'AI Site Planner', 'hello-elementor' ),
|
||||
'manage_options',
|
||||
EHP_THEME_SLUG . self::AI_SITE_PLANNER_SLUG,
|
||||
[ $this, 'render_home' ]
|
||||
);
|
||||
}
|
||||
|
||||
public function render_home(): void {
|
||||
echo '<div id="ehe-admin-home"></div>';
|
||||
}
|
||||
|
||||
public function redirect_menus(): void {
|
||||
$page = sanitize_key( filter_input( INPUT_GET, 'page', FILTER_UNSAFE_RAW ) );
|
||||
|
||||
switch ( $page ) {
|
||||
case EHP_THEME_SLUG . self::AI_SITE_PLANNER_SLUG:
|
||||
wp_redirect( Utils::get_ai_site_planner_url() );
|
||||
exit;
|
||||
|
||||
case EHP_THEME_SLUG . self::THEME_BUILDER_SLUG:
|
||||
wp_redirect( Utils::get_theme_builder_url() );
|
||||
exit;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public function admin_enqueue_scripts() {
|
||||
$script = new Script(
|
||||
'hello-elementor-menu',
|
||||
);
|
||||
|
||||
$script->enqueue();
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
add_action( 'admin_menu', [ $this, 'admin_menu' ] );
|
||||
add_action( 'admin_init', [ $this, 'redirect_menus' ] );
|
||||
add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
use HelloTheme\Includes\Script;
|
||||
use HelloTheme\Includes\Utils;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Admin_Top_Bar {
|
||||
|
||||
private function render_admin_top_bar() {
|
||||
?>
|
||||
<div id="ehe-admin-top-bar-root" style="height: 50px">
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
private function is_top_bar_active() {
|
||||
$current_screen = get_current_screen();
|
||||
|
||||
return ( false !== strpos( $current_screen->id ?? '', EHP_THEME_SLUG ) ) &&
|
||||
! Utils::is_elementor_active();
|
||||
}
|
||||
|
||||
private function enqueue_scripts() {
|
||||
$script = new Script(
|
||||
'hello-elementor-topbar',
|
||||
);
|
||||
|
||||
$script->enqueue();
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
if ( ! is_admin() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
add_action( 'current_screen', function () {
|
||||
if ( ! $this->is_top_bar_active() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
add_action( 'in_admin_header', function () {
|
||||
$this->render_admin_top_bar();
|
||||
} );
|
||||
|
||||
add_action( 'admin_enqueue_scripts', function () {
|
||||
$this->enqueue_scripts();
|
||||
} );
|
||||
} );
|
||||
}
|
||||
}
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
use HelloTheme\Modules\AdminHome\Rest\Admin_Config;
|
||||
use HelloTheme\Modules\AdminHome\Rest\Promotions;
|
||||
use HelloTheme\Modules\AdminHome\Rest\Theme_Settings;
|
||||
use HelloTheme\Modules\AdminHome\Rest\Whats_New;
|
||||
|
||||
class Api_Controller {
|
||||
|
||||
protected $endpoints = [];
|
||||
|
||||
public function __construct() {
|
||||
$this->endpoints['promotions'] = new Promotions();
|
||||
$this->endpoints['admin-config'] = new Admin_Config();
|
||||
$this->endpoints['theme-settings'] = new Theme_Settings();
|
||||
$this->endpoints['whats-new'] = new Whats_New();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
use HelloTheme\Includes\Script;
|
||||
use HelloTheme\Includes\Utils;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Conversion_Banner {
|
||||
|
||||
private function render_conversion_banner() {
|
||||
?>
|
||||
<div id="ehe-admin-cb" style="width: calc(100% - 48px)">
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
private function is_conversion_banner_active(): bool {
|
||||
if ( get_user_meta( get_current_user_id(), '_hello_elementor_install_notice', true ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( Utils::has_pro() && Utils::is_elementor_active() ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$current_screen = get_current_screen();
|
||||
|
||||
return false === strpos( $current_screen->id ?? '', EHP_THEME_SLUG );
|
||||
}
|
||||
|
||||
private function enqueue_scripts() {
|
||||
$script = new Script(
|
||||
'hello-conversion-banner',
|
||||
[ 'wp-util' ]
|
||||
);
|
||||
|
||||
$script->enqueue();
|
||||
|
||||
$is_installing_plugin_with_uploader = 'upload-plugin' === filter_input( INPUT_GET, 'action', FILTER_UNSAFE_RAW );
|
||||
|
||||
wp_localize_script(
|
||||
'hello-conversion-banner',
|
||||
'ehe_cb',
|
||||
[
|
||||
'nonce' => wp_create_nonce( 'ehe_cb_nonce' ),
|
||||
'beforeWrap' => $is_installing_plugin_with_uploader,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function dismiss_theme_notice() {
|
||||
check_ajax_referer( 'ehe_cb_nonce', 'nonce' );
|
||||
|
||||
update_user_meta( get_current_user_id(), '_hello_elementor_install_notice', true );
|
||||
|
||||
wp_send_json_success( [ 'message' => __( 'Notice dismissed.', 'hello-elementor' ) ] );
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
|
||||
add_action( 'wp_ajax_ehe_dismiss_theme_notice', [ $this, 'dismiss_theme_notice' ] );
|
||||
|
||||
add_action( 'current_screen', function () {
|
||||
if ( ! $this->is_conversion_banner_active() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
add_action( 'in_admin_header', function () {
|
||||
$this->render_conversion_banner();
|
||||
}, 11 );
|
||||
|
||||
add_action( 'admin_enqueue_scripts', function () {
|
||||
$this->enqueue_scripts();
|
||||
} );
|
||||
} );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
use Elementor\WPNotificationsPackage\V120\Notifications as Notifications_SDK;
|
||||
|
||||
class Notificator {
|
||||
private ?Notifications_SDK $notificator = null;
|
||||
|
||||
public function get_notifications_by_conditions( $force_request = false ) {
|
||||
return $this->notificator->get_notifications_by_conditions( $force_request );
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
if ( ! class_exists( 'Elementor\WPNotificationsPackage\V120\Notifications' ) ) {
|
||||
require_once HELLO_THEME_PATH . '/vendor/autoload.php';
|
||||
}
|
||||
|
||||
$this->notificator = new Notifications_SDK( [
|
||||
'app_name' => 'hello-elementor',
|
||||
'app_version' => HELLO_ELEMENTOR_VERSION,
|
||||
'short_app_name' => 'hello-elementor',
|
||||
'app_data' => [
|
||||
'theme_name' => 'hello-elementor',
|
||||
],
|
||||
] );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
use HelloTheme\Includes\Script;
|
||||
|
||||
class Scripts_Controller {
|
||||
|
||||
public function __construct() {
|
||||
add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
|
||||
}
|
||||
|
||||
public function admin_enqueue_scripts() {
|
||||
$screen = get_current_screen();
|
||||
|
||||
if ( 'toplevel_page_' . EHP_THEME_SLUG !== $screen->id ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$script = new Script(
|
||||
'hello-home-app',
|
||||
[ 'wp-util' ]
|
||||
);
|
||||
|
||||
$script->enqueue();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Components;
|
||||
|
||||
use HelloTheme\Includes\Script;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Settings_Controller {
|
||||
|
||||
const SETTINGS_FILTER_NAME = 'hello-plus-theme/settings';
|
||||
const SETTINGS_PAGE_SLUG = 'hello-elementor-settings';
|
||||
const SETTING_PREFIX = 'hello_elementor_settings';
|
||||
const SETTINGS = [
|
||||
'DESCRIPTION_META_TAG' => '_description_meta_tag',
|
||||
'SKIP_LINK' => '_skip_link',
|
||||
'HEADER_FOOTER' => '_header_footer',
|
||||
'PAGE_TITLE' => '_page_title',
|
||||
'HELLO_STYLE' => '_hello_style',
|
||||
'HELLO_THEME' => '_hello_theme',
|
||||
];
|
||||
|
||||
public static function get_settings_mapping(): array {
|
||||
return array_map(
|
||||
function ( $key ) {
|
||||
return self::SETTING_PREFIX . $key;
|
||||
},
|
||||
self::SETTINGS
|
||||
);
|
||||
}
|
||||
|
||||
public static function get_settings(): array {
|
||||
|
||||
$settings = array_map( function ( $key ) {
|
||||
return self::get_option( $key ) === 'true';
|
||||
}, self::get_settings_mapping() );
|
||||
|
||||
return apply_filters( self::SETTINGS_FILTER_NAME, $settings );
|
||||
}
|
||||
|
||||
protected static function get_option( string $option_name, $default_value = false ) {
|
||||
$option = get_option( $option_name, $default_value );
|
||||
|
||||
return apply_filters( self::SETTINGS_FILTER_NAME . '/' . $option_name, $option );
|
||||
}
|
||||
|
||||
public function legacy_register_settings() {
|
||||
$this->register_settings();
|
||||
$this->apply_settings();
|
||||
}
|
||||
|
||||
public function apply_setting( $setting, $tweak_callback ) {
|
||||
$option = get_option( $setting );
|
||||
|
||||
if ( isset( $option ) && ( 'true' === $option ) && is_callable( $tweak_callback ) ) {
|
||||
$tweak_callback();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function apply_settings( $settings_group = self::SETTING_PREFIX, $settings = self::SETTINGS ) {
|
||||
|
||||
$this->apply_setting(
|
||||
$settings_group . $settings['DESCRIPTION_META_TAG'],
|
||||
function () {
|
||||
remove_action( 'wp_head', 'hello_elementor_add_description_meta_tag' );
|
||||
}
|
||||
);
|
||||
|
||||
$this->apply_setting(
|
||||
$settings_group . $settings['SKIP_LINK'],
|
||||
function () {
|
||||
add_filter( 'hello_elementor_enable_skip_link', '__return_false' );
|
||||
}
|
||||
);
|
||||
|
||||
$this->apply_setting(
|
||||
$settings_group . $settings['HEADER_FOOTER'],
|
||||
function () {
|
||||
add_filter( 'hello_elementor_header_footer', '__return_false' );
|
||||
}
|
||||
);
|
||||
|
||||
$this->apply_setting(
|
||||
$settings_group . $settings['PAGE_TITLE'],
|
||||
function () {
|
||||
add_filter( 'hello_elementor_page_title', '__return_false' );
|
||||
}
|
||||
);
|
||||
|
||||
$this->apply_setting(
|
||||
$settings_group . $settings['HELLO_STYLE'],
|
||||
function () {
|
||||
add_filter( 'hello_elementor_enqueue_style', '__return_false' );
|
||||
}
|
||||
);
|
||||
|
||||
$this->apply_setting(
|
||||
$settings_group . $settings['HELLO_THEME'],
|
||||
function () {
|
||||
add_filter( 'hello_elementor_enqueue_theme_style', '__return_false' );
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
public function register_settings( $settings_group = self::SETTING_PREFIX, $settings = self::SETTINGS ) {
|
||||
foreach ( $settings as $setting_value ) {
|
||||
register_setting(
|
||||
$settings_group,
|
||||
$settings_group . $setting_value,
|
||||
[
|
||||
'default' => '',
|
||||
'show_in_rest' => true,
|
||||
'type' => 'string',
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
public function enqueue_hello_plus_settings_scripts() {
|
||||
$screen = get_current_screen();
|
||||
|
||||
if ( ! str_ends_with( $screen->id, '_page_' . self::SETTINGS_PAGE_SLUG ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$script = new Script(
|
||||
'hello-elementor-settings',
|
||||
[ 'wp-util' ]
|
||||
);
|
||||
|
||||
$script->enqueue();
|
||||
}
|
||||
|
||||
public function register_settings_page( $parent_slug ): void {
|
||||
add_submenu_page(
|
||||
$parent_slug,
|
||||
__( 'Settings', 'hello-elementor' ),
|
||||
__( 'Settings', 'hello-elementor' ),
|
||||
'manage_options',
|
||||
self::SETTINGS_PAGE_SLUG,
|
||||
[ $this, 'render_settings_page' ]
|
||||
);
|
||||
}
|
||||
|
||||
public function render_settings_page(): void {
|
||||
echo '<div id="ehe-admin-settings"></div>';
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_hello_plus_settings_scripts' ] );
|
||||
add_action( 'hello-plus-theme/admin-menu', [ $this, 'register_settings_page' ], 10, 1 );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user