You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
6.0 KiB
150 lines
6.0 KiB
<?php
|
|
/**
|
|
* TO_DO (Andrei) : вынести всю логику из данного файла
|
|
* в отдельный компонент delivery_methods в /shop
|
|
* разметку вынести в твиг файл в /templates/shop/delivery_methods.twig
|
|
**/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/*
|
|
Start : функция для проверки и перевода количества времени доставки
|
|
предоставляемого плагином CDEK в фомате {X} day
|
|
Вход строка формата {X} day
|
|
Выход - строка формата {X} день/дня/дней для русского языка
|
|
*/
|
|
function translate_days($text_in_parentheses) {
|
|
// Проверим язык сайта
|
|
if (function_exists('pll_current_language') && pll_current_language() === 'ru') {
|
|
// Разбиваем строку на число и слово
|
|
if (preg_match('/^(\d+)\s+day$/', $text_in_parentheses, $matches)) {
|
|
$number = (int)$matches[1];
|
|
// Склонение слова "день"
|
|
$remainder10 = $number % 10;
|
|
$remainder100 = $number % 100;
|
|
|
|
if ($remainder10 == 1 && $remainder100 != 11) {
|
|
$day_word = 'день';
|
|
} elseif (in_array($remainder10, [2, 3, 4]) && !in_array($remainder100, [12, 13, 14])) {
|
|
$day_word = 'дня';
|
|
} else {
|
|
$day_word = 'дней';
|
|
}
|
|
|
|
return $number . ' ' . $day_word;
|
|
}
|
|
}
|
|
|
|
// Если не русский язык или формат не соответствует — вернуть как есть
|
|
return $text_in_parentheses;
|
|
}
|
|
|
|
/*
|
|
End : функция для проверки и перевода количества времени доставки
|
|
*/
|
|
|
|
$formatted_destination = isset( $formatted_destination ) ? $formatted_destination : WC()->countries->get_formatted_address( $package['destination'], ', ' );
|
|
$has_calculated_shipping = ! empty( $has_calculated_shipping );
|
|
$show_shipping_calculator = ! empty( $show_shipping_calculator );
|
|
$calculator_text = '';
|
|
|
|
?>
|
|
|
|
|
|
<tr class="woocommerce-shipping-totals shipping">
|
|
<?php
|
|
|
|
?>
|
|
<td data-title="<?php echo esc_attr( $package_name ); ?>" class="modal-map__control modal-map__control--delivery">
|
|
<?php if ( ! empty( $available_methods ) && is_array( $available_methods ) ) : ?>
|
|
<ul id="shipping_method" class="woocommerce-shipping-methods">
|
|
<?php foreach ( $available_methods as $method ) :
|
|
|
|
$pattern = '/^(.*?),\s*\((.*?)\)$/';
|
|
if (preg_match($pattern, $method->label, $matches)) {
|
|
$text_before_comma = trim($matches[1]); // Текст до запятой
|
|
$text_in_parentheses = trim($matches[2]); // Текст в скобках
|
|
} else {
|
|
$text_before_comma = '';
|
|
$text_in_parentheses = '';
|
|
}
|
|
|
|
$text_in_parentheses = translate_days($text_in_parentheses);
|
|
|
|
if ($text_before_comma == 'CDEK: Посылка склад-дверь' || $text_before_comma == 'CDEK: Package warehouse to door'){
|
|
$title = pll__('Курьером');
|
|
}
|
|
else if ($text_before_comma == 'CDEK: Посылка склад-склад' || $text_before_comma == 'CDEK: Package warehouse to warehouse'){
|
|
$title = pll__('Пункт выдачи');
|
|
}
|
|
?>
|
|
|
|
<li data-remote="<?php echo $method->id ?>" class="modal-map-control__item <?php if ($method->id == $chosen_method): ?>active <?php endif; ?>">
|
|
|
|
<label>
|
|
<div class="modal-map-control-item__content">
|
|
<div class="modal-map-control-item__header">
|
|
<div class="modal-map-control-item__circle"><div class="modal-map-control-item-circle__content"></div></div>
|
|
<p class="modal-map-control-item__title">
|
|
<?php
|
|
echo $title;
|
|
?>
|
|
</p>
|
|
</div>
|
|
<div class="modal-map-control-item__description">
|
|
<p class="modal-map-control-item__time"><?php echo $text_in_parentheses; ?></p>
|
|
<p class="modal-map-control-item__price">
|
|
<?php
|
|
$tax_total = array_sum($method->get_taxes());
|
|
echo round($method->cost + $tax_total);
|
|
echo get_woocommerce_currency_symbol();
|
|
?>
|
|
</p>
|
|
</div>
|
|
<?php do_action( 'woocommerce_after_shipping_rate', $method, $index ); ?>
|
|
</div>
|
|
<?php
|
|
if ( 1 < count( $available_methods ) ) {
|
|
printf( '<input type="radio" name="shipping_method[%1$d]" data-index="%1$d" id="shipping_method_%1$d_%2$s" value="%3$s" class="shipping_method visually-hidden" %4$s />', $index, esc_attr( sanitize_title( $method->id ) ), esc_attr( $method->id ), checked( $method->id, $chosen_method, false ) ); // WPCS: XSS ok.
|
|
} else {
|
|
printf( '<input type="hidden" name="shipping_method[%1$d]" data-index="%1$d" id="shipping_method_%1$d_%2$s" value="%3$s" class="shipping_method visually-hidden" />', $index, esc_attr( sanitize_title( $method->id ) ), esc_attr( $method->id ) ); // WPCS: XSS ok.
|
|
}
|
|
?>
|
|
</label>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
<?php
|
|
?>
|
|
</ul>
|
|
<?php if ( is_cart() ) : ?>
|
|
<p class="woocommerce-shipping-destination">
|
|
<?php
|
|
if ( $formatted_destination ) {
|
|
// Translators: $s shipping destination.
|
|
printf( esc_html__( 'Shipping to %s.', 'woocommerce' ) . ' ', '<strong>' . esc_html( $formatted_destination ) . '</strong>' );
|
|
$calculator_text = esc_html__( 'Change address', 'woocommerce' );
|
|
} else {
|
|
echo wp_kses_post( apply_filters( 'woocommerce_shipping_estimate_html', __( 'Shipping options will be updated during checkout.', 'woocommerce' ) ) );
|
|
}
|
|
?>
|
|
</p>
|
|
<?php endif; ?>
|
|
<?php
|
|
else:
|
|
?>
|
|
<p> <?php pll_e('Нет доступных способов доставки. Для отображение доступных методов укажите ваш город.') ?></p>
|
|
|
|
<?php
|
|
|
|
endif;
|
|
?>
|
|
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|