File: /home/vhosts/harpoeditore.it/httpdocs/wp-content/themes/neve/inc/customizer/loader.php
<?php
/**
* Author: Andrei Baicus <andrei@themeisle.com>
* Created on: 17/08/2018
*
* @package Neve\Customizer
*/
namespace Neve\Customizer;
use Neve\Core\Factory;
use Neve\Traits\Utils;
/**
* Main customizer handler.
*
* @package Neve\Customizer
*/
class Loader {
use Utils;
/**
* Customizer modules.
*
* @var array
*/
private $customizer_modules = array();
/**
* Loader constructor.
*/
public function __construct() {
add_action( 'customize_preview_init', array( $this, 'enqueue_customizer_preview' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'set_featured_image' ) );
add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_customizer_controls' ) );
}
/**
* Initialize the customizer functionality
*/
public function init() {
global $wp_customize;
if ( ! isset( $wp_customize ) ) {
return;
}
$this->define_modules();
$this->load_modules();
add_action( 'customize_register', array( $this, 'change_pro_controls' ), PHP_INT_MAX );
}
/**
* Method to modify already defined controls.
*
* @param \WP_Customize_Manager $wp_customize The WP_Customize_Manager object.
*/
public function change_pro_controls( \WP_Customize_Manager $wp_customize ) {
if ( neve_can_use_conditional_header() ) {
return;
}
$controls_to_disable = [ 'neve_global_header', 'neve_header_conditional_selector' ];
foreach ( $controls_to_disable as $control_slug ) {
$wp_customize->remove_control( $control_slug );
}
}
/**
* Define the modules that will be loaded.
*/
private function define_modules() {
$this->customizer_modules = apply_filters(
'neve_filter_customizer_modules',
array(
'Customizer\Options\Main',
'Customizer\Options\Layout_Container',
'Customizer\Options\Layout_Blog',
'Customizer\Options\Layout_Single_Post',
'Customizer\Options\Layout_Single_Page',
'Customizer\Options\Layout_Single_Product',
'Customizer\Options\Layout_Sidebar',
'Customizer\Options\Typography',
'Customizer\Options\Colors_Background',
'Customizer\Options\Checkout',
'Customizer\Options\Buttons',
'Customizer\Options\Form_Fields',
'Customizer\Options\Rtl',
'Customizer\Options\Upsells',
)
);
}
/**
* Enqueue customizer controls script.
*/
public function enqueue_customizer_controls() {
wp_register_style( 'neve-customizer-style', NEVE_ASSETS_URL . 'css/customizer-style' . ( ( NEVE_DEBUG ) ? '' : '.min' ) . '.css', array(), NEVE_VERSION );
wp_style_add_data( 'neve-customizer-style', 'rtl', 'replace' );
wp_style_add_data( 'neve-customizer-style', 'suffix', '.min' );
wp_enqueue_style( 'neve-customizer-style' );
wp_enqueue_script(
'neve-customizer-controls',
NEVE_ASSETS_URL . 'js/build/all/customizer-controls.js',
array(
'jquery',
'wp-color-picker',
),
NEVE_VERSION,
true
);
$bundle_path = get_template_directory_uri() . '/assets/apps/customizer-controls/build/';
$dependencies = ( include get_template_directory() . '/assets/apps/customizer-controls/build/controls.asset.php' );
wp_register_script( 'react-controls', $bundle_path . 'controls.js', $dependencies['dependencies'], $dependencies['version'], true );
wp_localize_script(
'react-controls',
'NeveReactCustomize',
apply_filters(
'neve_react_controls_localization',
array(
'nonce' => wp_create_nonce( 'wp_rest' ),
'headerControls' => [],
'instructionalVid' => esc_url( get_template_directory_uri() . '/header-footer-grid/assets/images/customizer/hfg.mp4' ),
'dynamicTags' => array(
'controls' => array(),
'options' => array(),
),
'upsellComponentsLink' => tsdk_utmify( 'https://themeisle.com/themes/neve/upgrade/', 'hfgcomponents' ),
'fonts' => array(
'System' => neve_get_standard_fonts(),
'Google' => neve_get_google_fonts(),
),
'fontVariants' => neve_get_google_fonts( true ),
'systemFontVariants' => neve_get_standard_fonts( true ),
'hideConditionalHeaderSelector' => ! neve_can_use_conditional_header(),
'dashUpdatesMessage' => sprintf( 'Please %s to the latest version of Neve Pro to manage the conditional headers.', '<a href="' . esc_url( admin_url( 'update-core.php' ) ) . '">' . __( 'update', 'neve' ) . '</a>' ),
'bundlePath' => get_template_directory_uri() . '/assets/apps/customizer-controls/build/',
'bfDealData' => $this->get_bf_deal_data(),
)
)
);
wp_enqueue_script( 'react-controls' );
if ( function_exists( 'wp_set_script_translations' ) ) {
wp_set_script_translations( 'react-controls', 'neve' );
}
wp_register_style( 'react-controls', $bundle_path . 'style-controls.css', [ 'neve-components' ], $dependencies['version'] );
wp_style_add_data( 'react-controls', 'rtl', 'replace' );
wp_enqueue_style( 'react-controls' );
$fonts = neve_get_google_fonts();
$chunks = array_chunk( $fonts, absint( count( $fonts ) / 5 ) );
foreach ( $chunks as $index => $fonts_chunk ) {
wp_enqueue_style(
'neve-fonts-control-google-fonts-' . $index,
'https://fonts.googleapis.com/css?family=' . join( '|', $fonts_chunk ) . '&text=Abc"',
[],
NEVE_VERSION
);
}
}
/**
* Get Black Friday data.
*
* @return false|array
*/
private function get_bf_deal_data() {
if ( ! $this->should_show_bf() ) {
return false;
}
return [
'bannerUrl' => get_template_directory_uri() . '/assets/img/bf-customize.svg',
'link' => tsdk_utmify( 'https://themeisle.com/themes/neve/blackfriday', 'customizer_notice', 'blackfriday' ),
];
}
/**
* Enqueue customizer preview script.
*/
public function enqueue_customizer_preview() {
wp_enqueue_style(
'neve-customizer-preview-style',
NEVE_ASSETS_URL . 'css/customizer-preview' . ( ( NEVE_DEBUG ) ? '' : '.min' ) . '.css',
array(),
NEVE_VERSION
);
wp_register_script(
'neve-customizer-preview',
NEVE_ASSETS_URL . 'js/build/all/customizer-preview.js',
array(),
NEVE_VERSION,
true
);
$shop_has_meta = 'no';
$shop_id = get_option( 'woocommerce_shop_page_id' );
if ( ! empty( $shop_id ) ) {
$meta = get_post_meta( $shop_id, 'neve_meta_sidebar', true );
if ( ! empty( $meta ) && $meta !== 'default' ) {
$shop_has_meta = 'yes';
}
}
wp_localize_script(
'neve-customizer-preview',
'neveCustomizePreview',
apply_filters(
'neve_customize_preview_localization',
array(
'currentFeaturedImage' => '',
'newBuilder' => neve_is_new_builder(),
'newSkin' => neve_is_new_skin(),
'shopHasMetaSidebar' => $shop_has_meta,
)
)
);
wp_enqueue_script( 'neve-customizer-preview' );
}
/**
* Save featured image in previously localized object.
*/
public function set_featured_image() {
if ( ! is_customize_preview() ) {
return;
}
if ( ! is_singular() ) {
return;
}
$thumbnail = get_the_post_thumbnail_url();
if ( $thumbnail === false ) {
return;
}
wp_add_inline_script( 'neve-customizer-preview', 'neveCustomizePreview.currentFeaturedImage = "' . esc_url( get_the_post_thumbnail_url() ) . '";' );
}
/**
* Load the customizer modules.
*
* @return void
*/
private function load_modules() {
$factory = new Factory( $this->customizer_modules );
$factory->load_modules();
}
}