https://t.me/AnonymousX5
Server : Apache
System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64
User : medchoco ( 2906)
PHP Version : 8.3.16
Disable Function : mail
Directory :  /home/medchoco/www/wp-content/themes/puca/vc_templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/medchoco/www/wp-content/themes/puca/vc_templates/tbay_supermaket2_categoriestabs_2.php
<?php

$tabs_style = $el_class = $css = $css_animation = $disable_mobile = '';
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
$loop_type = $auto_type = $autospeed_type = '';

$cat_operator = 'IN';
extract( $atts );
$_id = puca_tbay_random_key();

if (isset($categoriestabs) && !empty($categoriestabs)):
    $categoriestabs = (array) vc_param_group_parse_atts( $categoriestabs );

$i = 0;

if( isset($responsive_type) ) {
    $screen_desktop          =      isset($screen_desktop) ? $screen_desktop : 4;
    $screen_desktopsmall     =      isset($screen_desktopsmall) ? $screen_desktopsmall : 3;
    $screen_tablet           =      isset($screen_tablet) ? $screen_tablet : 3;
    $screen_mobile           =      isset($screen_mobile) ? $screen_mobile : 1;
} else {
    $screen_desktop          =      $columns;
    $screen_desktopsmall     =      3;
    $screen_tablet           =      3;
    $screen_mobile           =      1;  
}

$cat_array = array();
$args = array(
    'type' => 'post',
    'child_of' => 0,
    'orderby' => 'name',
    'order' => 'ASC',
    'hide_empty' => false,
    'hierarchical' => 1,
    'taxonomy' => 'product_cat'
);

$categories = get_categories( $args );
puca_tbay_get_category_childs( $categories, 0, 0, $cat_array );

$cat_array_id   = array();
foreach ($cat_array as $key => $value) {
    $cat_array_id[]   = $value;
}

$active_theme = puca_tbay_get_part_theme();

$css = isset( $atts['css'] ) ? $atts['css'] : '';
$el_class = isset( $atts['el_class'] ) ? $atts['el_class'] : '';

$class_to_filter = 'widget widget-products widget-categoriestabs widget-categoriestabs-2 '. $tabs_style .' ';

if( $ajax_tabs === 'yes' ) { 
    $el_class           .= ' tbay-product-categories-tabs-ajax ajax-active';

    $responsive = array(
        'desktop'       => $screen_desktop,
        'desktopsmall'  => $screen_desktopsmall,
        'tablet'        => $screen_tablet,
        'mobile'        => $screen_mobile,
    );

    $data_carousel = array(
        'nav_type'          => $nav_type,
        'pagi_type'         => $pagi_type,
        'loop_type'         => $loop_type,
        'auto_type'         => $auto_type,
        'autospeed_type'    => $autospeed_type,
        'disable_mobile'    => $disable_mobile,
        'rows'              => $rows,
    );

    
    $json = array(
        'cat_operator'                  => $cat_operator,
        'limit'                         => $number,
        'responsive'                    => $responsive, 
        'columns'                       => $columns, 
        'layout_type'                   => $layout_type,
        'data_carousel'                 => $data_carousel,
    ); 

    $json = apply_filters( 'puca_ajax_vc_supermaket2_categoriestabs_2', $json, 10, 1 );

    $encoded_settings  = wp_json_encode( $json );

    $tabs_data = 'data-atts="'. esc_attr( $encoded_settings ) .'"';
} else {
    $tabs_data = '';
}

$class_to_filter .= vc_shortcode_custom_css_class( $css, ' ' ) . $this->getExtraClass( $el_class ) . $this->getCSSAnimation( $css_animation );
$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, $class_to_filter, $this->settings['base'], $atts ); 

?>


    <div class="<?php echo esc_attr($css_class); ?>">
        <?php if( (isset($subtitle) && $subtitle) || (isset($title) && $title)  ): ?>
            <h3 class="widget-title">
                <?php if ( isset($title) && $title ): ?>
                    <span><?php echo esc_html( $title ); ?></span>
                <?php endif; ?>
                <?php if ( isset($subtitle) && $subtitle ): ?>
                    <span class="subtitle"><?php echo esc_html($subtitle); ?></span>
                <?php endif; ?>
            </h3>
        <?php endif; ?>

        <div class="widget-content woocommerce">

            <div class="row">

                <?php 

                    if( isset($banner_positions) ) {
                        switch ($banner_positions) {
                            case 'left':
                                $padding = 'right';
                                break;       

                            case 'right':
                                $padding = 'left';
                                break;
                            
                            default:
                                $padding = 'right';
                                break;
                        }
                    }

                ?>

                <div class="no-padding-<?php echo (isset($padding)) ? esc_attr($padding) : ''; ?> pull-<?php echo (isset($banner_positions)) ? esc_attr($banner_positions) : ''; ?> text-<?php echo (isset($banner_positions)) ? esc_attr($banner_positions) : ''; ?>  vc_fluid col-md-4 hidden-sm tab-banner">


                    <?php 

                        $img = wp_get_attachment_image_src($banner,'full'); 
                    ?>

                    <?php if ( !empty($img) && isset($img[0]) ): ?>
                        <?php if(isset($banner_link) && !empty($banner_link)) : ?>
                            <div class="img-banner">
                                <a href="<?php echo esc_url($banner_link); ?>">
                                    <?php 
                                        $image_alt  = get_post_meta( $banner, '_wp_attachment_image_alt', true);
                                    ?>
                                    <img src="<?php echo esc_url($img[0]); ?>" alt="<?php echo esc_attr($image_alt); ?>">
                                </a>
                            </div>
                        <?php else : ?>
                            <div class="img-banner">
                                <?php 
                                    $image_alt  = get_post_meta( $banner, '_wp_attachment_image_alt', true);
                                ?>
                                <img src="<?php echo esc_url($img[0]); ?>" alt="<?php echo esc_attr($image_alt); ?>">
                            </div>
                        <?php endif; ?>
                    <?php endif; ?>

                </div>

                <div class="no-padding-<?php echo (isset($banner_positions)) ? esc_attr($banner_positions) : ''; ?> tab-content-menu vc_fluid col-md-8">
                    <div class="content">
                        <ul role="tablist" class="product-categories-tabs-title tabs-list nav nav-tabs" <?php echo trim($tabs_data); ?>>
                            <?php $_count = 0; foreach ($categoriestabs as $tab) : ?>

                            <?php 

                                $type_product = $tab['producttabs']; 
                                if( !in_array($tab['category'], $cat_array_id) ) {
                                    $slug            = '';
                                } else {
                                    $category   = get_term_by( 'id', $tab['category'], 'product_cat' );
                                    $slug       = puca_get_transliterate($category->slug);   
                                }


                                if( isset($show_catname_tabs) && $show_catname_tabs == 'yes' ) {

                                    if( !in_array($tab['category'], $cat_array_id) ) {
                                        $tab_name = esc_html__('All category','puca');
                                    } else {
                                        $tab_name   = $category->name;         
                                    }


                                } else {
                                    $tab_slug = (isset($tab['producttabs'])) ? $tab['producttabs'] : '';
                                    switch ($tab_slug) {
                                        case 'recent_product':
                                            $tab_name = esc_html__('New Arrivals', 'puca');
                                            break;                            
                                        case 'featured_product':
                                            $tab_name = esc_html__('Featured Products', 'puca');
                                            break;                           
                                        case 'best_selling':
                                            $tab_name = esc_html__('Best Sellers', 'puca');
                                            break;                            
                                        case 'top_rate':
                                            $tab_name = esc_html__('Top Rated', 'puca');
                                            break;                            
                                        case 'on_sale':
                                            $tab_name = esc_html__('On Sale', 'puca');
                                            break;
                                        
                                        default:
                                            $tab_name = esc_html__('New Arrivals', 'puca');
                                            break;
                                    }
                                }
                            
                            ?> 

                            <?php 
                                $li_class = ($_count == 0 ? ' class=active' : '');
                            ?>
                            <li <?php echo trim( $li_class ); ?>>
                                <a href="#tab-<?php echo esc_attr($_id);?>-<?php echo esc_attr($_count); ?>" data-value="<?php echo esc_attr($slug); ?>" data-type="<?php echo esc_attr($type_product); ?>" data-toggle="tab">
                                    <?php echo esc_html($tab_name); ?>
                                </a>
                            </li>

                            <?php $_count++; endforeach; ?> 
                        </ul>

                        <div class="widget-inner">

                            <div class="tab-content-product">
                                <div class="tbay-addon-content tab-content">
                                    <?php $_count = 0; foreach ($categoriestabs as $tab) : ?>


                                        <?php 

                                            if( !in_array($tab['category'], $cat_array_id) ) {
                                                $link            = get_permalink( wc_get_page_id( 'shop' ) );
                                            } else {
                                                $category       = get_term_by( 'id', $tab['category'], 'product_cat' );
                                                $cat_category   = $category->slug;
                                                $link           = get_term_link( $category->term_id, 'product_cat' );
                                            }

                                            $tab_active = ($_count == 0) ? ' active active-content current' : '';
                                        ?>

                                        <div id="tab-<?php echo esc_attr($_id);?>-<?php echo esc_attr($_count); ?>" class="tab-pane animated fadeIn <?php echo esc_attr( $tab_active ); ?>">

                                            <div class="hidden-xs tab-menu">
                                                <div class="tab-menu-wrapper">
                                                    <?php 
                                                        $menu_id = $tab['nav_menu'];
                                                        puca_get_custom_menu($menu_id);
                                                    ?>
                                                </div>
                                            </div>                        


                                            <div class="tab-ajax-content">
                                            <?php 
                                                if ($_count === 0 || $ajax_tabs !== 'yes') {
                                                    $type = $tab['producttabs'];

                                                    if( !in_array($tab['category'], $cat_array_id) ) {
                                                        $loop            = puca_tbay_get_products( -1 , $type, 1, $number );
                                                    } else {
                                                        $category       = get_term_by( 'id', $tab['category'], 'product_cat' );
                                                        $cat_category   = $category->slug;
                                                        $loop           = puca_tbay_get_products( array($cat_category), $type, 1, $number );
                                                    }

 
                                                    wc_get_template( 'layout-products/'.$active_theme.'/'.$layout_type.'.php' , array( 'loop' => $loop, 'data_loop' => $loop_type, 'data_auto' => $auto_type, 'data_autospeed' => $autospeed_type, 'columns' => $columns, 'rows' => $rows, 'pagi_type' => $pagi_type, 'nav_type' => $nav_type,'responsive_type' => $responsive_type,'screen_desktop' => $screen_desktop,'screen_desktopsmall' => $screen_desktopsmall,'screen_tablet' => $screen_tablet,'screen_mobile' => $screen_mobile, 'number' => $number, 'disable_mobile' => $disable_mobile ) ); 
                                                } 
                                            ?>
                                            </div>


                                            <?php if( isset($tabs_view_more) && $tabs_view_more == 'yes') { ?>
                                                <a href="<?php echo esc_url( $link ); ?>" class="btn btn-view-all"><?php echo esc_html__('All products', 'puca'); ?></a>
                                            <?php } ?>

                                        </div>

                                    <?php $_count++; endforeach; ?>
                                </div>
                            </div>
                        </div>
                    </div>    
                </div>


            </div>

        
        </div>
    </div>

<?php endif; /*close without tabs*/ ?>

https://t.me/AnonymousX5 - 2025