PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.3
Elementor Website Builder – more than just a page builder v4.2.3
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / modules / atomic-opt-in / panel-chip.php

panel-chip.php in Elementor Website Builder – more than just a page builder 4.2.3, at modules/atomic-opt-in/panel-chip.php

31 lines 641 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\Modules\AtomicOptIn;
4
5 use Elementor\Utils;
6
7 class PanelChip {
8 public function init() {
9 add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
10 }
11
12 public function enqueue_scripts() {
13 $min_suffix = Utils::is_script_debug() ? '' : '.min';
14
15 wp_enqueue_script(
16 'editor-v4-opt-in-alphachip',
17 ELEMENTOR_ASSETS_URL . 'js/editor-v4-opt-in-alphachip' . $min_suffix . '.js',
18 [
19 'react',
20 'react-dom',
21 'elementor-common',
22 'elementor-v2-ui',
23 ],
24 ELEMENTOR_VERSION,
25 true
26 );
27
28 wp_set_script_translations( 'editor-v4-opt-in-alphachip', 'elementor' );
29 }
30 }
31