| @@ -3,30 +3,20 @@ | ||
| 3 | 3 | namespace Elementor\Modules\Promotions; |
| 4 | 4 | |
| 5 | 5 | use Elementor\Api; |
| 6 | 6 | use Elementor\Controls_Manager; |
| 7 | +use Elementor\Core\Admin\Menu\Admin_Menu_Manager; | |
| 7 | 8 | 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; | |
| 9 | +use Elementor\Modules\Promotions\AdminMenuItems\Custom_Code_Promotion_Item; | |
| 10 | +use Elementor\Modules\Promotions\AdminMenuItems\Custom_Fonts_Promotion_Item; | |
| 11 | +use Elementor\Modules\Promotions\AdminMenuItems\Custom_Icons_Promotion_Item; | |
| 12 | +use Elementor\Modules\Promotions\AdminMenuItems\Form_Submissions_Promotion_Item; | |
| 14 | 13 | 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; | |
| 14 | +use Elementor\Modules\Promotions\AdminMenuItems\Popups_Promotion_Item; | |
| 17 | 15 | 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 | 16 | use Elementor\Widgets_Manager; |
| 24 | 17 | use Elementor\Utils; |
| 25 | 18 | 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 | 19 | |
| 30 | 20 | if ( ! defined( 'ABSPATH' ) ) { |
| 31 | 21 | exit; // Exit if accessed directly. |
| 32 | 22 | } |
| @@ -51,15 +41,15 @@ | ||
| 51 | 41 | add_action( 'admin_init', function () { |
| 52 | 42 | $this->handle_external_redirects(); |
| 53 | 43 | } ); |
| 54 | 44 | |
| 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 | - } ); | |
| 45 | + add_action( 'elementor/admin/menu/register', function ( Admin_Menu_Manager $admin_menu ) { | |
| 46 | + $this->register_menu_items( $admin_menu ); | |
| 47 | + }, static::ADMIN_MENU_PRIORITY ); | |
| 58 | 48 | |
| 59 | - if ( Utils::is_sale_time() ) { | |
| 60 | - add_filter( 'add_menu_classes', [ $this, 'override_one_menu_upgrade_label_during_sale' ] ); | |
| 61 | - } | |
| 49 | + add_action( 'elementor/admin/menu/register', function ( Admin_Menu_Manager $admin_menu ) { | |
| 50 | + $this->register_promotion_menu_item( $admin_menu ); | |
| 51 | + }, static::ADMIN_MENU_PROMOTIONS_PRIORITY ); | |
| 62 | 52 | |
| 63 | 53 | add_action( 'elementor/widgets/register', function( Widgets_Manager $manager ) { |
| 64 | 54 | foreach ( Api::get_promotion_widgets() as $widget_data ) { |
| 65 | 55 | $manager->register( new Widgets\Pro_Widget_Promotion( [], [ |
| @@ -72,18 +62,8 @@ | ||
| 72 | 62 | if ( Birthday::should_display_notice() ) { |
| 73 | 63 | new Birthday(); |
| 74 | 64 | } |
| 75 | 65 | |
| 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 | 66 | if ( Utils::has_pro() ) { |
| 87 | 67 | return; |
| 88 | 68 | } |
| 89 | 69 | |
| @@ -92,63 +72,31 @@ | ||
| 92 | 72 | } ); |
| 93 | 73 | |
| 94 | 74 | add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_react_data' ] ); |
| 95 | 75 | 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 | 76 | } |
| 102 | 77 | |
| 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 | 78 | private function handle_external_redirects() { |
| 113 | - $page = filter_input( INPUT_GET, 'page', FILTER_SANITIZE_FULL_SPECIAL_CHARS ); | |
| 114 | - if ( empty( $page ) ) { | |
| 79 | + if ( empty( $_GET['page'] ) ) { | |
| 115 | 80 | return; |
| 116 | 81 | } |
| 117 | 82 | |
| 118 | - if ( 'go_elementor_pro' === $page ) { | |
| 119 | - wp_redirect( Go_Pro_Promotion_Item::get_url() ); // phpcs:ignore WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | |
| 83 | + if ( 'go_elementor_pro' === $_GET['page'] ) { | |
| 84 | + wp_redirect( Go_Pro_Promotion_Item::get_url() ); | |
| 120 | 85 | die; |
| 121 | 86 | } |
| 122 | 87 | } |
| 123 | 88 | |
| 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; | |
| 89 | + private function register_menu_items( Admin_Menu_Manager $admin_menu ) { | |
| 90 | + $admin_menu->register( 'e-form-submissions', new Form_Submissions_Promotion_Item() ); | |
| 91 | + $admin_menu->register( 'elementor_custom_fonts', new Custom_Fonts_Promotion_Item() ); | |
| 92 | + $admin_menu->register( 'elementor_custom_icons', new Custom_Icons_Promotion_Item() ); | |
| 93 | + $admin_menu->register( 'elementor_custom_code', new Custom_Code_Promotion_Item() ); | |
| 94 | + $admin_menu->register( 'popup_templates', new Popups_Promotion_Item() ); | |
| 142 | 95 | } |
| 143 | 96 | |
| 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() ); | |
| 97 | + private function register_promotion_menu_item( Admin_Menu_Manager $admin_menu ) { | |
| 98 | + $admin_menu->register( 'go_elementor_pro', new Go_Pro_Promotion_Item() ); | |
| 151 | 99 | } |
| 152 | 100 | |
| 153 | 101 | public function enqueue_react_data(): void { |
| 154 | 102 | if ( ! current_user_can( 'manage_options' ) ) { |
| @@ -213,118 +161,6 @@ | ||
| 213 | 161 | EditorAssetsAPI::ASSETS_DATA_URL => 'https://assets.elementor.com/free-to-pro-upsell/v1/free-to-pro-upsell.json', |
| 214 | 162 | EditorAssetsAPI::ASSETS_DATA_TRANSIENT_KEY => '_elementor_free_to_pro_upsell', |
| 215 | 163 | EditorAssetsAPI::ASSETS_DATA_KEY => 'free-to-pro-upsell', |
| 216 | 164 | ]; |
| 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 | 165 | } |
| 330 | 166 | } |