PATH:
home
/
letacommog
/
le-panoramique
/
wp-content
/
plugins
/
elementor
/
core
/
app
/
modules
/
site-editor
<?php namespace Elementor\Core\App\Modules\SiteEditor; use Elementor\Core\Base\Module as BaseModule; use Elementor\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Site Editor Module * * Responsible for initializing Elementor App functionality */ class Module extends BaseModule { /** * Get name. * * @access public * * @return string */ public function get_name() { return 'site-editor'; } public function add_menu_in_admin_bar( \WP_Admin_Bar $wp_admin_bar ) { $wp_admin_bar->add_menu( [ 'id' => 'elementor_app_site_editor', 'parent' => 'elementor_edit_page', 'title' => __( 'Open Theme Builder', 'elementor' ), 'href' => Plugin::$instance->app->get_settings( 'menu_url' ), 'meta' => [ 'class' => 'elementor-app-link', ], ] ); } public function __construct() { add_action( 'admin_bar_menu', [ $this, 'add_menu_in_admin_bar' ], 201 /* After Elementor Edit */ ); } }
[+]
..
[-] module.php
[edit]