AA-Template.php
1 year ago
backup-row-template.php
1 year ago
dropdown-template.php
1 year ago
exclusion-rule-template.php
1 year ago
option-template.php
1 year ago
premium-function-overlay.php
1 year ago
premium-overlay.php
1 year ago
staging-row-template.php
1 year ago
stg-option-template.php
1 year 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" autocomplete="off"> |
| 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 |