Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-admin/network
NameTypeSizeActions
📁 .. Folder -
📄 about.php File 245
Edit Download
📄 admin.php File 1024
Edit Download
📄 contribute.php File 255
Edit Download
📄 credits.php File 249
Edit Download
📄 edit.php File 908
Edit Download
📄 freedoms.php File 251
Edit Download
📄 index.php File 2911
Edit Download
📄 menu.php File 4798
Edit Download
📄 plugin-editor.php File 266
Edit Download
📄 plugin-install.php File 377
Edit Download
📄 plugins.php File 249
Edit Download
📄 privacy.php File 249
Edit Download
📄 profile.php File 254
Edit Download
📄 settings.php File 21973
Edit Download
📄 setup.php File 247
Edit Download
📄 site-info.php File 7774
Edit Download
📄 site-new.php File 9571
Edit Download
📄 site-settings.php File 5626
Edit Download
📄 site-themes.php File 6875
Edit Download
📄 site-users.php File 11289
Edit Download
📄 sites.php File 13571
Edit Download
📄 theme-editor.php File 264
Edit Download
📄 theme-install.php File 374
Edit Download
📄 themes.php File 15989
Edit Download
📄 update-core.php File 253
Edit Download
📄 update.php File 450
Edit Download
📄 upgrade.php File 4966
Edit Download
📄 user-edit.php File 253
Edit Download
📄 user-new.php File 5228
Edit Download
📄 users.php File 9494
Edit Download

View File: edit.php

<?php
/**
 * Action handler for Multisite administration panels.
 *
 * @package WordPress
 * @subpackage Multisite
 * @since 3.0.0
 */

/** Load WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

$action = ( isset( $_GET['action'] ) ) ? $_GET['action'] : '';

if ( empty( $action ) ) {
	wp_redirect( network_admin_url() );
	exit;
}

/**
 * Fires just before the action handler in several Network Admin screens.
 *
 * This hook fires on multiple screens in the Multisite Network Admin,
 * including Users, Network Settings, and Site Settings.
 *
 * @since 3.0.0
 */
do_action( 'wpmuadminedit' );

/**
 * Fires the requested handler action.
 *
 * The dynamic portion of the hook name, `$action`, refers to the name
 * of the requested action derived from the `GET` request.
 *
 * @since 3.1.0
 */
do_action( "network_admin_edit_{$action}" );

wp_redirect( network_admin_url() );
exit;