File Manager Lite
Dir:
/home/atomylvb/jarangomd.com/old/wp-admin/network
Upload
[..]
about.php (245 B)
Edit
Rename
Del
contribute.php (255 B)
Edit
Rename
Del
credits.php (249 B)
Edit
Rename
Del
edit.php (908 B)
Edit
Rename
Del
freedoms.php (251 B)
Edit
Rename
Del
index.php (2.84 KB)
Edit
Rename
Del
menu.php (4.69 KB)
Edit
Rename
Del
plugin-editor.php (266 B)
Edit
Rename
Del
privacy.php (249 B)
Edit
Rename
Del
profile.php (254 B)
Edit
Rename
Del
settings.php (21.51 KB)
Edit
Rename
Del
site-info.php (7.59 KB)
Edit
Rename
Del
site-new.php (9.38 KB)
Edit
Rename
Del
site-settings.php (5.47 KB)
Edit
Rename
Del
site-themes.php (6.71 KB)
Edit
Rename
Del
site-users.php (11.53 KB)
Edit
Rename
Del
sites.php (14.2 KB)
Edit
Rename
Del
theme-install.php (374 B)
Edit
Rename
Del
themes.php (15.61 KB)
Edit
Rename
Del
update-core.php (253 B)
Edit
Rename
Del
update.php (450 B)
Edit
Rename
Del
upgrade.php (4.83 KB)
Edit
Rename
Del
user-edit.php (253 B)
Edit
Rename
Del
user-new.php (5.11 KB)
Edit
Rename
Del
users.php (9.27 KB)
Edit
Rename
Del
Edit: 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;
Simpan