PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
yith-woocommerce-compare
/
plugin-fw
/
templates
/
panel
/
v2
<?php /** * The Template for displaying the panel * * @var YIT_Plugin_Panel $panel * @var string $content_id * @package YITH\PluginFramework\Templates */ defined( 'ABSPATH' ) || exit; $content_id = $content_id ?? ''; $collapsed_class = get_user_setting( 'yithFwSidebarFold', 'o' ) === 'f' ? 'yith-plugin-fw__panel__sidebar--collapsed' : ''; ?> <div class="yith-plugin-fw__panel"> <div class="yith-plugin-fw__panel__sidebar <?php echo esc_attr( $collapsed_class ); ?>"> <?php $panel->print_sidebar_header(); $panel->print_tabs_nav(); ?> </div><!-- yith-plugin-fw__panel__sidebar --> <div id="<?php echo esc_attr( $content_id ); ?>" class="<?php echo esc_attr( $panel->get_panel_content_classes() ); ?>"> <?php $panel->render_panel_header_nav(); ?> <?php $panel->render_panel_content_page(); ?> </div><!-- yith-plugin-fw__panel__content--> </div><!-- yith-plugin-fw__panel -->
[+]
woocommerce
[-] panel-content.php
[edit]
[-] panel-header.php
[edit]
[-] panel-nav.php
[edit]
[+]
..
[-] panel-mobile-header.php
[edit]
[-] panel-header-nav.php
[edit]
[-] panel-settings-sections.php
[edit]
[-] your-store-tools-tab.php
[edit]
[-] panel-wp-page-header.php
[edit]
[-] panel-nav-item.php
[edit]
[-] premium-tab.php
[edit]
[-] custom-tab.php
[edit]
[-] panel-option-label-tags.php
[edit]
[-] panel-content-page.php
[edit]
[-] panel-sidebar-header.php
[edit]
[-] panel-wp-page-footer.php
[edit]