????
Current Path : /home/rsfshcom/www/wp-content/plugins/template-kit-import/inc/backend/ |
Current File : //home/rsfshcom/www/wp-content/plugins/template-kit-import/inc/backend/class-elementor-modal.php |
<?php /** * Template Kit Import: * * Elements Welcome Page UI. * * @package Envato/Template_Kit_Import * @since 2.0.0 */ namespace Template_Kit_Import\Backend; use Template_Kit_Import\Utils\Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Modal that pops up when in the back end Elementor editor * * @since 2.0.0 */ class Elementor_Modal extends Base { public function __construct() { // This is for the outer Elementor editor, we need JS to add our magic button and register onclick events etc.. add_action( 'elementor/editor/before_enqueue_scripts', array( $this, 'enqueue_editor_scripts' ) ); // This is for the inner iframe, we only need CSS in this inner iframe: add_action( 'elementor/preview/enqueue_styles', array( $this, 'enqueue_embedded_iframe_styles' ) ); } /** * Load JS for our custom Elementor modal. */ public function enqueue_editor_scripts() { // First load our main react bundle so we've got access to the modal code from within 'elementor_modal.js'; Welcome::get_instance()->admin_page_assets(); // Now load our custom elementor_modal.js code and css: wp_enqueue_script( 'elements-elementor-modal', ENVATO_TEMPLATE_KIT_IMPORT_URI . 'assets/custom/elementor-modal.js', array( 'jquery' ), ENVATO_TEMPLATE_KIT_IMPORT_VER ); } public function enqueue_embedded_iframe_styles() { wp_enqueue_style( 'template-kit-import-admin', ENVATO_TEMPLATE_KIT_IMPORT_URI . 'assets/react/main.css', array(), filemtime( ENVATO_TEMPLATE_KIT_IMPORT_DIR . 'assets/react/main.css' ) ); wp_enqueue_style( 'elements-elementor-modal', ENVATO_TEMPLATE_KIT_IMPORT_URI . 'assets/custom/elementor-modal.css', array(), ENVATO_TEMPLATE_KIT_IMPORT_VER ); } }