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 / logs-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
logs-modal.php
45 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 $downloadLogNote = __('Do not share it to public as it may contain sensitive details, instead use <b>%s1Secure Download%s2</b>','backup-backup');
11 $downloadLogNote = str_replace(
12 ['%s1' , '%s2'],
13 [
14 '<a href="#" class="link download-log-url censored" download="">',
15 '</a>'
16 ],
17 $downloadLogNote
18 );
19 ?>
20
21 <div class="bmi-modal bmi-modal-no-close" id="logs-modal">
22 <div class="bmi-modal-wrapper no-hpad" style="max-width: 780px; max-width: min(780px, 80vw); padding-top: 25px;">
23 <span class="bmi-modal-back">
24 </span>
25 <a href="#" class="bmi-modal-close">×</a>
26 <div class="bmi-modal-content center">
27
28 <div class="f26 bold black modal-title">
29 </div>
30 <div class="f16 align-right">
31 <a href="#" class="nlink hoverable download-log-url uncensored" download="">
32 <?php esc_html_e('Download logs', 'backup-backup') ?>
33 </a>
34 </div>
35 <div class="log-wrapper">
36 <pre></pre>
37 <div class="f14 semibold">
38 <?php echo wp_kses_post( $downloadLogNote ); ?>
39 </div>
40 </div>
41
42 </div>
43 </div>
44 </div>
45