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 / bfs-modal.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
bfs-modal.php
77 lines
1 <?php
2
3 // Namespace
4 namespace BMI\Plugin\Dashboard;
5
6 // Exit on direct access
7 if (!defined('ABSPATH')) exit;
8
9 ?>
10
11 <div class="bmi-modal" id="bfs-modal">
12
13 <div class="bmi-modal-wrapper no-hpad" style="max-width: 1080px; max-width: min(1080px, 80vw);">
14 <a href="#" class="bmi-modal-close">×</a>
15 <div class="bmi-modal-content">
16
17 <table>
18 <tbody>
19 <tr>
20
21 <td>
22 <div class="mm60">
23 <img class="center block inline" style="height: 379px; transform: rotateY(180deg);" src="<?php echo esc_url( $this->get_asset('images', 'kitty-cat.svg') ); ?>" alt="kitty">
24 </div>
25 </td>
26 <td>
27 <div class="f20 lh30 mm" style="padding-left: 0;">
28 <div class="f35 semibold mbl">
29 <?php esc_html_e("Wow, your site is", 'backup-backup'); ?> <span class="bold"><?php esc_html_e("FAT!", 'backup-backup'); ?></span>
30 </div>
31
32 <div class="mbl">
33 <?php printf(esc_html(__("For large sites (above %sGB) we point you to the premium plugin, because:", 'backup-backup')), esc_html(BMI_REV)); ?>
34 </div>
35
36 <div class="mbl">
37 <ul>
38 <li class="hasArrowRight"><?php esc_html_e("Big sites tend to be more support heavy", 'backup-backup'); ?></li>
39 <li class="hasArrowRight"><?php esc_html_e("We also need to buy food", 'backup-backup'); ?></li>
40 <li class="hasArrowRight"><?php esc_html_e("The plugin offers many features for free which other plugins don't", 'backup-backup'); ?></li>
41 </ul>
42 </div>
43
44 <div class="mbll">
45 <?php esc_html_e("We made it really affordable and it's a great way to show your appreciation and support the further development of the plugin :) Thank you!", 'backup-backup'); ?>
46 </div>
47
48 <a href="<?php echo esc_url( BMI_AUTHOR_URI ); ?>" target="_blank" class="btn center lh45">
49 <div class="f18"><?php esc_html_e("Yes, that's fair…", 'backup-backup'); ?></div>
50 <div class="f30 bold"><?php esc_html_e("Get premium", 'backup-backup'); ?></div>
51 <div class="f18"><?php esc_html_e("(which includes other cool features too!)", 'backup-backup'); ?></div>
52 </a>
53
54 </div>
55 </td>
56
57 </tr>
58 </tbody>
59 </table>
60
61 <div class="center f18 mt">
62 <span class="text-muted">
63 <?php esc_html_e("Tip: You can also", 'backup-backup'); ?>
64 </span>
65 <span class="hoverable secondary">
66 <a href="#" class="bmi-modal-closer secondary collapser-openner nodec" data-el="#exlucde-parts"><?php esc_html_e("exclude parts from backup", 'backup-backup'); ?></a>
67 </span>
68 <span class="text-muted">
69 , <?php esc_html_e("which makes it smaller so that you stay below this limit.", 'backup-backup'); ?>
70 </span>
71 </div>
72
73 </div>
74 </div>
75
76 </div>
77