File: /home/gerold/public_html/wp-content/plugins/snapshot-backups/tpl/modals/whats-new.php
<?php // phpcs:ignore
/**
* "New: Amazon S3 Integration" modal.
*
* @package snapshot
*/
use WPMUDEV\Snapshot4\Helper\Assets;
$assets = new Assets();
wp_nonce_field( 'snapshot_whats_new_seen', '_wpnonce-whats_new_seen' );
?>
<div class="sui-modal sui-modal-md">
<div
role="dialog"
id="snapshot-whats-new-modal"
class="sui-modal-content"
aria-modal="true"
>
<div class="sui-box">
<div class="sui-box-header sui-flatten sui-content-center sui-spacing-top--60">
<figure class="sui-box-banner" aria-hidden="true">
<img
src="<?php echo esc_url( $assets->get_asset( 'img/snapshot-modal-whats-new.png' ) ); ?>"
srcset="<?php echo esc_url( $assets->get_asset( 'img/snapshot-modal-whats-new.png' ) ); ?> 1x, <?php echo esc_url( $assets->get_asset( 'img/snapshot-modal-whats-new@2x.png' ) ); ?> 2x"
alt="<?php esc_attr_e( 'New: Selective Backup Restoration', 'snapshot' ); ?>"
style="margin-top: 0;"
/>
</figure>
<button class="sui-button-icon sui-button-float--right snapshot-whats-new-modal--close" data-modal-close>
<span class="sui-icon-close sui-md" aria-hidden="true"></span>
</button>
<div class="sui-box-title sui-lg" style="padding: 0 10px; white-space: normal;">
<?php esc_html_e( 'New: Selective Backup Restoration', 'snapshot' ); ?>
</div>
</div>
<div class="sui-box-body sui-content-left" style="padding-bottom: 30px; padding-top: 15px;">
<div class="contents">
<p class="sui-description"><?php esc_html_e( 'Snapshot now lets you selectively restore backups. Whether you need to recover just the database, the files, or both, you can now easily restore exactly what you need, saving time and effort.', 'snapshot' ); ?></p>
</div>
</div>
<div class="sui-box-footer sui-content-center sui-flatten" style="padding-bottom: 40px;">
<button class="sui-button snapshot-whats-new-modal--close" id="snapshot-whats-new-modal-button-ok" data-modal-close><?php esc_html_e( 'GOT IT!', 'snapshot' ); ?></button>
</div>
</div>
</div>
</div>