Files
wp-multisite-waas/views/wizards/setup/alert.php
David Stone d88e50df38 Prep Plugin for release on WordPress.org (#23)
* Update translation text domain
* Escape everything that should be escaped.
* Add nonce checks where needed.
* Sanitize all inputs.
* Apply Code style changes across the codebase.
* Correct many deprecation notices.
* Optimize load order of many filters.
* Add Proper Build script
* Use emojii flags
* Fix i18n deprecation  notice for translating too early
* Put all scripts in footer and load async
2025-04-14 11:36:46 -06:00

31 lines
1.3 KiB
PHP

<?php
/**
* Ready view.
*
* @since 2.0.0
*/
?>
<div class="wu-bg-white wu-p-4 wu--mx-6 wu-flex wu-content-center" style="height: 400px;">
<div class="wu-self-center wu-text-center wu-w-full">
<span class="dashicons dashicons-warning wu-w-auto wu-h-auto wu-text-5xl wu-mb-2"></span>
<h1 class="wu-text-gray-800">
<?php esc_html_e('Caution!', 'wp-multisite-waas'); ?>
</h1>
<p class="wu-text-lg wu-text-gray-600 wu-my-4">
<?php esc_html_e('This action is irreversible and may cause unexpected behavior in your data, be sure of what you are doing and have a backup in case of some trouble!', 'wp-multisite-waas'); ?>
</p>
<p class="wu-text-lg wu-text-gray-600 wu-my-4">
<?php esc_html_e('This will forcely rerun our Migration Wizard on your installation. If you tried to migrate after install but your v1 data is missing, this can resolve.', 'wp-multisite-waas'); ?>
</p>
</div>
</div>
<!-- Submit Box -->
<div class="wu-bg-gray-100 wu--m-in wu-mt-4 wu-p-4 wu-overflow-hidden wu-border-t wu-border-solid wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-300">
<span class="wu-float-right">
<button name="next" value="1" class="wu-next-button button button-primary button-large wu-ml-2">
<?php esc_html_e('Proceed', 'wp-multisite-waas'); ?>
</button>
</span>
</div>
<!-- End Submit Box -->