PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / views / navigation / mobile-template.php
wp-staging / views / navigation Last commit date
mobile-template.php 1 month ago web-template.php 1 day ago
mobile-template.php
38 lines
1 <?php
2
3 /**
4 * @see views/navigation/web-template.php
5 * @var string $licenseMessage
6 * @var array $menu
7 * @var string $wpstgAdminUrl
8 */
9 ?>
10
11 <div class="wpstg-navbar-wrapper wpstg-navigation-menu-mobile">
12 <button class="wpstg-navbar-toggler wpstg-mr-10px" type="button" data-wpstg-action="toggle" data-wpstg-target="#wpstg-navbar-menu">
13 <span class="wpstg-hamburger-icon"></span>
14 </button>
15 <div id="wpstg-navbar-menu" class="wpstg-navbar-menu hidden">
16 <?php foreach ($menu as $tabKey => $tab) :?>
17 <div>
18 <a href="javascript:void(0)" data-target-url="<?php echo esc_url($wpstgAdminUrl . $tab['page']); ?>" class="wpstg-button <?php echo ($tab['isActive']) ? 'wpstg--tab--active' : '' ?>" data-target-id="<?php esc_attr_e($tab['id'], 'wp-staging') ?>">
19 <?php
20 if ($tabKey !== 'tab-license') {
21 echo esc_html($tab['tab']);
22 }
23
24 if ($tabKey === 'tab-license' && defined('WPSTGPRO_VERSION')) :
25 echo esc_html($tab['tab']);
26 ?>
27 <span class="wpstg--red-warning"><?php echo esc_html($licenseMessage); ?></span>
28 <?php endif;
29
30 if ($tabKey === 'tab-license' && !defined('WPSTGPRO_VERSION')) : ?>
31 <span class="wpstg--red-warning"><?php echo esc_html($tab['tab']); ?> </span>
32 <?php endif; ?>
33 </a>
34 </div>
35 <?php endforeach; ?>
36 </div>
37 </div>
38