]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/ms-delete-site.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / ms-delete-site.php
1 <?php
2 /**
3  * Multisite delete site panel.
4  *
5  * @package WordPress
6  * @subpackage Multisite
7  * @since 3.0.0
8  */
9
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 if ( !is_multisite() )
13         wp_die( __( 'Multisite support is not enabled.' ) );
14
15 if ( ! current_user_can( 'delete_site' ) )
16         wp_die(__( 'You do not have sufficient permissions to delete this site.'));
17
18 if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) != false ) {
19         if ( get_option( 'delete_blog_hash' ) == $_GET['h'] ) {
20                 wpmu_delete_blog( $wpdb->blogid );
21                 wp_die( sprintf( __( 'Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.' ), $current_site->site_name ) );
22         } else {
23                 wp_die( __( "I'm sorry, the link you clicked is stale. Please select another option." ) );
24         }
25 }
26
27 $blog = get_blog_details();
28 $user = wp_get_current_user();
29
30 $title = __( 'Delete Site' );
31 $parent_file = 'tools.php';
32 require_once( ABSPATH . 'wp-admin/admin-header.php' );
33
34 echo '<div class="wrap">';
35 echo '<h1>' . esc_html( $title ) . '</h1>';
36
37 if ( isset( $_POST['action'] ) && $_POST['action'] == 'deleteblog' && isset( $_POST['confirmdelete'] ) && $_POST['confirmdelete'] == '1' ) {
38         check_admin_referer( 'delete-blog' );
39
40         $hash = wp_generate_password( 20, false );
41         update_option( 'delete_blog_hash', $hash );
42
43         $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) );
44
45         /* translators: Do not translate USERNAME, URL_DELETE, SITE_NAME: those are placeholders. */
46         $content = __( "Howdy ###USERNAME###,
47
48 You recently clicked the 'Delete Site' link on your site and filled in a
49 form on that page.
50
51 If you really want to delete your site, click the link below. You will not
52 be asked to confirm again so only click this link if you are absolutely certain:
53 ###URL_DELETE###
54
55 If you delete your site, please consider opening a new site here
56 some time in the future! (But remember your current site and username
57 are gone forever.)
58
59 Thanks for using the site,
60 Webmaster
61 ###SITE_NAME###" );
62         /**
63          * Filter the email content sent when a site in a Multisite network is deleted.
64          *
65          * @since 3.0.0
66          *
67          * @param string $content The email content that will be sent to the user who deleted a site in a Multisite network.
68          */
69         $content = apply_filters( 'delete_site_email_content', $content );
70
71         $content = str_replace( '###USERNAME###', $user->user_login, $content );
72         $content = str_replace( '###URL_DELETE###', $url_delete, $content );
73         $content = str_replace( '###SITE_NAME###', $current_site->site_name, $content );
74
75         wp_mail( get_option( 'admin_email' ), "[ " . wp_specialchars_decode( get_option( 'blogname' ) ) . " ] ".__( 'Delete My Site' ), $content );
76         ?>
77
78         <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>
79
80 <?php } else {
81         ?>
82         <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.'), $current_site->site_name); ?></p>
83         <p><?php _e( 'Remember, once deleted your site cannot be restored.' ) ?></p>
84
85         <form method="post" name="deletedirect">
86                 <?php wp_nonce_field( 'delete-blog' ) ?>
87                 <input type="hidden" name="action" value="deleteblog" />
88                 <p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php printf( __( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." ), is_subdomain_install() ? $blog->domain : $blog->domain . $blog->path ); ?></strong></label></p>
89                 <?php submit_button( __( 'Delete My Site Permanently' ) ); ?>
90         </form>
91         <?php
92 }
93 echo '</div>';
94
95 include( ABSPATH . 'wp-admin/admin-footer.php' );