
|
Server : Apache System : Linux 182.49.167.72.host.secureserver.net 4.18.0-553.92.1.el8_10.x86_64 #1 SMP Wed Jan 14 06:31:58 EST 2026 x86_64 User : kikai ( 1014) PHP Version : 8.3.30 Disable Function : NONE Directory : /home/kikai/public_html/wp-content/plugins/hummingbird-performance/admin/views/ |
Upload File : |
<?php
/**
* Tabs template
*
* @package Hummingbird
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div role="navigation" class="sui-sidenav">
<ul class="sui-vertical-tabs sui-sidenav-hide-md">
<?php foreach ( $this->get_tabs() as $tab_id => $name ) : ?>
<li class="sui-vertical-tab <?php echo ( $tab_id === $this->get_current_tab() ) ? 'current' : null; ?>">
<a href="<?php echo esc_url( $this->get_tab_url( $tab_id ) ); ?>">
<?php echo esc_html( $name ); ?>
</a>
<?php do_action( 'wphb_admin_after_tab_' . $this->get_slug(), $tab_id ); ?>
</li>
<?php endforeach; ?>
</ul>
<div class="sui-sidenav-hide-lg">
<select class="sui-mobile-nav" style="margin-bottom: 20px">
<?php foreach ( $this->get_tabs() as $tab_id => $name ) : ?>
<option value="<?php echo esc_url( $this->get_tab_url( $tab_id ) ); ?>" <?php selected( $this->get_current_tab(), $tab_id ); ?>>
<?php echo esc_html( $name ); ?>
</option>
<?php endforeach; ?>
</select>
</div>
</div>