GRAYBYTE WORDPRESS FILE MANAGER9408

Server IP : 149.255.58.128 / Your IP : 216.73.216.40
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/wheelch2/mobilityscootereftalia.com/wp-admin/network/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/wheelch2/mobilityscootereftalia.com/wp-admin/network//menu.php
<?php
/**
 * Build Network Administration Menu.
 *
 * @package WordPress
 * @subpackage Multisite
 * @since 3.1.0
 */

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

/* translators: Network menu item. */
$menu[2] = array( __( 'Dashboard' ), 'manage_network', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard' );

$submenu['index.php'][0] = array( __( 'Home' ), 'read', 'index.php' );

if ( current_user_can( 'update_core' ) ) {
	$cap = 'update_core';
} elseif ( current_user_can( 'update_plugins' ) ) {
	$cap = 'update_plugins';
} elseif ( current_user_can( 'update_themes' ) ) {
	$cap = 'update_themes';
} else {
	$cap = 'update_languages';
}

$update_data = wp_get_update_data();
if ( $update_data['counts']['total'] ) {
	$submenu['index.php'][10] = array(
		sprintf(
			/* translators: %s: Number of available updates. */
			__( 'Updates %s' ),
			sprintf(
				'<span class="update-plugins count-%s"><span class="update-count">%s</span></span>',
				$update_data['counts']['total'],
				number_format_i18n( $update_data['counts']['total'] )
			)
		),
		$cap,
		'update-core.php',
	);
} else {
	$submenu['index.php'][10] = array( __( 'Updates' ), $cap, 'update-core.php' );
}

unset( $cap );

$submenu['index.php'][15] = array( __( 'Upgrade Network' ), 'upgrade_network', 'upgrade.php' );

$menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' );

/* translators: Sites menu item. */
$menu[5]                  = array( __( 'Sites' ), 'manage_sites', 'sites.php', '', 'menu-top menu-icon-site', 'menu-site', 'dashicons-admin-multisite' );
$submenu['sites.php'][5]  = array( __( 'All Sites' ), 'manage_sites', 'sites.php' );
$submenu['sites.php'][10] = array( __( 'Add Site' ), 'create_sites', 'site-new.php' );

$menu[10]                 = array( __( 'Users' ), 'manage_network_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' );
$submenu['users.php'][5]  = array( __( 'All Users' ), 'manage_network_users', 'users.php' );
$submenu['users.php'][10] = array( __( 'Add User' ), 'create_users', 'user-new.php' );

if ( current_user_can( 'update_themes' ) && $update_data['counts']['themes'] ) {
	$menu[15] = array(
		sprintf(
			/* translators: %s: Number of available theme updates. */
			__( 'Themes %s' ),
			sprintf(
				'<span class="update-plugins count-%s"><span class="theme-count">%s</span></span>',
				$update_data['counts']['themes'],
				number_format_i18n( $update_data['counts']['themes'] )
			)
		),
		'manage_network_themes',
		'themes.php',
		'',
		'menu-top menu-icon-appearance',
		'menu-appearance',
		'dashicons-admin-appearance',
	);
} else {
	$menu[15] = array( __( 'Themes' ), 'manage_network_themes', 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'dashicons-admin-appearance' );
}
$submenu['themes.php'][5]  = array( __( 'Installed Themes' ), 'manage_network_themes', 'themes.php' );
$submenu['themes.php'][10] = array( __( 'Add Theme' ), 'install_themes', 'theme-install.php' );
$submenu['themes.php'][15] = array( __( 'Theme File Editor' ), 'edit_themes', 'theme-editor.php' );

if ( current_user_can( 'update_plugins' ) && $update_data['counts']['plugins'] ) {
	$menu[20] = array(
		sprintf(
			/* translators: %s: Number of available plugin updates. */
			__( 'Plugins %s' ),
			sprintf(
				'<span class="update-plugins count-%s"><span class="plugin-count">%s</span></span>',
				$update_data['counts']['plugins'],
				number_format_i18n( $update_data['counts']['plugins'] )
			)
		),
		'manage_network_plugins',
		'plugins.php',
		'',
		'menu-top menu-icon-plugins',
		'menu-plugins',
		'dashicons-admin-plugins',
	);
} else {
	$menu[20] = array( __( 'Plugins' ), 'manage_network_plugins', 'plugins.php', '', 'menu-top menu-icon-plugins', 'menu-plugins', 'dashicons-admin-plugins' );
}
$submenu['plugins.php'][5]  = array( __( 'Installed Plugins' ), 'manage_network_plugins', 'plugins.php' );
$submenu['plugins.php'][10] = array( __( 'Add Plugin' ), 'install_plugins', 'plugin-install.php' );
$submenu['plugins.php'][15] = array( __( 'Plugin File Editor' ), 'edit_plugins', 'plugin-editor.php' );

$menu[25] = array( __( 'Settings' ), 'manage_network_options', 'settings.php', '', 'menu-top menu-icon-settings', 'menu-settings', 'dashicons-admin-settings' );
if ( defined( 'MULTISITE' ) && defined( 'WP_ALLOW_MULTISITE' ) && WP_ALLOW_MULTISITE ) {
	$submenu['settings.php'][5]  = array( __( 'Network Settings' ), 'manage_network_options', 'settings.php' );
	$submenu['settings.php'][10] = array( __( 'Network Setup' ), 'setup_network', 'setup.php' );
}
unset( $update_data );

$menu[99] = array( '', 'exist', 'separator-last', '', 'wp-menu-separator' );

require_once ABSPATH . 'wp-admin/includes/menu.php';

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 20 2025 11:42:25
1032 / wheelch2
0755
.htaccess
0 KB
March 26 2025 13:57:35
1032 / wheelch2
0444
about.php
0.239 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
admin.php
1 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
contribute.php
0.249 KB
July 25 2023 21:34:27
1032 / wheelch2
0644
credits.php
0.243 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
edit.php
0.887 KB
May 26 2020 09:37:10
1032 / wheelch2
0644
freedoms.php
0.245 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
index.php
2.843 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
menu.php
4.686 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
plugin-editor.php
0.26 KB
December 21 2021 20:06:02
1032 / wheelch2
0644
plugin-install.php
0.368 KB
May 24 2020 09:17:09
1032 / wheelch2
0644
plugins.php
0.243 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
privacy.php
0.243 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
profile.php
0.248 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
settings.php
21.458 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
setup.php
0.241 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
site-info.php
7.592 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
site-new.php
9.347 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
site-settings.php
5.494 KB
August 17 2023 21:03:19
1032 / wheelch2
0644
site-themes.php
6.714 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
site-users.php
11.024 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
sites.php
13.253 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
theme-editor.php
0.258 KB
December 21 2021 20:06:02
1032 / wheelch2
0644
theme-install.php
0.365 KB
May 24 2020 09:17:09
1032 / wheelch2
0644
themes.php
15.614 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
update-core.php
0.247 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
update.php
0.439 KB
April 05 2020 03:02:11
1032 / wheelch2
0644
upgrade.php
4.85 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
user-edit.php
0.247 KB
February 06 2020 06:33:11
1032 / wheelch2
0644
user-new.php
5.105 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
users.php
9.271 KB
April 16 2025 03:38:58
1032 / wheelch2
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF