AA-Modal-Template.php
2 years ago
after-logs-sent.php
2 years ago
backup-error-modal.php
2 years ago
backup-progress-modal.php
2 years ago
backup-success-modal.php
2 years ago
bfs-modal.php
2 years ago
delete-confirm-modal.php
2 years ago
freeze-loading.php
2 years ago
logs-sharing-ask.php
2 years ago
pre-restore-modal.php
2 years ago
prenotice-modal.php
2 years ago
reset-confirm-modal.php
2 years ago
restore-error-modal.php
2 years ago
restore-progress-modal.php
2 years ago
restore-success-modal.php
2 years ago
staging-delete-confirm-modal.php
2 years ago
staging-error-modal.php
2 years ago
staging-prenotice-modal.php
2 years ago
staging-progress-modal.php
2 years ago
staging-rename-modal.php
2 years ago
staging-success-modal.php
2 years ago
upload-exist-file-modal.php
2 years ago
upload-invalid-manifest-modal.php
2 years ago
upload-success-modal.php
2 years ago
upload-wrong-file-modal.php
2 years 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 $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 _e("Wow, your site is", 'backup-backup'); ?> <span class="bold"><?php _e("FAT!", 'backup-backup'); ?></span> |
| 30 | </div> |
| 31 | |
| 32 | <div class="mbl"> |
| 33 | <?php printf(__("For large sites (above %sGB) we point you to the premium plugin, because:", 'backup-backup'), BMI_REV); ?> |
| 34 | </div> |
| 35 | |
| 36 | <div class="mbl"> |
| 37 | <ul> |
| 38 | <li class="hasArrowRight"><?php _e("Big sites tend to be more support heavy", 'backup-backup'); ?></li> |
| 39 | <li class="hasArrowRight"><?php _e("We also need to buy food", 'backup-backup'); ?></li> |
| 40 | <li class="hasArrowRight"><?php _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 _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 BMI_AUTHOR_URI; ?>" target="_blank" class="btn center lh45"> |
| 49 | <div class="f18"><?php _e("Yes, that’s fair…", 'backup-backup'); ?></div> |
| 50 | <div class="f30 bold"><?php _e("Get premium", 'backup-backup'); ?></div> |
| 51 | <div class="f18"><?php _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 _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 _e("exclude parts from backup", 'backup-backup'); ?></a> |
| 67 | </span> |
| 68 | <span class="text-muted"> |
| 69 | , <?php _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 |