/home/desid573/verdenaturopathy.com.au/site3/wp-admin
NameSizeModeActions
css/-0755rm
images/-0777rm
includes/-0777rm
js/-0755rm
maint/-0777rm
network/-0777rm
user/-0777rm
about.php189000644editdlrm
admin-ajax.php51460644editdlrm
admin-footer.php28110644editdlrm
admin-functions.php4790644editdlrm
admin-header.php92910644editdlrm
admin-post.php20210644editdlrm
admin.php129350644editdlrm
async-upload.php56040644editdlrm
authorize-application.php103350644editdlrm
comment.php116430644editdlrm
contribute.php60390644editdlrm
credits.php45240644editdlrm
custom-background.php4890644editdlrm
custom-header.php4990644editdlrm
customize.php114760644editdlrm
edit-comments.php144840644editdlrm
edit-form-advanced.php294860644editdlrm
edit-form-blocks.php150840644editdlrm
edit-form-comment.php85330644editdlrm
edit-link-form.php63540644editdlrm
edit-tag-form.php106650644editdlrm
edit-tags.php225100644editdlrm
edit.php199520644editdlrm
erase-personal-data.php75050644editdlrm
error_log13790644editdlrm
export-personal-data.php79410644editdlrm
export.php112650644editdlrm
font-library.php10360644editdlrm
freedoms.php49570644editdlrm
import.php77660644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php183370644editdlrm
link-add.php9340644editdlrm
link-manager.php43610644editdlrm
link-parse-opml.php26980644editdlrm
link.php29570644editdlrm
load-scripts.php20700644editdlrm
load-styles.php29950644editdlrm
media-new.php32490644editdlrm
media-upload.php36680644editdlrm
media.php8190644editdlrm
menu-header.php100590644editdlrm
menu.php181410644editdlrm
moderation.php3070644editdlrm
ms-admin.php1960644editdlrm
ms-delete-site.php46130644editdlrm
ms-edit.php2160644editdlrm
ms-options.php2290644editdlrm
ms-sites.php2150644editdlrm
ms-themes.php2170644editdlrm
ms-upgrade-network.php2190644editdlrm
ms-users.php2150644editdlrm
my-sites.php48310644editdlrm
nav-menus.php502510644editdlrm
network.php55220644editdlrm
options-connectors.php10960644editdlrm
options-discussion.php162970644editdlrm
options-general.php228510644editdlrm
options-head.php6210644editdlrm
options-media.php65300644editdlrm
options-permalink.php224160644editdlrm
options-privacy.php101630644editdlrm
options-reading.php102130644editdlrm
options-writing.php93230644editdlrm
options.php142660644editdlrm
plugin-editor.php140820644editdlrm
plugin-install.php71240644editdlrm
plugins.php307240644editdlrm
post-new.php27680644editdlrm
post.php102740644editdlrm
press-this.php24700644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php28950644editdlrm
profile.php2830644editdlrm
revision.php58360644editdlrm
setup-config.php179450644editdlrm
site-editor.php123620644editdlrm
site-health-info.php41500644editdlrm
site-health.php104210644editdlrm
term.php22490644editdlrm
theme-editor.php172790644editdlrm
theme-install.php242220644editdlrm
themes.php494050644editdlrm
tools.php35140644editdlrm
update-core.php462020644editdlrm
update.php130620644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php63900644editdlrm
upload.php152570644editdlrm
user-edit.php413190644editdlrm
user-new.php246390644editdlrm
users.php240020644editdlrm
widgets-form-blocks.php52420644editdlrm
widgets-form.php195950644editdlrm
widgets.php11120644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/site3/wp-admin/ms-delete-site.php (4613B)
site_name ) ); } else { wp_die( __( 'Sorry, the link you clicked is stale. Please select another option.' ) ); } } $blog = get_site(); $user = wp_get_current_user(); // Used in the HTML title tag. $title = __( 'Delete Site' ); $parent_file = 'tools.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; echo '
'; echo '

' . esc_html( $title ) . '

'; if ( isset( $_POST['action'] ) && 'deleteblog' === $_POST['action'] && isset( $_POST['confirmdelete'] ) && '1' === $_POST['confirmdelete'] ) { check_admin_referer( 'delete-blog' ); $hash = wp_generate_password( 20, false ); update_option( 'delete_blog_hash', $hash, false ); $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) ); $switched_locale = switch_to_locale( get_locale() ); /* translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those are placeholders. */ $content = __( "Howdy ###USERNAME###, You recently clicked the 'Delete Site' link on your site and filled in a form on that page. If you really want to delete your site, click the link below. You will not be asked to confirm again so only click this link if you are absolutely certain: ###URL_DELETE### If you delete your site, please consider opening a new site here some time in the future! (But remember that your current site and username are gone forever.) Thank you for using the site, All at ###SITENAME### ###SITEURL###" ); /** * Filters the text for the email sent to the site admin when a request to delete a site in a Multisite network is submitted. * * The following strings have a special meaning and will get replaced dynamically: * * - `###USERNAME###` The current user's username. * - `###URL_DELETE###` The link to click on to confirm the site deletion. * - `###SITENAME###` The name of the site. * - `###SITEURL###` The URL to the site. * * @since 3.0.0 * * @param string $content The email text. */ $content = apply_filters( 'delete_site_email_content', $content ); $content = str_replace( '###USERNAME###', $user->user_login, $content ); $content = str_replace( '###URL_DELETE###', $url_delete, $content ); $content = str_replace( '###SITENAME###', get_network()->site_name, $content ); $content = str_replace( '###SITEURL###', network_home_url(), $content ); wp_mail( get_option( 'admin_email' ), sprintf( /* translators: %s: Site title. */ __( '[%s] Delete My Site' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content ); if ( $switched_locale ) { restore_previous_locale(); } ?>

Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.' ), get_network()->site_name ); ?>

'; require_once ABSPATH . 'wp-admin/admin-footer.php';