%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/w/e/l/wellingtpa/www/wp-content/plugins/elementor/modules/widget-creation/ |
Upload File : |
<?php
namespace Elementor\Modules\WidgetCreation;
use Elementor\Core\Upgrade\Manager as Upgrade_Manager;
use Elementor\Core\Utils\Hints;
use Elementor\Modules\ElementorCounter\Module as Elementor_Counter;
use Elementor\Plugin;
use Elementor\User;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class AngiePromotion {
const ANGIE_GUIDE_AUTO_SHOWN_OPTION = 'elementor_angie_guide_auto_shown';
public static function init() {
if ( ! self::should_display_promotion() ) {
return;
}
add_filter( 'elementor/editor/localize_settings', function ( $settings ) {
$settings = self::register_for_new_site( $settings );
$settings = self::register_for_existing_site( $settings );
return $settings;
}, 10 );
}
private static function should_display_promotion(): bool {
return ! Hints::is_plugin_active( 'angie' );
}
private static function register_for_new_site( array $settings ): array {
if ( ! Upgrade_Manager::is_new_installation() ) {
return $settings;
}
if ( 'yes' === get_option( self::ANGIE_GUIDE_AUTO_SHOWN_OPTION ) ) {
return $settings;
}
$editor_visit_count = Elementor_Counter::instance()->get_count( Elementor_Counter::EDITOR_COUNTER_KEY );
if ( $editor_visit_count <= 2 ) {
return $settings;
}
update_option( self::ANGIE_GUIDE_AUTO_SHOWN_OPTION, 'yes' );
$settings['angie']['autoShow'] = true;
return $settings;
}
private static function register_for_existing_site( array $settings ): array {
if ( Upgrade_Manager::is_new_installation() ) {
return $settings;
}
if ( 'yes' === get_option( self::ANGIE_GUIDE_AUTO_SHOWN_OPTION ) ) {
return $settings;
}
$is_container_active = Plugin::$instance->experiments->is_feature_active( 'container' );
if ( $is_container_active ) {
$is_atomic_active = Plugin::$instance->experiments->is_feature_active( 'e_atomic_elements' );
$is_promo_dismissed = ! empty( User::get_introduction_meta( 'atomic_elements_promo' ) );
if ( ! $is_atomic_active && ! $is_promo_dismissed ) {
return $settings;
}
}
update_option( self::ANGIE_GUIDE_AUTO_SHOWN_OPTION, 'yes' );
$settings['angie']['autoShow'] = true;
return $settings;
}
}