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 / templates / exclusion-rule-template.php
backup-backup / includes / dashboard / templates Last commit date
AA-Template.php 4 months ago backup-row-template.php 4 months ago dropdown-template.php 4 months ago exclusion-rule-template.php 4 months ago option-template.php 4 months ago premium-function-overlay.php 4 months ago premium-overlay.php 4 months ago staging-row-template.php 4 months ago stg-option-template.php 4 months ago
exclusion-rule-template.php
35 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="mtll exclude-row exclusion_template">
14 <span><?php esc_html_e("Exclude if string", 'backup-backup'); ?></span>
15 <input class="exclusion_txt" type="text" autocomplete="off">
16 <span class="orr"><?php esc_html_e("appears", 'backup-backup'); ?></span>
17 <div class="exclusion_position inline">
18 <select>
19 <option value="1"><?php esc_html_e("anywhere in", 'backup-backup'); ?></option>
20 <option value="2"><?php esc_html_e("at the beginning of", 'backup-backup'); ?></option>
21 <option value="3"><?php esc_html_e("at the end of", 'backup-backup'); ?></option>
22 </select>
23 </div>
24 <span class="oll orr"><?php esc_html_e("the", 'backup-backup'); ?></span>
25 <div class="exclusion_where inline">
26 <select>
27 <option value="1"><?php esc_html_e("file name", 'backup-backup'); ?></option>
28 <option value="2"><?php esc_html_e("folder name", 'backup-backup'); ?></option>
29 </select>
30 </div>
31 <span class="oll kill-exclusion-rule">
32 <img src="<?php echo esc_url( $this->get_asset('images', 'red-close-min.svg') ); ?>" alt="close-img" class="hoverable" height="15px">
33 </span>
34 </div>
35