PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
bdthemes-element-pack
/
includes
/
template-library
/
editor
<?php namespace ElementPack\Includes\TemplateLibrary\Editor; class ElementPack_Template_Library_Editor_Init { function __construct() { add_action( 'elementor/editor/before_enqueue_scripts', array($this, 'enqueue_scripts'), 1 ); // print views and tab variables on footer. add_action( 'elementor/editor/footer', array($this, 'admin_inline_js') ); add_action( 'elementor/editor/footer', array($this, 'print_views') ); // enqueue editor css. add_action( 'elementor/editor/after_enqueue_styles', array($this, 'editor_styles') ); // enqueue modal's preview css. add_action( 'elementor/preview/enqueue_styles', array($this, 'preview_styles') ); } public function enqueue_scripts() { wp_enqueue_script( 'bdt-template-library-editor-scripts', BDTEP_URL . 'includes/template-library/editor/assets/js/editor-template-library.min.js', array('jquery', 'underscore', 'backbone-marionette'), BDTEP_VER, true ); } public function editor_styles() { $direction_suffix = is_rtl() ? '.rtl' : ''; wp_enqueue_style( 'bdt-template-library-editor-style', BDTEP_URL . 'includes/template-library/editor/assets/css/editor-template-library' . $direction_suffix . '.css', array(), BDTEP_VER ); } public function preview_styles() { $direction_suffix = is_rtl() ? '.rtl' : ''; wp_enqueue_style( 'bdt-template-library-preview-style', BDTEP_URL . 'includes/template-library/editor/assets/css/editor-template-preview' . $direction_suffix . '.css', array(), BDTEP_VER ); } public function admin_inline_js() { ?> <script type="text/javascript"> var ElementPackLibreryData = { "libraryButton" : "Elements Button", "modalRegions" : { "modalHeader" : ".dialog-header", "modalContent": ".dialog-message" }, "license" : { "activated": true, // TODO "link" : "https://elementpack.pro/pricing/" }, "tabs" : { "bdt_elementpack_page" : { "title": "Ready Pages", "data" : [] }, "bdt_elementpack_header": { "title": "Headers", "data" : [] }, "bdt_elementpack_footer": { "title": "Footers", "data" : [], }, "bdt_elementpack_block" : { "title": "Blocks", "data" : [], }, }, "defaultTab" : "bdt_elementpack_page", "new_demo_rang_date": "<?php echo date( 'Ymd', strtotime( '-31 days' ) )?>" }; </script> <?php } public function print_views() { foreach ( glob( dirname( __FILE__ ) . '/views/editor/*.php' ) as $file ) { $name = basename( $file, '.php' ); ob_start(); include $file; printf( '<script type="text/html" id="view-bdt-elementpack-%1$s">%2$s</script>', $name, ob_get_clean() ); } } } new ElementPack_Template_Library_Editor_Init();
[+]
..
[+]
manager
[-] init.php
[edit]
[+]
assets
[+]
views
[+]
server-request
[-] editor-manager.php
[edit]