Files

256 lines
15 KiB
PHP

<?php
if (!defined('ABSPATH')) :
exit; // Exit if accessed directly
endif;
global $nasa_opt;
$dokan_appearance = get_option('dokan_appearance');
if (!isset($nasa_opt['dokan_header']) || $nasa_opt['dokan_header'] == '') :
$profile_layout = empty($dokan_appearance['store_header_template']) ? 'default' : $dokan_appearance['store_header_template'];
else:
$profile_layout = $nasa_opt['dokan_header'];
endif;
$layout = get_theme_mod('store_layout', 'left');
if ($layout === 'no' && $profile_layout == 'ns-1') :
$profile_layout = 'default';
endif;
$store_user = dokan()->vendor->get(get_query_var('author'));
$store_info = $store_user->get_shop_info();
$social_info = $store_user->get_social_profiles();
$store_tabs = dokan_get_store_tabs($store_user->get_id());
$social_fields = dokan_get_social_profile_fields();
$dokan_store_times = !empty($store_info['dokan_store_time']) ? $store_info['dokan_store_time'] : [];
$current_time = dokan_current_datetime();
$today = strtolower($current_time->format('l'));
$store_address = dokan_get_seller_short_address($store_user->get_id(), false);
$dokan_store_time_enabled = isset($store_info['dokan_store_time_enabled']) ? $store_info['dokan_store_time_enabled'] : '';
$store_open_notice = isset($store_info['dokan_store_open_notice']) && !empty($store_info['dokan_store_open_notice']) ? $store_info['dokan_store_open_notice'] : __('Store Open', 'elessi-theme');
$store_closed_notice = isset($store_info['dokan_store_close_notice']) && !empty($store_info['dokan_store_close_notice']) ? $store_info['dokan_store_close_notice'] : __('Store Closed', 'elessi-theme');
$show_store_open_close = dokan_get_option('store_open_close', 'dokan_appearance', 'on');
$general_settings = get_option('dokan_general', array());
$banner_width = dokan_get_vendor_store_banner_width();
$banner_src = !in_array($profile_layout, array('layout3', 'ns-1')) ? $store_user->get_banner() : false;
$profile_class = 'profile-info-box profile-layout-' . $profile_layout;
$profile_img_class = 'profile-img-circle';
if (in_array($profile_layout, array('layout1', 'layout3'))) :
$profile_img_class = 'profile-img-square';
endif;
if ('layout3' === $profile_layout) :
unset($store_info['banner']);
$no_banner_class = ' profile-frame-no-banner';
$no_banner_class_tabs = ' dokan-store-tabs-no-banner';
else :
$no_banner_class = '';
$no_banner_class_tabs = '';
endif;
$style = '';
if (in_array($profile_layout, array('ns-2', 'ns-3', 'ns-4'))) :
if ($banner_src) :
$style = ' style="background-image:url(' . esc_url($banner_src) . '); background-position: center center; background-repeat: no-repeat; background-size:cover;"';
$profile_class .= ' has-bgimg';
endif;
$banner_src = false;
endif;
?>
<div class="dokan-profile-frame-wrapper wrap-<?php echo esc_attr($profile_layout); ?>">
<div class="profile-frame<?php echo esc_attr($no_banner_class); ?>">
<div class="<?php echo esc_attr($profile_class); ?>"<?php echo $style; ?>>
<?php if ($banner_src) : ?>
<img src="<?php echo esc_url($banner_src); ?>"
alt="<?php echo esc_attr($store_user->get_shop_name()); ?>"
title="<?php echo esc_attr($store_user->get_shop_name()); ?>"
class="profile-info-img" />
<?php elseif (!in_array($profile_layout, array('ns-1', 'ns-2', 'ns-3'))) : ?>
<div class="profile-info-img dummy-image">&nbsp;</div>
<?php endif; ?>
<div class="profile-info-summery-wrapper dokan-clearfix">
<div class="profile-info-summery">
<div class="profile-info-head">
<div class="profile-img <?php echo esc_attr($profile_img_class); ?>">
<img src="<?php echo esc_url($store_user->get_avatar()) ?>"
alt="<?php echo esc_attr($store_user->get_shop_name()) ?>"
size="150" />
</div>
<?php if (in_array($profile_layout, array('default', 'ns-2')) && !empty($store_user->get_shop_name())) : ?>
<h1 class="store-name">
<?php echo esc_html($store_user->get_shop_name()); ?> <?php apply_filters('dokan_store_header_after_store_name', $store_user); ?>
</h1>
<?php endif; ?>
<?php if (in_array($profile_layout, array('ns-2'))) : ?>
<div class="dokan-store-rating">
<i class="fas fa-star"></i>
<?php echo wp_kses_post(dokan_get_readable_seller_rating($store_user->get_id())); ?>
</div>
<?php endif; ?>
</div>
<div class="profile-info">
<?php if (!in_array($profile_layout, array('default', 'ns-2')) && !empty($store_user->get_shop_name())) : ?>
<h1 class="store-name"><?php echo esc_html($store_user->get_shop_name()); ?></h1>
<?php endif; ?>
<ul class="dokan-store-info">
<?php if (!dokan_is_vendor_info_hidden('address') && isset($store_address) && !empty($store_address)) : ?>
<li class="dokan-store-address"><i class="fas fa-map-marker-alt"></i>
<?php echo wp_kses_post($store_address); ?>
</li>
<?php endif; ?>
<?php if (!dokan_is_vendor_info_hidden('phone') && !empty($store_user->get_phone())) : ?>
<li class="dokan-store-phone">
<i class="fas fa-mobile-alt"></i>
<a href="tel:<?php echo esc_html($store_user->get_phone()); ?>"><?php echo esc_html($store_user->get_phone()); ?></a>
</li>
<?php endif; ?>
<?php if (!dokan_is_vendor_info_hidden('email') && $store_user->show_email() == 'yes') : ?>
<li class="dokan-store-email">
<i class="far fa-envelope"></i>
<a href="mailto:<?php echo esc_attr(antispambot($store_user->get_email())); ?>"><?php echo esc_attr(antispambot($store_user->get_email())); ?></a>
</li>
<?php endif; ?>
<?php if (!in_array($profile_layout, array('ns-2'))) : ?>
<li class="dokan-store-rating">
<i class="fas fa-star"></i>
<?php echo wp_kses_post(dokan_get_readable_seller_rating($store_user->get_id())); ?>
</li>
<?php endif; ?>
<?php if ($show_store_open_close == 'on' && $dokan_store_time_enabled == 'yes') : ?>
<li class="dokan-store-open-close">
<i class="fas fa-shopping-cart"></i>
<div class="store-open-close-notice">
<?php if (dokan_is_store_open($store_user->get_id())) : ?>
<span class='store-notice'><?php echo esc_attr($store_open_notice); ?></span>
<?php else : ?>
<span class='store-notice'><?php echo esc_attr($store_closed_notice); ?></span>
<?php endif; ?>
<span class="fa fa-angle-down"></span>
<div id="vendor-store-times">
<div class="store-times-heading">
<i class="fas fa-calendar-day"></i>
<h4><?php esc_html_e('Weekly Store Timing', 'elessi-theme'); ?></h4>
</div>
<?php
foreach (dokan_get_translated_days() as $day_key => $day) :
$store_info = !empty($dokan_store_times[$day_key]) ? $dokan_store_times[$day_key] : [];
$store_status = !empty($store_info['status']) ? $store_info['status'] : 'close';
?>
<div class="store-time-tags">
<div class="store-days <?php echo $today === $day_key ? 'current_day' : ''; ?>">
<?php echo esc_html($day); ?>
</div>
<div class="store-times">
<?php if ($store_status === 'close') : ?>
<span class="store-close">
<?php esc_html_e('CLOSED', 'elessi-theme'); ?>
</span>
<?php endif; ?>
<?php
// Get store times.
$opening_times = !empty($store_info['opening_time']) ? $store_info['opening_time'] : [];
// If dokan pro doesn't exists then get single item.
if (!dokan()->is_pro_exists()) :
$opening_times = !empty($opening_times) && is_array($opening_times) ? $opening_times[0] : [];
endif;
$times_length = !empty($opening_times) ? count((array) $opening_times) : 0;
// Get formatted times.
for ($index = 0; $index < $times_length; $index++) :
$formatted_opening_time = $current_time->modify($store_info['opening_time'][$index]);
$formatted_closing_time = $current_time->modify($store_info['closing_time'][$index]);
// check if store is open or closed time is valid.
if (empty($formatted_opening_time) || empty($formatted_closing_time)) :
continue;
endif;
$exact_time = '';
if ($today === $day_key && $formatted_opening_time <= $current_time && $formatted_closing_time >= $current_time) :
$exact_time = 'current_time';
endif;
?>
<span class="store-open <?php echo $exact_time; ?>" href="#">
<?php echo esc_html($formatted_opening_time->format(wc_time_format()) . ' - ' . $formatted_closing_time->format(wc_time_format())); ?>
</span>
<?php endfor; ?>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</li>
<?php endif; ?>
<?php do_action('dokan_store_header_info_fields', $store_user->get_id()); ?>
</ul>
<?php if ($social_fields) : ?>
<div class="store-social-wrapper">
<ul class="store-social">
<?php foreach ($social_fields as $key => $field) : ?>
<?php if (!empty($social_info[$key])) : ?>
<li>
<a href="<?php echo esc_url($social_info[$key]); ?>" target="_blank">
<i class="fab fa-<?php echo esc_attr($field['icon']); ?>"></i>
</a>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
</div><!-- .profile-info -->
</div><!-- .profile-info-summery -->
</div><!-- .profile-info-summery-wrapper -->
</div><!-- .profile-info-box -->
</div><!-- .profile-frame -->
<?php if ($store_tabs) : ?>
<div class="dokan-store-tabs<?php echo esc_attr($no_banner_class_tabs); ?>">
<ul class="dokan-list-inline">
<?php foreach ($store_tabs as $key => $tab) : ?>
<?php if ($tab['url']) : ?>
<li>
<a href="<?php echo esc_url($tab['url']); ?>">
<?php echo esc_html($tab['title']); ?>
</a>
</li>
<?php endif; ?>
<?php endforeach; ?>
<?php do_action('dokan_after_store_tabs', $store_user->get_id()); ?>
</ul>
</div>
<?php endif; ?>
</div>