core/api/modules/cart/index.php

9 lines
325 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
2022-12-24 21:12:23 +05:00
ini_set( 'display_errors', 0 );
//Получаем содержимое корзины
$res=\core::getCart();
$smarty -> assign( 'itogcart', $res['cart'] );
$smarty -> assign( 'summ', $res['summ'] );
//Получить данные об организации
//Получить адреса доставки
2022-12-11 13:55:49 +05:00
?>