SILENT KILLERPanel

Current Path: > home > transcarter > > > > > www > wp-content > plugins > elementor-pro > modules > notes


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/transcarter/////www/wp-content/plugins/elementor-pro/modules/notes

NameTypeSizeLast ModifiedActions
assets Directory - -
data Directory - -
database Directory - -
notifications Directory - -
user Directory - -
admin-bar.php File 672 bytes March 09 2023 22:15:58.
admin-page.php File 3666 bytes March 09 2023 22:15:58.
document-events.php File 2757 bytes March 09 2023 22:15:58.
module.php File 6809 bytes March 09 2023 22:15:58.
usage.php File 7974 bytes March 09 2023 22:15:58.
utils.php File 2412 bytes March 09 2023 22:15:58.

Reading File: /home/transcarter/////www/wp-content/plugins/elementor-pro/modules/notes/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".
	}
}

SILENT KILLER Tool