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