File "panel-content.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/v2/panel-content.php
File size: 913 bytes
MIME-type: text/x-php
Charset: utf-8

<?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 -->