first commit
This commit is contained in:
@@ -0,0 +1,319 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Rest;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
use HelloTheme\Includes\Utils;
|
||||
use WP_REST_Server;
|
||||
|
||||
class Admin_Config extends Rest_Base {
|
||||
|
||||
public function register_routes() {
|
||||
register_rest_route(
|
||||
self::ROUTE_NAMESPACE,
|
||||
'/admin-settings',
|
||||
[
|
||||
'methods' => WP_REST_Server::READABLE,
|
||||
'callback' => [ $this, 'get_admin_config' ],
|
||||
'permission_callback' => [ $this, 'permission_callback' ],
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function get_admin_config() {
|
||||
$config = $this->get_welcome_box_config( [] );
|
||||
|
||||
$config = $this->get_site_parts( $config );
|
||||
|
||||
$config = $this->get_resources( $config );
|
||||
|
||||
$config = apply_filters( 'hello-plus-theme/rest/admin-config', $config );
|
||||
|
||||
$config['config'] = [
|
||||
'nonceInstall' => wp_create_nonce( 'updates' ),
|
||||
'slug' => 'elementor',
|
||||
];
|
||||
|
||||
return rest_ensure_response( [ 'config' => $config ] );
|
||||
}
|
||||
|
||||
public function get_resources( array $config ) {
|
||||
$config['resourcesData'] = [
|
||||
'community' => [
|
||||
[
|
||||
'title' => __( 'Facebook', 'hello-elementor' ),
|
||||
'link' => 'https://www.facebook.com/groups/Elementors/',
|
||||
'icon' => 'BrandFacebookIcon',
|
||||
'target' => '_blank',
|
||||
],
|
||||
[
|
||||
'title' => __( 'YouTube', 'hello-elementor' ),
|
||||
'link' => 'https://www.youtube.com/@Elementor',
|
||||
'icon' => 'BrandYoutubeIcon',
|
||||
'target' => '_blank',
|
||||
],
|
||||
[
|
||||
'title' => __( 'Discord', 'hello-elementor' ),
|
||||
'link' => 'https://discord.com/servers/elementor-official-community-1164474724626206720',
|
||||
'target' => '_blank',
|
||||
],
|
||||
[
|
||||
'title' => __( 'Rate Us', 'hello-elementor' ),
|
||||
'link' => 'https://wordpress.org/support/theme/hello-elementor/reviews/#new-post',
|
||||
'icon' => 'StarIcon',
|
||||
'target' => '_blank',
|
||||
],
|
||||
],
|
||||
'resources' => [
|
||||
[
|
||||
'title' => __( 'Help Center', 'hello-elementor' ),
|
||||
'link' => ' https://go.elementor.com/hello-help/',
|
||||
'icon' => 'HelpIcon',
|
||||
'target' => '_blank',
|
||||
],
|
||||
[
|
||||
'title' => __( 'Blog', 'hello-elementor' ),
|
||||
'link' => 'https://go.elementor.com/hello-blog/',
|
||||
'icon' => 'SpeakerphoneIcon',
|
||||
'target' => '_blank',
|
||||
],
|
||||
[
|
||||
'title' => __( 'Platinum Support', 'hello-elementor' ),
|
||||
'link' => 'https://go.elementor.com/platinum-support',
|
||||
'icon' => 'BrandElementorIcon',
|
||||
'target' => '_blank',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
public function get_site_parts( array $config ): array {
|
||||
$last_five_pages_query = new \WP_Query(
|
||||
[
|
||||
'posts_per_page' => 5,
|
||||
'post_type' => 'page',
|
||||
'post_status' => 'publish',
|
||||
'orderby' => 'post_date',
|
||||
'order' => 'DESC',
|
||||
'fields' => 'ids',
|
||||
'no_found_rows' => true,
|
||||
'lazy_load_term_meta' => true,
|
||||
'update_post_meta_cache' => false,
|
||||
]
|
||||
);
|
||||
|
||||
$site_pages = [];
|
||||
|
||||
if ( $last_five_pages_query->have_posts() ) {
|
||||
$elementor_active = Utils::is_elementor_active();
|
||||
$edit_with_elementor = $elementor_active ? '&action=elementor' : '';
|
||||
while ( $last_five_pages_query->have_posts() ) {
|
||||
$last_five_pages_query->the_post();
|
||||
$site_pages[] = [
|
||||
'title' => get_the_title(),
|
||||
'link' => get_edit_post_link( get_the_ID(), 'admin' ) . $edit_with_elementor,
|
||||
'icon' => 'PagesIcon',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
$general = [
|
||||
[
|
||||
'title' => __( 'Add New Page', 'hello-elementor' ),
|
||||
'link' => self_admin_url( 'post-new.php?post_type=page' ),
|
||||
'icon' => 'PageTypeIcon',
|
||||
],
|
||||
[
|
||||
'title' => __( 'Settings', 'hello-elementor' ),
|
||||
'link' => self_admin_url( 'admin.php?page=hello-elementor-settings' ),
|
||||
],
|
||||
];
|
||||
|
||||
$common_parts = [];
|
||||
|
||||
$customizer_header_footer_url = $this->get_open_homepage_with_tab( '', [ 'autofocus[section]' => 'hello-options' ] );
|
||||
|
||||
$header_part = [
|
||||
'id' => 'header',
|
||||
'title' => __( 'Header', 'hello-elementor' ),
|
||||
'link' => $customizer_header_footer_url,
|
||||
'icon' => 'HeaderTemplateIcon',
|
||||
'sublinks' => [],
|
||||
];
|
||||
$footer_part = [
|
||||
'id' => 'footer',
|
||||
'title' => __( 'Footer', 'hello-elementor' ),
|
||||
'link' => $customizer_header_footer_url,
|
||||
'icon' => 'FooterTemplateIcon',
|
||||
'sublinks' => [],
|
||||
];
|
||||
|
||||
if ( Utils::is_elementor_active() ) {
|
||||
$common_parts = [
|
||||
[
|
||||
'title' => __( 'Theme Builder', 'hello-elementor' ),
|
||||
'link' => Utils::get_theme_builder_url(),
|
||||
'icon' => 'ThemeBuilderIcon',
|
||||
],
|
||||
];
|
||||
$header_part['link'] = $this->get_open_homepage_with_tab( 'hello-settings-header' );
|
||||
$footer_part['link'] = $this->get_open_homepage_with_tab( 'hello-settings-footer' );
|
||||
|
||||
if ( Utils::has_pro() ) {
|
||||
$header_part = $this->update_pro_part( $header_part, 'header' );
|
||||
$footer_part = $this->update_pro_part( $footer_part, 'footer' );
|
||||
}
|
||||
}
|
||||
|
||||
$site_parts = [
|
||||
'siteParts' => array_merge(
|
||||
[
|
||||
$header_part,
|
||||
$footer_part,
|
||||
],
|
||||
$common_parts
|
||||
),
|
||||
'sitePages' => $site_pages,
|
||||
'general' => $general,
|
||||
];
|
||||
|
||||
$config['siteParts'] = apply_filters( 'hello-plus-theme/template-parts', $site_parts );
|
||||
|
||||
return $this->get_quicklinks( $config );
|
||||
}
|
||||
|
||||
private function update_pro_part( array $part, string $location ): array {
|
||||
$theme_builder_module = \ElementorPro\Modules\ThemeBuilder\Module::instance();
|
||||
$conditions_manager = $theme_builder_module->get_conditions_manager();
|
||||
|
||||
$documents = $conditions_manager->get_documents_for_location( $location );
|
||||
if ( ! empty( $documents ) ) {
|
||||
$first_document_id = array_key_first( $documents );
|
||||
$edit_link = get_edit_post_link( $first_document_id, 'admin' ) . '&action=elementor';
|
||||
|
||||
} else {
|
||||
$edit_link = $this->get_open_homepage_with_tab( 'hello-settings-' . $location );
|
||||
}
|
||||
$part['sublinks'] = [
|
||||
[
|
||||
'title' => __( 'Edit', 'hello-elementor' ),
|
||||
'link' => $edit_link,
|
||||
],
|
||||
[
|
||||
'title' => __( 'Add New', 'hello-elementor' ),
|
||||
'link' => \Elementor\Plugin::instance()->app->get_base_url() . '#/site-editor/templates/' . $location,
|
||||
],
|
||||
];
|
||||
|
||||
return $part;
|
||||
}
|
||||
|
||||
public function get_open_homepage_with_tab( $action, $customizer_fallback_args = [] ): string {
|
||||
if ( Utils::is_elementor_active() && method_exists( \Elementor\Core\DocumentTypes\Page::class, 'get_site_settings_url_config' ) ) {
|
||||
return \Elementor\Core\DocumentTypes\Page::get_site_settings_url_config( $action )['url'];
|
||||
}
|
||||
|
||||
return add_query_arg( $customizer_fallback_args, self_admin_url( 'customize.php' ) );
|
||||
}
|
||||
|
||||
public function get_quicklinks( $config ): array {
|
||||
$config['quickLinks'] = [
|
||||
'site_name' => [
|
||||
'title' => __( 'Site Name', 'hello-elementor' ),
|
||||
'link' => $this->get_open_homepage_with_tab( 'settings-site-identity', [ 'autofocus[section]' => 'title_tagline' ] ),
|
||||
'icon' => 'TextIcon',
|
||||
|
||||
],
|
||||
'site_logo' => [
|
||||
'title' => __( 'Site Logo', 'hello-elementor' ),
|
||||
'link' => $this->get_open_homepage_with_tab( 'settings-site-identity', [ 'autofocus[section]' => 'title_tagline' ] ),
|
||||
'icon' => 'PhotoIcon',
|
||||
],
|
||||
'site_favicon' => [
|
||||
'title' => __( 'Site Favicon', 'hello-elementor' ),
|
||||
'link' => $this->get_open_homepage_with_tab( 'settings-site-identity', [ 'autofocus[section]' => 'title_tagline' ] ),
|
||||
'icon' => 'AppsIcon',
|
||||
],
|
||||
];
|
||||
|
||||
if ( Utils::is_elementor_active() ) {
|
||||
$config['quickLinks']['site_colors'] = [
|
||||
'title' => __( 'Site Colors', 'hello-elementor' ),
|
||||
'link' => $this->get_open_homepage_with_tab( 'global-colors' ),
|
||||
'icon' => 'BrushIcon',
|
||||
];
|
||||
|
||||
$config['quickLinks']['site_fonts'] = [
|
||||
'title' => __( 'Site Fonts', 'hello-elementor' ),
|
||||
'link' => $this->get_open_homepage_with_tab( 'global-typography' ),
|
||||
'icon' => 'UnderlineIcon',
|
||||
];
|
||||
}
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
public function get_welcome_box_config( array $config ): array {
|
||||
$is_elementor_installed = Utils::is_elementor_installed();
|
||||
$is_elementor_active = Utils::is_elementor_active();
|
||||
$has_pro = Utils::has_pro();
|
||||
|
||||
if ( ! $is_elementor_active ) {
|
||||
$link = $is_elementor_installed ? Utils::get_elementor_activation_link() : 'install';
|
||||
|
||||
$action_link_type = Utils::get_action_link_type();
|
||||
|
||||
if ( 'activate-elementor' === $action_link_type ) {
|
||||
$cta_text = __( 'Activate Elementor', 'hello-elementor' );
|
||||
} else {
|
||||
$cta_text = __( 'Install Elementor', 'hello-elementor' );
|
||||
}
|
||||
|
||||
$config['welcome'] = [
|
||||
'title' => __( 'Thanks for installing the Hello Theme!', 'hello-elementor' ),
|
||||
'text' => __( 'Welcome to Hello Theme—a lightweight, blank canvas designed to integrate seamlessly with Elementor, the most popular, no-code visual website builder. By installing and activating Elementor, you\'ll unlock the power to craft a professional website with advanced features and functionalities.', 'hello-elementor' ),
|
||||
'buttons' => [
|
||||
[
|
||||
'linkText' => $cta_text,
|
||||
'variant' => 'contained',
|
||||
'link' => $link,
|
||||
'color' => 'primary',
|
||||
],
|
||||
],
|
||||
'image' => [
|
||||
'src' => HELLO_THEME_IMAGES_URL . 'install-elementor.png',
|
||||
'alt' => $cta_text,
|
||||
],
|
||||
];
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
if ( $is_elementor_active && ! $has_pro ) {
|
||||
$config['welcome'] = [
|
||||
'title' => __( 'Go Pro, Go Limitless', 'hello-elementor' ),
|
||||
'text' => __( 'Unlock the theme builder, popup builder, 100+ widgets and more advanced tools to take your website to the next level.', 'hello-elementor' ),
|
||||
'buttons' => [
|
||||
[
|
||||
'linkText' => __( 'Upgrade now', 'hello-elementor' ),
|
||||
'variant' => 'contained',
|
||||
'link' => 'https://go.elementor.com/hello-upgrade-epro/',
|
||||
'color' => 'primary',
|
||||
'target' => '_blank',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
$config['welcome'] = [];
|
||||
|
||||
return $config;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Rest;
|
||||
|
||||
use HelloTheme\Includes\Utils;
|
||||
use WP_REST_Server;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Promotions extends Rest_Base {
|
||||
|
||||
public function get_promotions() {
|
||||
$action_links_data = [];
|
||||
|
||||
if ( ! defined( 'ELEMENTOR_PRO_VERSION' ) && Utils::is_elementor_active() ) {
|
||||
$action_links_data[] = [
|
||||
'type' => 'go-pro',
|
||||
'image' => HELLO_THEME_IMAGES_URL . 'go-pro.svg',
|
||||
'url' => 'https://go.elementor.com/hello-upgrade-epro/',
|
||||
'alt' => __( 'Elementor Pro', 'hello-elementor' ),
|
||||
'title' => __( 'Bring your vision to life', 'hello-elementor' ),
|
||||
'messages' => [
|
||||
__( 'Get complete design flexibility for your website with Elementor Pro’s advanced tools and premium features.', 'hello-elementor' ),
|
||||
],
|
||||
'button' => __( 'Upgrade Now', 'hello-elementor' ),
|
||||
'upgrade' => true,
|
||||
'features' => [
|
||||
__( 'Popup Builder', 'hello-elementor' ),
|
||||
__( 'Custom Code & CSS', 'hello-elementor' ),
|
||||
__( 'E-commerce Features', 'hello-elementor' ),
|
||||
__( 'Collaborative Notes', 'hello-elementor' ),
|
||||
__( 'Form Submission', 'hello-elementor' ),
|
||||
__( 'Form Integrations', 'hello-elementor' ),
|
||||
__( 'Customs Attribute', 'hello-elementor' ),
|
||||
__( 'Role Manager', 'hello-elementor' ),
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
if (
|
||||
! defined( 'ELEMENTOR_IMAGE_OPTIMIZER_VERSION' ) &&
|
||||
! defined( 'IMAGE_OPTIMIZATION_VERSION' )
|
||||
) {
|
||||
$action_links_data[] = [
|
||||
'type' => 'go-image-optimizer',
|
||||
'image' => HELLO_THEME_IMAGES_URL . 'image-optimizer.svg',
|
||||
'url' => Utils::get_plugin_install_url( 'image-optimization' ),
|
||||
'alt' => __( 'Elementor Image Optimizer', 'hello-elementor' ),
|
||||
'title' => '',
|
||||
'messages' => [
|
||||
__( 'Optimize Images.', 'hello-elementor' ),
|
||||
__( 'Reduce Size.', 'hello-elementor' ),
|
||||
__( 'Improve Speed.', 'hello-elementor' ),
|
||||
__( 'Try Image Optimizer for free', 'hello-elementor' ),
|
||||
],
|
||||
'button' => __( 'Install', 'hello-elementor' ),
|
||||
'width' => 72,
|
||||
'height' => 'auto',
|
||||
'target' => '_self',
|
||||
'backgroundImage' => HELLO_THEME_IMAGES_URL . 'image-optimization-bg.svg',
|
||||
];
|
||||
}
|
||||
|
||||
if ( ! defined( 'SEND_VERSION' ) ) {
|
||||
$action_links_data[] = [
|
||||
'type' => 'go-send',
|
||||
'image' => HELLO_THEME_IMAGES_URL . 'send-logo.gif',
|
||||
'backgroundColor' => '#EFEFFF',
|
||||
'url' => 'https://go.elementor.com/Hello_send',
|
||||
'alt' => __( 'Send', 'hello-elementor' ),
|
||||
'title' => '',
|
||||
'messages' => [
|
||||
__( 'Connect any website to automated Email & SMS workflows in a click with Send.', 'hello-elementor' ),
|
||||
],
|
||||
'button' => __( 'Install', 'hello-elementor' ),
|
||||
'buttonBgColor' => '#524CFF',
|
||||
'width' => 72,
|
||||
'height' => 'auto',
|
||||
];
|
||||
} elseif (
|
||||
! defined( 'ELEMENTOR_AI_VERSION' ) &&
|
||||
Utils::is_elementor_installed()
|
||||
) {
|
||||
$action_links_data[] = [
|
||||
'type' => 'go-ai',
|
||||
'image' => HELLO_THEME_IMAGES_URL . 'ai.png',
|
||||
'url' => 'https://go.elementor.com/hello-site-planner',
|
||||
'alt' => __( 'Elementor AI', 'hello-elementor' ),
|
||||
'title' => __( 'Elementor AI', 'hello-elementor' ),
|
||||
'messages' => [
|
||||
__( 'Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.', 'hello-elementor' ),
|
||||
],
|
||||
'button' => __( 'Let\'s Go', 'hello-elementor' ),
|
||||
];
|
||||
}
|
||||
|
||||
return rest_ensure_response( [ 'links' => $action_links_data ] );
|
||||
}
|
||||
|
||||
public function register_routes() {
|
||||
register_rest_route(
|
||||
self::ROUTE_NAMESPACE,
|
||||
'/promotions',
|
||||
[
|
||||
'methods' => WP_REST_Server::READABLE,
|
||||
'callback' => [ $this, 'get_promotions' ],
|
||||
'permission_callback' => [ $this, 'permission_callback' ],
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Rest;
|
||||
|
||||
use HelloTheme\Modules\AdminHome\Module;
|
||||
use WP_REST_Server;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
abstract class Rest_Base {
|
||||
const ROUTE_NAMESPACE = 'elementor-hello-elementor/v1';
|
||||
|
||||
abstract public function register_routes();
|
||||
|
||||
public function permission_callback(): bool {
|
||||
return current_user_can( 'manage_options' );
|
||||
}
|
||||
|
||||
public function __construct() {
|
||||
add_action( 'rest_api_init', [ $this, 'register_routes' ] );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Rest;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
use HelloTheme\Modules\AdminHome\Components\Settings_Controller;
|
||||
use WP_REST_Server;
|
||||
|
||||
class Theme_Settings extends Rest_Base {
|
||||
|
||||
public function register_routes() {
|
||||
register_rest_route(
|
||||
self::ROUTE_NAMESPACE,
|
||||
'/theme-settings',
|
||||
[
|
||||
'methods' => WP_REST_Server::READABLE,
|
||||
'callback' => [ $this, 'get_theme_settings' ],
|
||||
'permission_callback' => [ $this, 'permission_callback' ],
|
||||
]
|
||||
);
|
||||
|
||||
register_rest_route(
|
||||
self::ROUTE_NAMESPACE,
|
||||
'/theme-settings',
|
||||
[
|
||||
'methods' => WP_REST_Server::EDITABLE,
|
||||
'callback' => [ $this, 'set_theme_settings' ],
|
||||
'permission_callback' => [ $this, 'permission_callback' ],
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function get_theme_settings() {
|
||||
return rest_ensure_response(
|
||||
[
|
||||
'settings' => Settings_Controller::get_settings(),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function set_theme_settings( \WP_REST_Request $request ) {
|
||||
$settings = $request->get_param( 'settings' );
|
||||
|
||||
if ( ! is_array( $settings ) ) {
|
||||
return new \WP_Error(
|
||||
'invalid_settings',
|
||||
esc_html__( 'Settings must be an array', 'hello-elementor' ),
|
||||
[ 'status' => 400 ]
|
||||
);
|
||||
}
|
||||
|
||||
$settings_map = Settings_Controller::get_settings_mapping();
|
||||
|
||||
foreach ( $settings as $key => $value ) {
|
||||
if ( ! array_key_exists( $key, $settings_map ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$value = $value ? 'true' : 'false';
|
||||
|
||||
update_option( $settings_map[ $key ], $value );
|
||||
}
|
||||
|
||||
return rest_ensure_response( [ 'settings' => $settings ] );
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace HelloTheme\Modules\AdminHome\Rest;
|
||||
|
||||
use HelloTheme\Modules\AdminHome\Module;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Whats_New extends Rest_Base {
|
||||
|
||||
public function get_notifications() {
|
||||
$notificator = Module::instance()->get_component( 'Notificator' );
|
||||
return $notificator->get_notifications_by_conditions();
|
||||
}
|
||||
|
||||
public function register_routes() {
|
||||
register_rest_route(
|
||||
self::ROUTE_NAMESPACE,
|
||||
'/whats-new',
|
||||
[
|
||||
'methods' => \WP_REST_Server::READABLE,
|
||||
'callback' => [ $this, 'get_notifications' ],
|
||||
'permission_callback' => [ $this, 'permission_callback' ],
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user