%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/wellingtpa/www/wp-content/plugins/elementor/modules/editor-one/components/ |
Upload File : |
<?php
namespace Elementor\Modules\EditorOne\Components;
use Elementor\Modules\EditorOne\Classes\Menu_Data_Provider;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Top_Bar_Handler {
private Menu_Data_Provider $menu_data_provider;
public function __construct() {
$this->menu_data_provider = Menu_Data_Provider::instance();
$this->register_actions();
}
private function register_actions(): void {
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
add_action( 'in_admin_header', [ $this, 'render_top_bar_container' ] );
}
public function enqueue_assets(): void {
if ( ! $this->menu_data_provider->is_editor_one_admin_page() ) {
return;
}
$min_suffix = Utils::is_script_debug() ? '' : '.min';
wp_enqueue_style(
'elementor-one-top-bar',
ELEMENTOR_ASSETS_URL . 'css/modules/editor-one/top-bar' . $min_suffix . '.css',
[],
ELEMENTOR_VERSION
);
wp_enqueue_script(
'editor-one-top-bar',
ELEMENTOR_ASSETS_URL . 'js/editor-one-top-bar' . $min_suffix . '.js',
[
'react',
'react-dom',
'elementor-common',
'elementor-v2-ui',
'elementor-v2-icons',
],
ELEMENTOR_VERSION,
true
);
wp_localize_script(
'editor-one-top-bar',
'elementorOneTopBarConfig',
[
'version' => ELEMENTOR_VERSION,
'title' => __( 'website builder', 'elementor' ),
'environment' => apply_filters( 'elementor/environment', 'production' ),
]
);
}
public function render_top_bar_container(): void {
if ( ! $this->menu_data_provider->is_editor_one_admin_page() ) {
return;
}
echo '<div id="editor-one-top-bar"></div>';
}
}