![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/easy-accordion-free/public/views/ |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } // if direct access /** * Scripts and styles */ class SP_EA_Front_Scripts { /** * This class Instance. * * @var null * @since 1.0 */ protected static $_instance = null; /** * This class Instance function. * * @return SP_EA_Front_Scripts * @since 1.0 */ public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } /** * Initialize the class */ public function __construct() { add_action( 'wp_enqueue_scripts', array( $this, 'front_scripts' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) ); } /** * Plugin Scripts and Styles */ public function front_scripts() { $settings = get_option( 'sp_eap_settings' ); $prefix = defined( 'WP_DEBUG' ) && WP_DEBUG ? '' : '.min'; $custom_css = isset( $settings['ea_custom_css'] ) ? trim( html_entity_decode( $settings['ea_custom_css'] ) ) : ''; // CSS Files. if ( false !== $settings['eap_dequeue_fa_css'] ) { wp_enqueue_style( 'sp-ea-font-awesome', esc_url( SP_EA_URL . 'public/assets/css/font-awesome.min.css' ), array(), SP_EA_VERSION ); } wp_enqueue_style( 'sp-ea-style', esc_url( SP_EA_URL . 'public/assets/css/ea-style.css' ), array(), SP_EA_VERSION ); // JS Files. wp_register_script( 'sp-ea-accordion-js', esc_url( SP_EA_URL . 'public/assets/js/collapse' . $prefix . '.js' ), array( 'jquery' ), SP_EA_VERSION, false ); wp_register_script( 'sp-ea-accordion-config', esc_url( SP_EA_URL . 'public/assets/js/script.js' ), array( 'jquery', 'sp-ea-accordion-js' ), SP_EA_VERSION, true ); $accordion_posts = new WP_Query( array( 'post_type' => 'sp_easy_accordion', 'posts_per_page' => 500, 'fields' => 'ids', ) ); $accordion_ids = $accordion_posts->posts; $ea_dynamic_css = ''; foreach ( $accordion_ids as $accordion_id ) { $shortcode_data = get_post_meta( $accordion_id, 'sp_eap_shortcode_options', true ); include SP_EA_PATH . '/public/dynamic-style.php'; } if ( ! empty( $custom_css ) ) { $ea_dynamic_css .= $custom_css; } wp_add_inline_style( 'sp-ea-style', $ea_dynamic_css ); } /** * Plugin Scripts and Styles */ public function admin_scripts() { $settings = get_option( 'sp_eap_settings' ); $prefix = defined( 'WP_DEBUG' ) && WP_DEBUG ? '' : '.min'; // CSS Files. if ( false !== $settings['eap_dequeue_fa_css'] ) { wp_enqueue_style( 'sp-ea-font-awesome', esc_url( SP_EA_URL . 'public/assets/css/font-awesome.min.css' ), array(), SP_EA_VERSION ); } wp_enqueue_style( 'sp-ea-style', esc_url( SP_EA_URL . 'public/assets/css/ea-style.css' ), array(), SP_EA_VERSION ); } } new SP_EA_Front_Scripts();