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 / staging-row-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
staging-row-template.php
38 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
11 <table>
12 <tr class="br_stg_tr_template">
13 <td class="stg-tr-name tooltip-html" tooltip="<?php _e('Original name:', 'backup-backup') ?>"></td>
14 <td class="stg-tr-url">
15 <a class="stg-tr-url-el tooltip" tooltip="" href="#!" target="_blank"></a>
16 </td>
17 <td class="stg-tr-size"></td>
18 <td class="stg-tr-server tooltip"></td>
19 <td class="stg-tr-creation"></td>
20 <td class="stg-tr-expiration"><span>00:00:00</span></td>
21 <td class="flex">
22 <div>
23 <img class="tooltip bc-stg-edit-btn hoverable untab" tabindex="-1" tooltip="<?php _e('Edit display name of the staging site', 'backup-backup') ?>" src="<?php echo $this->get_asset('images', 'pen-edit.svg'); ?>" alt="image">
24 </div>
25 <div>
26 <img class="tooltip bc-stg-url-btn hoverable untab" tabindex="-1" tooltip="<?php _e('Copy URL of the staging site', 'backup-backup') ?>" src="<?php echo $this->get_asset('images', 'link-min.png'); ?>" alt="image">
27 </div>
28 <a class="stg-login-btn" href="#" target="_blank">
29 <div class="hoverable tooltip" tooltip="<?php _e('Log into the website without password', 'backup-backup') ?>">
30 <img src="<?php echo $this->get_asset('images', 'log-in.svg'); ?>" width="12px" alt="image">
31 <?php _e('Enter', 'backup-backup') ?>
32 </div>
33 </a>
34 <img class="tooltip bc-stg-remove-btn hoverable" tooltip="<?php _e('Delete this site', 'backup-backup') ?>" src="<?php echo $this->get_asset('images', 'red-close-min.svg'); ?>" alt="image">
35 </td>
36 </tr>
37 </table>
38