| Name | Size | Mode | Actions |
|---|---|---|---|
| about.php | 263 | 0644 | editdlrm |
| admin.php | 1033 | 0644 | editdlrm |
| credits.php | 267 | 0644 | editdlrm |
| edit.php | 925 | 0644 | editdlrm |
| freedoms.php | 269 | 0644 | editdlrm |
| index.php | 2868 | 0644 | editdlrm |
| menu.php | 4430 | 0644 | editdlrm |
| plugin-editor.php | 279 | 0644 | editdlrm |
| plugin-install.php | 394 | 0644 | editdlrm |
| plugins.php | 267 | 0644 | editdlrm |
| privacy.php | 267 | 0644 | editdlrm |
| profile.php | 272 | 0644 | editdlrm |
| settings.php | 20576 | 0644 | editdlrm |
| setup.php | 265 | 0644 | editdlrm |
| site-info.php | 7016 | 0644 | editdlrm |
| site-new.php | 9772 | 0644 | editdlrm |
| site-settings.php | 5559 | 0644 | editdlrm |
| site-themes.php | 6567 | 0644 | editdlrm |
| site-users.php | 11656 | 0644 | editdlrm |
| sites.php | 12709 | 0644 | editdlrm |
| theme-editor.php | 277 | 0644 | editdlrm |
| theme-install.php | 391 | 0644 | editdlrm |
| themes.php | 11987 | 0644 | editdlrm |
| update-core.php | 271 | 0644 | editdlrm |
| update.php | 462 | 0644 | editdlrm |
| upgrade.php | 4921 | 0644 | editdlrm |
| user-edit.php | 271 | 0644 | editdlrm |
| user-new.php | 4926 | 0644 | editdlrm |
| users.php | 9057 | 0644 | editdlrm |
/home/desid573/public_html/magicride.ng/wp-admin/network/sites.php (12709B)
' . __( 'Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.' ) . '
' . '' . __( 'This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.' ) . '
' . '' . __( 'Hovering over each site reveals seven options (three for the primary site):' ) . '
' . '' . __( 'The site ID is used internally, and is not shown on the front end of the site or to users/viewers.' ) . '
' . '' . __( 'Clicking on bold headings can re-sort this table.' ) . '
', ) ); get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . '' . __( 'Documentation on Site Management' ) . '
' . '' . __( 'Support Forums' ) . '
' ); get_current_screen()->set_screen_reader_content( array( 'heading_pagination' => __( 'Sites list navigation' ), 'heading_list' => __( 'Sites list' ), ) ); $id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0; if ( isset( $_GET['action'] ) ) { /** This action is documented in wp-admin/network/edit.php */ do_action( 'wpmuadminedit' ); // A list of valid actions and their associated messaging for confirmation output. $manage_actions = array( 'activateblog' => __( 'You are about to activate the site %s.' ), 'deactivateblog' => __( 'You are about to deactivate the site %s.' ), 'unarchiveblog' => __( 'You are about to unarchive the site %s.' ), 'archiveblog' => __( 'You are about to archive the site %s.' ), 'unspamblog' => __( 'You are about to unspam the site %s.' ), 'spamblog' => __( 'You are about to mark the site %s as spam.' ), 'deleteblog' => __( 'You are about to delete the site %s.' ), 'unmatureblog' => __( 'You are about to mark the site %s as mature.' ), 'matureblog' => __( 'You are about to mark the site %s as not mature.' ), ); if ( 'confirm' === $_GET['action'] ) { // The action2 parameter contains the action being taken on the site. $site_action = $_GET['action2']; if ( ! array_key_exists( $site_action, $manage_actions ) ) { wp_die( __( 'The requested action is not valid.' ) ); } // The mature/unmature UI exists only as external code. Check the "confirm" nonce for backward compatibility. if ( 'matureblog' === $site_action || 'unmatureblog' === $site_action ) { check_admin_referer( 'confirm' ); } else { check_admin_referer( $site_action . '_' . $id ); } if ( ! headers_sent() ) { nocache_headers(); header( 'Content-Type: text/html; charset=utf-8' ); } if ( get_network()->site_id == $id ) { wp_die( __( 'Sorry, you are not allowed to change the current site.' ) ); } $site_details = get_site( $id ); $site_address = untrailingslashit( $site_details->domain . $site_details->path ); require_once( ABSPATH . 'wp-admin/admin-header.php' ); ?>' . $msg . '