PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 1.3.5
Backup Migration v1.3.5
2.1.7 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 2 years ago backup-row-template.php 2 years ago dropdown-template.php 2 years ago exclusion-rule-template.php 2 years ago option-template.php 2 years ago premium-overlay.php 2 years ago staging-row-template.php 2 years ago stg-option-template.php 2 years 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 _e("Exclude if string", 'backup-backup'); ?></span>
15 <input class="exclusion_txt" type="text">
16 <span class="orr"><?php _e("appears", 'backup-backup'); ?></span>
17 <div class="exclusion_position inline">
18 <select>
19 <option value="1"><?php _e("anywhere in", 'backup-backup'); ?></option>
20 <option value="2"><?php _e("at the beginning of", 'backup-backup'); ?></option>
21 <option value="3"><?php _e("at the end of", 'backup-backup'); ?></option>
22 </select>
23 </div>
24 <span class="oll orr"><?php _e("the", 'backup-backup'); ?></span>
25 <div class="exclusion_where inline">
26 <select>
27 <option value="1"><?php _e("file name", 'backup-backup'); ?></option>
28 <option value="2"><?php _e("folder name", 'backup-backup'); ?></option>
29 </select>
30 </div>
31 <span class="oll kill-exclusion-rule">
32 <img src="<?php echo $this->get_asset('images', 'red-close-min.svg') ?>" alt="close-img" class="hoverable" height="15px">
33 </span>
34 </div>
35