| Current Path : /home/xbodynamge/lebauwcentre/wp-content/themes/customify/woocommerce/single-product/tabs/ |
| Current File : /home/xbodynamge/lebauwcentre/wp-content/themes/customify/woocommerce/single-product/tabs/tabs.php |
<?php
/**
* Single Product tabs
*
* @see https://docs.woocommerce.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.4.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Filter tabs and allow third parties to add their own.
*
* Each tab is an array containing title, callback and priority.
*
* @see woocommerce_default_product_tabs()
*/
$tabs = apply_filters( 'woocommerce_product_tabs', array() );
if ( ! empty( $tabs ) ) :
$classes = array( 'wc-single-tabs woocommerce-tabs wc-tabs-wrapper' );
$tab_type = Customify()->get_setting( 'wc_single_product_tab' );
$classes[] = 'wc-tabs-' . Customify()->get_setting( 'wc_single_product_tab' );
?>
<div class="<?php echo esc_attr( join( ' ', $classes ) ); ?>">
<?php
if ( '' == $tab_type || in_array( $tab_type, array( 'horizontal', 'vertical' ) ) ) { // phpcs:ignore
?>
<ul class="tabs wc-tabs" role="tablist">
<?php foreach ( $tabs as $key => $tab ) : ?>
<li class="<?php echo esc_attr( $key ); ?>_tab" id="tab-title-<?php echo esc_attr( $key ); ?>" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>">
<a href="#tab-<?php echo esc_attr( $key ); ?>"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', esc_html( $tab['title'] ), $key ); ?></a>
</li>
<?php endforeach; ?>
</ul>
<div class="wc-tabs-contents">
<?php foreach ( $tabs as $key => $tab ) : ?>
<div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--<?php echo esc_attr( $key ); ?> panel entry-content wc-tab" id="tab-<?php echo esc_attr( $key ); ?>" role="tabpanel" aria-labelledby="tab-title-<?php echo esc_attr( $key ); ?>">
<?php if ( isset( $tab['callback'] ) ) {
call_user_func( $tab['callback'], $key, $tab ); } ?>
</div>
<?php endforeach; ?>
</div>
<?php
} else {
$index = 0;
foreach ( $tabs as $key => $tab ) : ?>
<section class="tab-section <?php echo esc_attr( $key ); ?>_tab <?php echo ( 0 == $index ) ? 'active' : ''; ?>" id="tab-title-<?php echo esc_attr( $key ); ?>" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>">
<h2 class="tab-section-heading"><a href="#tab-<?php echo esc_attr( $key ); ?>"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', esc_html( $tab['title'] ), $key ); ?></a></h2>
<div class="tab-section-content" id="tab-<?php echo esc_attr( $key ); ?>" role="tabpanel" aria-labelledby="tab-title-<?php echo esc_attr( $key ); ?>">
<?php if ( isset( $tab['callback'] ) ) {
call_user_func( $tab['callback'], $key, $tab ); } ?>
</div>
</section>
<?php
$index ++;
endforeach;
}
?>
</div>
<?php endif; ?>