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