PageRenderTime 40ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/wp-admin/ms-delete-site.php

https://bitbucket.org/crypticrod/sr_wp_code
PHP | 83 lines | 67 code | 8 blank | 8 comment | 11 complexity | 484373b2b12b9d918250999b749f459a MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1, GPL-3.0, LGPL-2.0, AGPL-3.0
  1. <?php
  2. /**
  3. * Multisite delete site panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Multisite
  7. * @since 3.0.0
  8. */
  9. require_once( './admin.php' );
  10. if ( !is_multisite() )
  11. wp_die( __( 'Multisite support is not enabled.' ) );
  12. // @todo Create a delete blog cap.
  13. if ( ! current_user_can( 'manage_options' ) )
  14. wp_die(__( 'You do not have sufficient permissions to delete this site.'));
  15. if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) != false ) {
  16. if ( get_option( 'delete_blog_hash' ) == $_GET['h'] ) {
  17. wpmu_delete_blog( $wpdb->blogid );
  18. 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 ) );
  19. } else {
  20. wp_die( __( "I'm sorry, the link you clicked is stale. Please select another option." ) );
  21. }
  22. }
  23. $title = __( 'Delete Site' );
  24. $parent_file = 'tools.php';
  25. require_once( './admin-header.php' );
  26. echo '<div class="wrap">';
  27. screen_icon();
  28. echo '<h2>' . esc_html( $title ) . '</h2>';
  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. $content = apply_filters( 'delete_site_email_content', __( "Dear User,
  35. You recently clicked the 'Delete Site' link on your site and filled in a
  36. form on that page.
  37. If you really want to delete your site, click the link below. You will not
  38. be asked to confirm again so only click this link if you are absolutely certain:
  39. ###URL_DELETE###
  40. If you delete your site, please consider opening a new site here
  41. some time in the future! (But remember your current site and username
  42. are gone forever.)
  43. Thanks for using the site,
  44. Webmaster
  45. ###SITE_NAME###" ) );
  46. $content = str_replace( '###URL_DELETE###', $url_delete, $content );
  47. $content = str_replace( '###SITE_NAME###', $current_site->site_name, $content );
  48. wp_mail( get_option( 'admin_email' ), "[ " . get_option( 'blogname' ) . " ] ".__( 'Delete My Site' ), $content );
  49. ?>
  50. <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>
  51. <?php } else {
  52. ?>
  53. <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>
  54. <p><?php _e( 'Remember, once deleted your site cannot be restored.' ) ?></p>
  55. <form method="post" name="deletedirect">
  56. <?php wp_nonce_field( 'delete-blog' ) ?>
  57. <input type="hidden" name="action" value="deleteblog" />
  58. <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() ? $current_blog->domain : $current_blog->domain . $current_blog->path ); ?></strong></label></p>
  59. <?php submit_button( __( 'Delete My Site Permanently' ) ); ?>
  60. </form>
  61. <?php
  62. }
  63. echo '</div>';
  64. include( './admin-footer.php' );
  65. ?>