AlkantarClanX12

Your IP : 3.144.40.216


Current Path : /home/thanudqk/128shen.com/wp-content/plugins/thegem-elements/inc/blocks-helper/
Upload File :
Current File : /home/thanudqk/128shen.com/wp-content/plugins/thegem-elements/inc/blocks-helper/index.php

<?php

if (!defined( 'ABSPATH')) {
    die( '-1' );
}

if (!function_exists('thegem_blocks_helper_init')) {
    function thegem_blocks_helper() {
        $theGemThemeOptions = get_option('thegem_theme_options');
        if (is_user_logged_in() && $theGemThemeOptions && isset($theGemThemeOptions['purchase_code'])) {
            $theGemBlocksHelper = new TheGemBlocksHelper();
            $theGemBlocksHelper->init();
        }
    }
}

add_action('vc_after_init', 'thegem_blocks_helper');
add_action('admin_notices', [new TheGemBlocksHelper, 'getPluginAvailableNotice']);


class TheGemBlocksHelper {

    CONST VERSION = '1.0.0';
    CONST TAB_NAME = 'thegem_blocks_helper_templates';
    CONST LANDING_PAGE_LINK = 'https://codex-themes.com/thegem/blocks-landing/?utm_source=wp_dashboard&utm_medium=learn_more&utm_campaign=dashboard_blocks';
    CONST COOKIE_NAME_NOTICE = 'thegem_blocks_helper_notice';

    public function init() {
        add_action('admin_init', [$this, 'updatePointers']);

        add_action('vc_backend_editor_enqueue_js_css', [$this, 'enqueueJsCss']);
        add_action('vc_frontend_editor_enqueue_js_css', [$this, 'enqueueJsCss']);
        add_action('vc_load_iframe_jscss', [$this, 'enqueueJsCss']);

        if (!class_exists('TheGemBlocks')) {
            add_filter('vc_get_all_templates', [$this, 'addTab']);
            add_filter('vc_templates_render_category', [$this, 'initTabContent']);
        }
    }

    public function enqueueJsCss() {
        wp_enqueue_style('thegem_blocks_helper', plugin_dir_url(__FILE__).'assets/css/main.css', [], static::VERSION);
        wp_enqueue_script('thegem_blocks_helper', plugin_dir_url(__FILE__).'assets/js/main.js', ['jquery'], static::VERSION);
        wp_localize_script('thegem_blocks_helper', 'TheGemBlocksHelperOptions', $this->getLocalizeScriptData());
    }

    private function getLocalizeScriptData() {
        return [
            'texts'=>[
                'vc_welcome_header' => esc_html__('you have blank page. start adding elements, pre-made blocks or saved templates.', 'thegem'),
                'vc_templates_more_layouts' => esc_html__('Add Blocks & Templates', 'thegem'),
                'vc_ui_help_block' => sprintf(wp_kses(__('Don\'t know where to start? Visit TheGem <a href="%s" target="_blank">documentation</a> or Page Builder <a href="%s" target="_blank">knowledge base</a>.', 'thegem'), ['a' => ['href' => [], 'target'=>[]]]), 'https://codex-themes.com/thegem/documentation/', 'https://kb.wpbakery.com'),
            ]
        ];
    }

    public function updatePointers() {
        if (is_admin()) {
            foreach (vc_editor_post_types() as $post_type) {
                add_filter('vc_ui-pointers-'.$post_type, [$this, 'updateBackendPointers']);
            }
        }

        vc_is_frontend_editor() && add_filter('vc-ui-pointers', [$this, 'updateFrontendPointers']);
    }

    public function updateBackendPointers($pointers) {
        if (!empty($pointers) && !empty($pointers['vc_pointers_backend_editor'])) {
            $messages = $pointers['vc_pointers_backend_editor']['messages'];
            foreach ($messages as $k=>&$message) {
                if ($message['target'] == '#vc_templates-editor-button, #vc-templatera-editor-button') {
                    $message['target'] = '#vc_add-new-element';
                    $message['options']['content'] = $this->getPointerContentForAddElement();
                    $message['options']['position'] = ['edge' => 'top', 'align' => 'left'];
                }
            }

            $pointers['vc_pointers_backend_editor']['messages'] = $messages;
        }

        return $pointers;
    }

    public function updateFrontendPointers($pointers) {
        if (!empty($pointers) && !empty($pointers['vc_pointers_frontend_editor'])) {
            $messages = $pointers['vc_pointers_frontend_editor']['messages'];
            foreach ($messages as $k=>&$message) {
                if ($message['target'] == '#vc_add-new-element') {
                    $message['options']['content'] = $this->getPointerContentForAddElement();
                }
            }

            $pointers['vc_pointers_frontend_editor']['messages'] = $messages;
        }

        return $pointers;
    }

    private function getPointerContentForAddElement() {
        return sprintf('<h3>%s</h3><p>%s</p>', esc_html__('Add Elements or TheGem Blocks', 'thegem'), esc_html__('Add new content elements, pre-made TheGem blocks or saved templates', 'thegem'));
    }

    public function addTab($data) {
        $items[] = [
            'category' => static::TAB_NAME,
            'category_name' => esc_html__('TheGem Blocks', 'thegem'),
            'category_weight' => 1,
            'templates' => []
        ];

        foreach ($data as $item) {
            if ($item['category'] == 'my_templates') {
                $items[] = $item;
            }
        }

        return $items;
    }

    public function initTabContent($category) {
        if ($category['category'] == static::TAB_NAME) {
            $category['output'] = $this->getTabContent();
        }
        return $category;
    }

    private function getTabContent() { ?>
        <div class="vc_column vc_col-sm-12 thegem-blocks-helper-box">
            <p><?= __('Please install TheGem Blocks plugin to get the access to the blocks collection.', 'thegem'); ?></p>
            <a href="<?= esc_url(admin_url('admin.php?page=install-required-plugins')) ?>" class="vc_general vc_ui-button vc_ui-button-size-sm vc_ui-button-action vc_ui-button-shape-rounded"><?= __('Install TheGem Blocks', 'thegem'); ?></a>
        </div>
    <?php return true; }

    public function getPluginAvailableNotice() {
        if (!thegem_is_plugin_active('thegem-blocks/thegem-blocks.php') && !isset($_COOKIE[static::COOKIE_NAME_NOTICE])) {
            wp_enqueue_style('thegem_blocks_helper_notice', plugin_dir_url(__FILE__).'assets/css/notice.css', []);
            ?>

            <div id="thegem-blocks-notice" class="notice notice-success is-dismissible">
                <div class="thegem-blocks-notice-inner" style="display: flex; align-items: center; width: 100%;">
                    <div class="thegem-blocks-notice-logo">
                        <img src="<?= plugin_dir_url(__FILE__).'assets/img/logo.svg' ?>" width="40px" alt="thegem-blocks-logo">
                    </div>

                    <div class="thegem-blocks-notice-info">
                        <p><b><?= __('Meet TheGem Blocks Plugin (free)', 'thegem')?></b></p>
                        <p><?= __('Design faster. Convert better. TheGem Blocks plugin is a huge collection of pre-designed page sections like hero, about, services etc. Speed up your workflow. Create unique layouts. Mix & match on the fly.', 'thegem') ?></p>
                        <p><a href="<?= esc_url(static::LANDING_PAGE_LINK) ?>" target="_blank"><b><?= __('Learn more...', 'thegem') ?></b></a></p>
                    </div>

                    <a href="<?= esc_url($this->getInstallPluginUrl()) ?>" class="button button-primary"><?= __('Install now', 'thegem'); ?></a>
                </div>
            </div>

            <script type="text/javascript">
                window.addEventListener('load', function() {
                    (function ($) {
                        $('#thegem-blocks-notice').on('click', '.notice-dismiss', function() {
                            let dt = new Date();
                            let days = 30;
                            dt.setDate(dt.getDate() + days);

                            let name = '<?= esc_attr(static::COOKIE_NAME_NOTICE) ?>';
                            let value = encodeURIComponent('<?= esc_attr(static::VERSION); ?>') + ("; expires=" + dt.toUTCString());
                            document.cookie = name + "=" + value;
                        });
                    })(window.jQuery);
                });
            </script>

        <?php }
    }

    public function getInstallPluginUrl() {
        $theme = wp_get_theme('thegem');
        if ($theme->exists() && $theme->get('Version') < '4.3.0') {
            return admin_url('update-core.php');
        }

        return admin_url('admin.php?page=install-required-plugins');
    }

}