File: /home/gerold/public_html/wp-content/plugins/snapshot-backups/tpl/modals/check/preflight-result.php
<?php // phpcs:ignore
/**
* Modal for preflight check result screen.
*
* @package snapshot
*/
$assets = new \WPMUDEV\Snapshot4\Helper\Assets();
?>
<div class="sui-modal sui-modal-lg">
<div
role="dialog"
id="snapshot-modal-preflight-result"
class="sui-modal-content preflight-modal"
aria-modal="true"
aria-labelledby="modal-snapshot-preflight-result-title"
aria-describedby="modal-snapshot-preflight-result-description"
>
<div class="sui-box">
<div class="sui-box-header sui-flatten sui-content-center header-logo-center">
<div class="sui-box-banner banner-logo-center" role="banner" aria-hidden="true">
<img
src="<?php echo esc_attr( $assets->get_asset( 'img/header-logo-snapshot.png' ) ); ?>"
/>
</div>
<button class="sui-button-icon sui-button-float--right snapshot-pf-confirm-cancel" data-modal-close>
<span class="sui-icon-close sui-md" aria-hidden="true"></span>
</button>
<h3 class="sui-box-title sui-lg"><?php esc_html_e( 'Pre-Backup Inspection Results', 'snapshot' ); ?></h3>
<span id="modal-snapshot-preflight-description" class="sui-description"><?php esc_html_e( "We've identified issues that may affect the backup creation process. Please review and address them as needed. While warnings can be ignored, we recommend addressing errors for a seamless backup.", 'snapshot' ); ?></span>
</div>
<div class="sui-box-body">
<div id="preflight-result-container" class="text-center">
<div id="preflight-result">
</div>
<button class="sui-button sui-button-blue snapshot-pf-skip-to-bakup">
<span class="sui-button-text-default">
<?php esc_html_e( 'Continue Anyway', 'snapshot' ); ?>
</span>
</button>
</div>
</div>
</div>
</div>
</div>