PluginProbe
Elementor Website Builder – more than just a page builder / 4.3.0-beta3
Elementor Website Builder – more than just a page builder v4.3.0-beta3
4.3.0-beta3 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 All 452 releases
elementor / modules / promotions / module.php

module.php in Elementor Website Builder – more than just a page builder 4.3.0-beta3, at modules/promotions/module.php

334 lines 9.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\Modules\Promotions;
4
5 use Elementor\Api;
6 use Elementor\Controls_Manager;
7 use Elementor\Core\Base\Module as Base_Module;
8 use Elementor\Core\Utils\Promotions\Filtered_Promotions_Manager;
9 use Elementor\Modules\Promotions\AdminMenuItems\Editor_One_Custom_Code_Menu;
10 use Elementor\Modules\Promotions\AdminMenuItems\Editor_One_Custom_Elements_Menu;
11 use Elementor\Modules\Promotions\AdminMenuItems\Editor_One_Fonts_Menu;
12 use Elementor\Modules\Promotions\AdminMenuItems\Editor_One_Icons_Menu;
13 use Elementor\Modules\Promotions\AdminMenuItems\Editor_One_Popups_Menu;
14 use Elementor\Modules\Promotions\AdminMenuItems\Editor_One_Submissions_Menu;
15 use Elementor\Modules\Promotions\AdminMenuItems\Go_Pro_Promotion_Item;
16 use Elementor\Modules\Promotions\Controls\Atomic_Promotion_Control;
17 use Elementor\Modules\Promotions\Conversion_Banner;
18 use Elementor\Modules\Promotions\Pointers\Birthday;
19 use Elementor\Modules\Promotions\Pointers\Black_Friday;
20 use Elementor\Modules\Promotions\PropTypes\Promotion_Prop_Type;
21 use Elementor\Modules\Promotions\Widgets\Atomic_Form_Widget_Promotion;
22 use Elementor\Modules\Promotions\Widgets\Collection_Loop_Widget_Promotion;
23 use Elementor\Widgets_Manager;
24 use Elementor\Utils;
25 use Elementor\Includes\EditorAssetsAPI;
26 use Elementor\Plugin;
27 use Elementor\Modules\EditorOne\Classes\Menu_Config;
28 use Elementor\Modules\EditorOne\Classes\Menu_Data_Provider;
29
30 if ( ! defined( 'ABSPATH' ) ) {
31 exit; // Exit if accessed directly.
32 }
33
34 class Module extends Base_Module {
35
36 const ADMIN_MENU_PRIORITY = 100;
37
38 const ADMIN_MENU_PROMOTIONS_PRIORITY = 120;
39
40 public static function is_active() {
41 return ! Utils::has_pro() || ! Utils::is_license_active();
42 }
43
44 public function get_name() {
45 return 'promotions';
46 }
47
48 public function __construct() {
49 parent::__construct();
50
51 add_filter( 'elementor/editor/localize_settings', [ $this, 'add_v4_promotions_data' ] );
52
53 if ( Utils::has_pro() ) {
54 add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_react_data' ] );
55 $this->register_atomic_promotions();
56
57 return;
58 }
59
60 add_action( 'admin_init', function () {
61 $this->handle_external_redirects();
62 } );
63
64 add_action( 'elementor/editor-one/menu/register', function ( Menu_Data_Provider $menu_data_provider ) {
65 $this->register_editor_one_menu_items( $menu_data_provider );
66 } );
67
68 if ( Utils::is_sale_time() ) {
69 add_filter( 'add_menu_classes', [ $this, 'override_one_menu_upgrade_label_during_sale' ] );
70 }
71
72 add_action( 'elementor/widgets/register', function( Widgets_Manager $manager ) {
73 foreach ( Api::get_promotion_widgets() as $widget_data ) {
74 $manager->register( new Widgets\Pro_Widget_Promotion( [], [
75 'widget_name' => $widget_data['name'],
76 'widget_title' => $widget_data['title'],
77 ] ) );
78 }
79 } );
80
81 if ( Birthday::should_display_notice() ) {
82 new Birthday();
83 }
84
85 if ( Black_Friday::should_display_notice() ) {
86 new Black_Friday();
87 }
88
89 if ( ! Utils::has_pro() ) {
90 Conversion_Banner::register_cache_invalidation_hooks();
91
92 if ( Conversion_Banner::should_display_banner() ) {
93 new Conversion_Banner();
94 }
95 }
96
97 add_filter( 'elementor/editor/localize_settings', [ $this, 'add_editing_panel_sticky_promotion' ] );
98
99 add_action( 'elementor/controls/register', function ( Controls_Manager $controls_manager ) {
100 $controls_manager->register( new Controls\Promotion_Control() );
101 } );
102
103 add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_react_data' ] );
104 add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_editor_v4_alphachip' ] );
105
106 $this->register_atomic_promotions();
107 }
108
109 private function handle_external_redirects() {
110 $page = filter_input( INPUT_GET, 'page', FILTER_SANITIZE_FULL_SPECIAL_CHARS );
111 if ( empty( $page ) ) {
112 return;
113 }
114
115 if ( in_array( $page, [ 'go_elementor_pro', 'elementor-one-upgrade' ], true ) ) {
116 wp_redirect( Go_Pro_Promotion_Item::get_url() ); // phpcs:ignore WordPress.Security.SafeRedirect.wp_redirect_wp_redirect
117 die;
118 }
119 }
120
121 public function override_one_menu_upgrade_label_during_sale( $menu ) {
122 global $submenu;
123
124 $parent_slug = Menu_Config::ELEMENTOR_HOME_MENU_SLUG;
125 $upgrade_slug = 'elementor-one-upgrade';
126
127 if ( empty( $submenu[ $parent_slug ] ) ) {
128 return $menu;
129 }
130
131 foreach ( $submenu[ $parent_slug ] as &$item ) {
132 if ( isset( $item[2] ) && $upgrade_slug === $item[2] ) {
133 $item[0] = esc_html__( 'Sale!', 'elementor' ) . '<br />' . esc_html__( 'Upgrade Now', 'elementor' ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
134 break;
135 }
136 }
137
138 return $menu;
139 }
140
141 private function register_editor_one_menu_items( Menu_Data_Provider $menu_data_provider ) {
142 $menu_data_provider->register_menu( new Editor_One_Custom_Elements_Menu() );
143 $menu_data_provider->register_menu( new Editor_One_Submissions_Menu() );
144 $menu_data_provider->register_menu( new Editor_One_Fonts_Menu() );
145 $menu_data_provider->register_menu( new Editor_One_Icons_Menu() );
146 $menu_data_provider->register_menu( new Editor_One_Custom_Code_Menu() );
147 $menu_data_provider->register_menu( new Editor_One_Popups_Menu() );
148 }
149
150 public function enqueue_react_data(): void {
151 if ( ! current_user_can( 'manage_options' ) ) {
152 return;
153 }
154
155 $min_suffix = Utils::is_script_debug() ? '' : '.min';
156
157 wp_enqueue_script(
158 'e-react-promotions',
159 ELEMENTOR_ASSETS_URL . 'js/e-react-promotions' . $min_suffix . '.js',
160 [
161 'react',
162 'react-dom',
163 'backbone-marionette',
164 'elementor-editor-modules',
165 'elementor-v2-ui',
166 'elementor-v2-icons',
167 ],
168 ELEMENTOR_VERSION,
169 true
170 );
171
172 wp_set_script_translations( 'e-react-promotions', 'elementor' );
173
174 wp_localize_script(
175 'e-react-promotions',
176 'elementorPromotionsData',
177 $this->get_app_js_config()
178 );
179 }
180
181 public function enqueue_editor_v4_alphachip(): void {
182 if ( ! current_user_can( 'manage_options' ) ) {
183 return;
184 }
185
186 $min_suffix = Utils::is_script_debug() ? '' : '.min';
187
188 wp_enqueue_script(
189 'editor-v4-opt-in-alphachip',
190 ELEMENTOR_ASSETS_URL . 'js/editor-v4-opt-in-alphachip' . $min_suffix . '.js',
191 [
192 'react',
193 'react-dom',
194 'elementor-common',
195 'elementor-v2-ui',
196 ],
197 ELEMENTOR_VERSION,
198 true
199 );
200 }
201
202 private function get_app_js_config(): array {
203 $editor_assets_api = new EditorAssetsAPI( $this->get_api_config() );
204 $promotion_data = new PromotionData( $editor_assets_api );
205
206 return $promotion_data->get_promotion_data();
207 }
208
209 private function get_api_config(): array {
210 return [
211 EditorAssetsAPI::ASSETS_DATA_URL => 'https://assets.elementor.com/free-to-pro-upsell/v1/free-to-pro-upsell.json',
212 EditorAssetsAPI::ASSETS_DATA_TRANSIENT_KEY => '_elementor_free_to_pro_upsell',
213 EditorAssetsAPI::ASSETS_DATA_KEY => 'free-to-pro-upsell',
214 ];
215 }
216
217 public function add_editing_panel_sticky_promotion( array $settings ): array {
218 $settings['editingPanelStickyPromotion'] = Filtered_Promotions_Manager::get_editor_panel_sticky_promotion();
219
220 return $settings;
221 }
222
223 public function add_v4_promotions_data( array $settings ): array {
224 if ( ! current_user_can( 'manage_options' ) ) {
225 return $settings;
226 }
227
228 $editor_assets_api = new EditorAssetsAPI( $this->get_v4_promotions_api_config() );
229 $promotion_data = new PromotionData( $editor_assets_api );
230
231 $settings['v4Promotions'] = $promotion_data->get_v4_promotions_data();
232
233 return $settings;
234 }
235
236 private function get_v4_promotions_api_config(): array {
237 return [
238 EditorAssetsAPI::ASSETS_DATA_URL => 'https://assets.elementor.com/packages/v1/promotions.json',
239 EditorAssetsAPI::ASSETS_DATA_TRANSIENT_KEY => '_elementor_v4_promotions',
240 EditorAssetsAPI::ASSETS_DATA_KEY => 'promotions',
241 ];
242 }
243
244 private function is_atomic_widgets_active(): bool {
245 return Plugin::$instance->experiments->is_feature_active( 'e_atomic_elements' );
246 }
247
248 private function get_atomic_promotion_configs(): array {
249 return [
250 [
251 'key' => 'attributes',
252 'label' => __( 'Attributes', 'elementor' ),
253 'section' => 'settings',
254 'priority' => 40,
255 ],
256 [
257 'key' => 'display-conditions',
258 'label' => __( 'Display Conditions', 'elementor' ),
259 'section' => 'settings',
260 'priority' => 50,
261 ],
262 ];
263 }
264
265 private function register_atomic_promotions(): void {
266 add_action( 'elementor/init', function() {
267 if ( ! $this->is_atomic_widgets_active() ) {
268 return;
269 }
270
271 add_filter(
272 'elementor/atomic-widgets/props-schema',
273 [ $this, 'inject_atomic_promotion_props' ]
274 );
275
276 foreach ( $this->get_atomic_promotion_configs() as $config ) {
277 add_filter(
278 'elementor/atomic-widgets/controls',
279 fn( array $controls, $element ) => $this->inject_atomic_promotion_control( $controls, $element, $config ),
280 $config['priority'],
281 2
282 );
283 }
284 } );
285
286 ( new Atomic_Form_Widget_Promotion() )->register();
287 ( new Collection_Loop_Widget_Promotion() )->register();
288 }
289
290 public function inject_atomic_promotion_props( array $schema ): array {
291 foreach ( $this->get_atomic_promotion_configs() as $config ) {
292 $key = $config['key'];
293
294 if ( isset( $schema[ $key ] ) ) {
295 continue;
296 }
297
298 $schema[ $key ] = Promotion_Prop_Type::make( $key );
299 }
300
301 return $schema;
302 }
303
304 protected function inject_atomic_promotion_control( array $element_controls, $atomic_element, array $config ): array {
305 $key = $config['key'];
306 $schema = $atomic_element::get_props_schema();
307
308 if ( ! array_key_exists( $key, $schema ) ) {
309 return $element_controls;
310 }
311
312 foreach ( $element_controls as $item ) {
313 if ( ! ( $item instanceof \Elementor\Modules\AtomicWidgets\Controls\Section ) ) {
314 continue;
315 }
316
317 if ( $item->get_id() !== $config['section'] ) {
318 continue;
319 }
320
321 $control = Atomic_Promotion_Control::make( $key )
322 ->set_label( $config['label'] )
323 ->set_meta( [
324 'topDivider' => true,
325 ] );
326
327 $item->add_item( $control );
328 break;
329 }
330
331 return $element_controls;
332 }
333 }
334