File: /home/perditaeyz/www/wp-content/plugins/side-cart-woocommerce/includes/class-xoo-wsc-frontend.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Xoo_Wsc_Frontend{
protected static $_instance = null;
public $glSettings;
public $template_args = array();
public static function get_instance(){
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
public function __construct(){
$this->glSettings = xoo_wsc_helper()->get_general_option();
$this->hooks();
}
public function hooks(){
add_action( 'wp_enqueue_scripts' ,array( $this,'enqueue_styles' ) );
add_action( 'wp_enqueue_scripts' , array( $this,'enqueue_scripts' ), 15 );
add_action( 'wp_footer', array( $this, 'cart_markup' ) );
}
//Enqueue stylesheets
public function enqueue_styles(){
if( !xoo_wsc()->isSideCartPage() ) return;
//Fonts
wp_enqueue_style( 'xoo-wsc-fonts', XOO_WSC_URL.'/assets/css/xoo-wsc-fonts.css', array(), XOO_WSC_VERSION );
wp_enqueue_style( 'xoo-wsc-style', XOO_WSC_URL.'/assets/css/xoo-wsc-style.css', array(), XOO_WSC_VERSION );
$inline_style = xoo_wsc_helper()->get_template(
'global/inline-style.php',
array(
'gl' => xoo_wsc_helper()->get_general_option(),
'sy' => xoo_wsc_helper()->get_style_option(),
),
'',
true
);
$customCSS = xoo_wsc_helper()->get_advanced_option('m-custom-css');
wp_add_inline_style( 'xoo-wsc-style', $inline_style . $customCSS );
}
//Enqueue javascript
public function enqueue_scripts(){
if( !xoo_wsc()->isSideCartPage() ) return;
$glSettings = $this->glSettings;
wp_enqueue_script( 'xoo-wsc-main-js', XOO_WSC_URL.'/assets/js/xoo-wsc-main.js', array('jquery'), XOO_WSC_VERSION, true ); // Main JS
$noticeMarkup = '<ul class="xoo-wsc-notices">%s</ul>';
wp_localize_script( 'xoo-wsc-main-js', 'xoo_wsc_params', array(
'adminurl' => admin_url().'admin-ajax.php',
'wc_ajax_url' => WC_AJAX::get_endpoint( "%%endpoint%%" ),
'qtyUpdateDelay' => (int) $glSettings['scb-update-delay'],
'notificationTime' => (int) $glSettings['sch-notify-time'],
'html' => array(
'successNotice' => sprintf( $noticeMarkup, xoo_wsc_notice_html( '%s%', 'success' ) ),
'errorNotice' => sprintf( $noticeMarkup, xoo_wsc_notice_html( '%s%', 'error' ) ),
),
'strings' => array(
'maxQtyError' => __( 'Only %s% in stock', 'side-cart-woocommerce' ),
'stepQtyError' => __( 'Quantity can only be purchased in multiple of %s%', 'side-cart-woocommerce' ),
'calculateCheckout' => __( 'Please use checkout form to calculate shipping', 'side-cart-woocommerce' ),
'couponEmpty' => __( 'Please enter promo code', 'side-cart-woocommerce' )
),
'isCheckout' => is_checkout(),
'isCart' => is_cart(),
'sliderAutoClose' => true,
'shippingEnabled' => in_array( 'shipping' , $glSettings['scf-show'] ),
'couponsEnabled' => in_array( 'coupon' , $glSettings['scf-show'] ),
'autoOpenCart' => $glSettings['m-auto-open'],
'addedToCart' => xoo_wsc_cart()->addedToCart,
'ajaxAddToCart' => $glSettings['m-ajax-atc'],
'showBasket' => xoo_wsc_helper()->get_style_option('sck-enable'),
'flyToCart' => 'no',
'productFlyClass' => apply_filters( 'xoo_wsc_product_fly_class', '' ),
'refreshCart' => xoo_wsc_helper()->get_advanced_option('m-refresh-cart'),
'fetchDelay' => apply_filters( 'xoo_wsc_cart_fetch_delay', 200 )
) );
}
//Cart markup
public function cart_markup(){
if( !xoo_wsc()->isSideCartPage() ) return;
xoo_wsc_helper()->get_template( 'xoo-wsc-markup.php' );
}
}
function xoo_wsc_frontend(){
return Xoo_Wsc_Frontend::get_instance();
}
xoo_wsc_frontend();