ms-delete-site.php 4.2 KB

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