AA-Modal-Template.php
3 months ago
after-logs-sent.php
3 months ago
backup-progress-modal.php
3 months ago
backup-success-modal.php
3 months ago
bb-disconnect-modal.php
3 months ago
bb-warning-notice.php
3 months ago
before-update-confirm-modal.php
3 months ago
bfs-modal.php
3 months ago
delete-confirm-modal.php
3 months ago
error-modal.php
3 months ago
freeze-loading.php
3 months ago
logs-modal.php
3 months ago
logs-sharing-ask.php
3 months ago
pre-restore-modal.php
3 months ago
prenotice-modal.php
3 months ago
reset-confirm-modal.php
3 months ago
restore-parts-modal.php
3 months ago
restore-progress-modal.php
3 months ago
restore-success-modal.php
3 months ago
staging-delete-confirm-modal.php
3 months ago
staging-error-modal.php
3 months ago
staging-prenotice-modal.php
3 months ago
staging-progress-modal.php
3 months ago
staging-rename-modal.php
3 months ago
staging-success-modal.php
3 months ago
supportive-restore-success-cont.php
3 months ago
supportive-restore-success-modal.php
3 months ago
upload-exist-file-modal.php
3 months ago
upload-invalid-manifest-modal.php
3 months ago
upload-success-modal.php
3 months ago
upload-wrong-file-modal.php
3 months ago
logs-sharing-ask.php
60 lines
| 1 | <?php |
| 2 | |
| 3 | // Namespace |
| 4 | namespace BMI\Plugin\Dashboard; |
| 5 | |
| 6 | // Exit on direct access |
| 7 | if (!defined('ABSPATH')) { |
| 8 | exit; |
| 9 | } |
| 10 | |
| 11 | ?> |
| 12 | |
| 13 | <div class="bmi-modal" id="logs-sharing-ask-modal"> |
| 14 | |
| 15 | <div class="bmi-modal-wrapper no-hpad" style="max-width: 660px; max-width: min(660px, 80vw);"> |
| 16 | <a href="#" class="bmi-modal-close">×</a> |
| 17 | <div class="bmi-modal-content"> |
| 18 | |
| 19 | <div class="mm60 f26 medium black"><?php esc_html_e('Do you agree to share logs?', 'backup-backup') ?></div> |
| 20 | <div class="prenotices"> |
| 21 | |
| 22 | <div class="prenotice prenotic-1"> |
| 23 | <div class="text"> |
| 24 | <ul class="bmi-list-bullet"> |
| 25 | <li><?php esc_html_e('You will directly support development of the plugin.', 'backup-backup') ?></li> |
| 26 | <li><?php esc_html_e('Shared logs and info will be securely stored at our servers.', 'backup-backup') ?></li> |
| 27 | <li><?php esc_html_e('In case of error, we can provide you much better and quicker support.', 'backup-backup') ?></li> |
| 28 | <li><?php esc_html_e('Shared logs can be viewed only by our support team and plugin developers.', 'backup-backup') ?></li> |
| 29 | </ul> |
| 30 | </div> |
| 31 | </div> |
| 32 | |
| 33 | </div> |
| 34 | <div class="mm60 center"> |
| 35 | <div class="cf bmi-ask-logs-btns"> |
| 36 | <div class="left bmi-btn-logs-cont"> |
| 37 | <a href="#" class="btn" id="share-logs-allowed"> |
| 38 | <div class="text text-center"> |
| 39 | <div class="f18 regular"><?php esc_html_e('Yes, I want to help! :)', 'backup-backup') ?></div> |
| 40 | </div> |
| 41 | </a> |
| 42 | </div> |
| 43 | <div class="right bmi-btn-logs-cont"> |
| 44 | <a href="#" class="btn" id="share-logs-not-allowed"> |
| 45 | <div class="text text-center"> |
| 46 | <div class="f18 regular"><?php esc_html_e('No!', 'backup-backup') ?></div> |
| 47 | </div> |
| 48 | </a> |
| 49 | </div> |
| 50 | </div> |
| 51 | <div class="text-grey text-muted mtl f18 inline bmi-modal-underline-link" id="ignore-share-log-request-for-now"> |
| 52 | <?php esc_html_e('Ask me later, run the backup for now', 'backup-backup') ?> |
| 53 | </div> |
| 54 | </div> |
| 55 | |
| 56 | </div> |
| 57 | </div> |
| 58 | |
| 59 | </div> |
| 60 |