PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 2.1.2
Backup Migration v2.1.2
2.1.6 2.1.5.2 trunk 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.6.1 1.4.7 1.4.8 1.4.9 1.4.9.1 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.5.1
backup-backup / includes / dashboard / modals / bb-warning-notice.php
backup-backup / includes / dashboard / modals Last commit date
AA-Modal-Template.php 4 months ago after-logs-sent.php 4 months ago backup-progress-modal.php 4 months ago backup-success-modal.php 4 months ago bb-disconnect-modal.php 4 months ago bb-warning-notice.php 4 months ago before-update-confirm-modal.php 4 months ago bfs-modal.php 4 months ago delete-confirm-modal.php 4 months ago error-modal.php 4 months ago freeze-loading.php 4 months ago logs-modal.php 4 months ago logs-sharing-ask.php 4 months ago pre-restore-modal.php 4 months ago prenotice-modal.php 4 months ago reset-confirm-modal.php 4 months ago restore-parts-modal.php 4 months ago restore-progress-modal.php 4 months ago restore-success-modal.php 4 months ago staging-delete-confirm-modal.php 4 months ago staging-error-modal.php 4 months ago staging-prenotice-modal.php 4 months ago staging-progress-modal.php 4 months ago staging-rename-modal.php 4 months ago staging-success-modal.php 4 months ago supportive-restore-success-cont.php 4 months ago supportive-restore-success-modal.php 4 months ago upload-exist-file-modal.php 4 months ago upload-invalid-manifest-modal.php 4 months ago upload-success-modal.php 4 months ago upload-wrong-file-modal.php 4 months ago
bb-warning-notice.php
26 lines
1 <?php
2
3 // Disallow direct access
4 if (!defined('ABSPATH')) exit;
5
6
7 $preorder = 'https://backupbliss.com/pricing';
8
9 ?>
10 <div <?php echo isset($global_warning) ? 'id="bb-warning-notice"' : ''; ?>>
11 <div class="bb-upload-fail-warning space-between flexcenter" <?php echo isset($global_warning) ? 'style="margin-bottom: 15px"' : ''; ?>>
12 <div class="warning-text space-between flexcenter">
13 <img src="<?php echo esc_url( $this->get_asset('images', 'warning-white.png') ); ?>" alt="warning" class="warning-img">
14 <span class="f20">
15 <?php echo wp_kses_post( $error_message ); ?>
16 </span>
17 </div>
18 <div class="get-more-storage">
19 <a href="<?php echo esc_url( BMI_AUTHOR_URI ); ?>" target="_blank"
20 class="f16 bold nodec black"><?php esc_html_e("Get more storage now", 'backup-backup'); ?></a>
21 </div>
22 </div>
23 <?php if (isset($global_warning)): ?>
24 <div class="bb-credit-text">By Backup & Migration [<a href="#" style="text-decoration: none;" id="bb-upload-fail-dismiss">X</a>]</div>
25 <?php endif ?>
26 </div>