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