346 lines
6.9 KiB
PHP
346 lines
6.9 KiB
PHP
<?php
|
|
|
|
namespace Blocksy;
|
|
|
|
class Plugin {
|
|
/**
|
|
* Blocksy instance.
|
|
*
|
|
* Holds the blocksy plugin instance.
|
|
*
|
|
* @var Plugin
|
|
*/
|
|
private static $instance = null;
|
|
|
|
/**
|
|
* Blocksy extensions manager.
|
|
*
|
|
* @var ExtensionsManager
|
|
*/
|
|
public $extensions = null;
|
|
public $extensions_api = null;
|
|
public $premium = null;
|
|
|
|
public $dashboard = null;
|
|
public $theme_integration = null;
|
|
|
|
public $cli = null;
|
|
public $cache_manager = null;
|
|
|
|
// Features
|
|
public $feat_google_analytics = null;
|
|
public $demo = null;
|
|
public $dynamic_css = null;
|
|
public $header = null;
|
|
public $account_auth = null;
|
|
|
|
private $is_blocksy = '__NOT_SET__';
|
|
public $is_blocksy_data = null;
|
|
private $desired_blocksy_version = '2.0.0-beta1';
|
|
|
|
/**
|
|
* Instance.
|
|
*
|
|
* Ensures only one instance of the plugin class is loaded or can be loaded.
|
|
*
|
|
* @static
|
|
*
|
|
* @return Plugin An instance of the class.
|
|
*/
|
|
public static function instance() {
|
|
if (is_null(self::$instance)) {
|
|
self::$instance = new self();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
public function init() {
|
|
add_action(
|
|
'customize_controls_enqueue_scripts',
|
|
function () {
|
|
$this->enqueue_static();
|
|
},
|
|
100
|
|
);
|
|
|
|
add_action(
|
|
'admin_enqueue_scripts',
|
|
function () {
|
|
$this->enqueue_static();
|
|
|
|
$locale_data_ct = blocksy_get_jed_locale_data(
|
|
'blocksy-companion'
|
|
);
|
|
|
|
wp_add_inline_script(
|
|
'wp-i18n',
|
|
'wp.i18n.setLocaleData( ' . wp_json_encode($locale_data_ct) . ', "blocksy-companion" );'
|
|
);
|
|
},
|
|
50
|
|
);
|
|
|
|
$this->cache_manager = new CacheResetManager();
|
|
|
|
$this->extensions_api = new ExtensionsManagerApi();
|
|
$this->theme_integration = new ThemeIntegration();
|
|
$this->demo = new DemoInstall();
|
|
$this->dynamic_css = new DynamicCss();
|
|
|
|
$this->account_auth = new AccountAuth();
|
|
|
|
new CustomizerOptionsManager();
|
|
}
|
|
|
|
public function early_init() {
|
|
if (is_admin()) {
|
|
$this->dashboard = new Dashboard();
|
|
}
|
|
|
|
add_action(
|
|
'admin_enqueue_scripts',
|
|
function () {
|
|
if (!function_exists('get_plugin_data')) {
|
|
require_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
|
}
|
|
|
|
$data = get_plugin_data(BLOCKSY__FILE__);
|
|
|
|
wp_enqueue_style(
|
|
'blocksy-styles',
|
|
BLOCKSY_URL . 'static/bundle/options.min.css',
|
|
[],
|
|
$data['Version']
|
|
);
|
|
},
|
|
50
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Init components that need early access to the system.
|
|
*
|
|
* @access private
|
|
*/
|
|
public function early_init_with_blocksy_theme() {
|
|
if (
|
|
blc_can_use_premium_code()
|
|
&&
|
|
blc_get_capabilities()->has_feature('base_pro')
|
|
) {
|
|
$this->premium = new Premium();
|
|
}
|
|
|
|
$this->extensions = new ExtensionsManager();
|
|
|
|
$this->header = new HeaderAdditions();
|
|
|
|
$this->feat_google_analytics = new GoogleAnalytics();
|
|
new OpenGraphMetaData();
|
|
new SvgHandling();
|
|
|
|
if (defined('WP_CLI') && WP_CLI) {
|
|
$this->cli = new Cli();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register autoloader.
|
|
*
|
|
* Blocksy autoloader loads all the classes needed to run the plugin.
|
|
*
|
|
* @access private
|
|
*/
|
|
private function register_autoloader() {
|
|
require_once BLOCKSY_PATH . '/framework/autoload.php';
|
|
|
|
Autoloader::run();
|
|
}
|
|
|
|
/**
|
|
* Plugin constructor.
|
|
*
|
|
* Initializing Blocksy plugin.
|
|
*
|
|
* @access private
|
|
*/
|
|
private function __construct() {
|
|
require_once BLOCKSY_PATH . '/framework/helpers/helpers.php';
|
|
require_once BLOCKSY_PATH . '/framework/helpers/exts.php';
|
|
|
|
$this->register_autoloader();
|
|
|
|
$this->early_init();
|
|
|
|
if (! $this->check_if_blocksy_is_activated()) {
|
|
return;
|
|
}
|
|
|
|
$this->early_init_with_blocksy_theme();
|
|
|
|
add_action('init', [$this, 'init'], 0);
|
|
}
|
|
|
|
public function check_if_blocksy_is_activated() {
|
|
if (defined('WP_CLI') && WP_CLI) {
|
|
$theme = wp_get_theme(get_template());
|
|
|
|
if ($theme->parent() && $theme->parent()->exists()) {
|
|
$theme = $theme->parent();
|
|
}
|
|
|
|
return strpos($theme->get('Name'), 'Blocksy') !== false;
|
|
}
|
|
|
|
if ($this->is_blocksy === '__NOT_SET__') {
|
|
$theme = wp_get_theme(get_template());
|
|
|
|
$keys_to_check = [
|
|
'wp_theme_preview',
|
|
'theme',
|
|
'customize_theme'
|
|
];
|
|
|
|
foreach ($keys_to_check as $key) {
|
|
if (! isset($_GET[$key])) {
|
|
continue;
|
|
}
|
|
|
|
$maybe_theme = wp_get_theme($_GET[$key]);
|
|
|
|
if (! $maybe_theme->exists()) {
|
|
continue;
|
|
}
|
|
|
|
if ($maybe_theme->parent() && $maybe_theme->parent()->exists()) {
|
|
$maybe_theme = $maybe_theme->parent();
|
|
}
|
|
|
|
$theme = $maybe_theme;
|
|
}
|
|
|
|
$is_correct_theme = strpos(
|
|
$theme->get('Name'), 'Blocksy'
|
|
) !== false;
|
|
|
|
$is_correct_version = version_compare(
|
|
$theme->get('Version'),
|
|
$this->desired_blocksy_version
|
|
) > -1;
|
|
|
|
$another_theme_in_preview = false;
|
|
|
|
$maybe_foreign_theme = '';
|
|
|
|
if (
|
|
isset($_REQUEST['customize_theme'])
|
|
&&
|
|
! empty($_REQUEST['customize_theme'])
|
|
) {
|
|
$maybe_foreign_theme = $_REQUEST['customize_theme'];
|
|
}
|
|
|
|
if (
|
|
isset($_REQUEST['theme'])
|
|
&&
|
|
! empty($_REQUEST['theme'])
|
|
) {
|
|
$maybe_foreign_theme = $_REQUEST['theme'];
|
|
}
|
|
|
|
if ($is_correct_theme && $maybe_foreign_theme) {
|
|
$foreign_theme_obj = wp_get_theme($maybe_foreign_theme);
|
|
|
|
if ($foreign_theme_obj) {
|
|
if ($foreign_theme_obj->parent()) {
|
|
$foreign_theme_obj = $foreign_theme_obj->parent();
|
|
}
|
|
|
|
if (
|
|
$foreign_theme_obj->get_stylesheet() !== $theme->get_stylesheet()
|
|
) {
|
|
$another_theme_in_preview = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->is_blocksy_data = [
|
|
'is_correct_theme' => (
|
|
$is_correct_theme
|
|
&&
|
|
! $another_theme_in_preview
|
|
),
|
|
'another_theme_in_preview' => $another_theme_in_preview
|
|
];
|
|
|
|
$this->is_blocksy = (
|
|
$is_correct_theme
|
|
&&
|
|
$is_correct_version
|
|
&&
|
|
! $another_theme_in_preview
|
|
);
|
|
}
|
|
|
|
return !!$this->is_blocksy;
|
|
}
|
|
|
|
public function enqueue_static() {
|
|
if (! function_exists('get_plugin_data')) {
|
|
require_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
|
}
|
|
|
|
global $wp_customize;
|
|
|
|
$data = get_plugin_data(BLOCKSY__FILE__);
|
|
|
|
$deps = ['ct-options-scripts'];
|
|
|
|
$current_screen = get_current_screen();
|
|
|
|
if ($current_screen && $current_screen->id === 'customize') {
|
|
$deps = ['ct-customizer-controls'];
|
|
}
|
|
|
|
wp_enqueue_script(
|
|
'blocksy-admin-scripts',
|
|
BLOCKSY_URL . 'static/bundle/options.js',
|
|
$deps,
|
|
$data['Version'],
|
|
true
|
|
);
|
|
|
|
$conditions_manager = new ConditionsManager();
|
|
|
|
$localize = array_merge(
|
|
[
|
|
'all_condition_rules' => $conditions_manager->get_all_rules(),
|
|
'singular_condition_rules' => $conditions_manager->get_all_rules([
|
|
'filter' => 'singular'
|
|
]),
|
|
'archive_condition_rules' => $conditions_manager->get_all_rules([
|
|
'filter' => 'archive'
|
|
]),
|
|
'product_tabs_rules' => $conditions_manager->get_all_rules([
|
|
'filter' => 'product_tabs'
|
|
]),
|
|
'maintenance_mode_rules' => $conditions_manager->get_all_rules([
|
|
'filter' => 'maintenance-mode'
|
|
]),
|
|
'ajax_url' => admin_url('admin-ajax.php'),
|
|
'rest_url' => get_rest_url(),
|
|
]
|
|
);
|
|
|
|
wp_localize_script(
|
|
'blocksy-admin-scripts',
|
|
'blocksy_admin',
|
|
$localize
|
|
);
|
|
}
|
|
}
|
|
|
|
Plugin::instance();
|
|
|