ms-delete-site.php 3.9 KB

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