10
10
require_once( dirname( __FILE__ ) . '/admin.php' );
12
if ( !is_multisite() )
12
if ( ! is_multisite() ) {
13
13
wp_die( __( 'Multisite support is not enabled.' ) );
15
if ( ! current_user_can( 'delete_site' ) )
16
wp_die(__( 'Sorry, you are not allowed to delete this site.'));
16
if ( ! current_user_can( 'delete_site' ) ) {
17
wp_die( __( 'Sorry, you are not allowed to delete this site.' ) );
18
20
if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) != false ) {
19
21
if ( hash_equals( get_option( 'delete_blog_hash' ), $_GET['h'] ) ) {
27
29
$blog = get_site();
28
30
$user = wp_get_current_user();
30
$title = __( 'Delete Site' );
32
$title = __( 'Delete Site' );
31
33
$parent_file = 'tools.php';
32
34
require_once( ABSPATH . 'wp-admin/admin-header.php' );
45
47
$switched_locale = switch_to_locale( get_locale() );
47
49
/* translators: Do not translate USERNAME, URL_DELETE, SITE_NAME: those are placeholders. */
48
$content = __( "Howdy ###USERNAME###,
51
"Howdy ###USERNAME###,
50
53
You recently clicked the 'Delete Site' link on your site and filled in a
74
78
$content = str_replace( '###URL_DELETE###', $url_delete, $content );
75
79
$content = str_replace( '###SITE_NAME###', get_network()->site_name, $content );
77
wp_mail( get_option( 'admin_email' ), "[ " . wp_specialchars_decode( get_option( 'blogname' ) ) . " ] ".__( 'Delete My Site' ), $content );
81
wp_mail( get_option( 'admin_email' ), '[ ' . wp_specialchars_decode( get_option( 'blogname' ) ) . ' ] ' . __( 'Delete My Site' ), $content );
79
83
if ( $switched_locale ) {
80
84
restore_previous_locale();
84
<p><?php _e( 'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.' ) ?></p>
88
<p><?php _e( 'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.' ); ?></p>
88
<p><?php printf( __( 'If you do not want to use your %s site any more, you can delete it using the form below. When you click <strong>Delete My Site Permanently</strong> you will be sent an email with a link in it. Click on this link to delete your site.'), get_network()->site_name); ?></p>
89
<p><?php _e( 'Remember, once deleted your site cannot be restored.' ) ?></p>
93
<p><?php printf( __( 'If you do not want to use your %s site any more, you can delete it using the form below. When you click <strong>Delete My Site Permanently</strong> you will be sent an email with a link in it. Click on this link to delete your site.' ), get_network()->site_name ); ?></p>
94
<p><?php _e( 'Remember, once deleted your site cannot be restored.' ); ?></p>
91
96
<form method="post" name="deletedirect">
92
<?php wp_nonce_field( 'delete-blog' ) ?>
97
<?php wp_nonce_field( 'delete-blog' ); ?>
93
98
<input type="hidden" name="action" value="deleteblog" />
94
<p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php
99
<p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong>
96
102
/* translators: %s: site address */
97
103
__( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." ),
98
104
$blog->domain . $blog->path
100
?></strong></label></p>
107
</strong></label></p>
101
108
<?php submit_button( __( 'Delete My Site Permanently' ) ); ?>