16 lines
633 B
PHP
Executable File
16 lines
633 B
PHP
Executable File
<?php
|
|
if (!$_SESSION['user_id']) {
|
|
$smarty->caching = true;
|
|
$smarty->cache_lifetime = 259200; // 86400 - сутки, 2592000 - месяц 259200 три дня
|
|
}
|
|
|
|
|
|
modClass::getIdAndPage();
|
|
$smarty->assign('list2', modClass::pageSubTovar()); //получаем дочерние категории
|
|
$smarty->assign('rootCats', modClass::rootCategoryGet()); //получаем дочерние категории
|
|
$smarty->assign('tovar', modClass::getAllTovar(modClass::$catID));
|
|
//print_r(modClass::getAllTovar(modClass::$catID));
|
|
$smarty->assign('categoryInfo', modClass::getCategoryInfo(modClass::$catID));
|
|
|
|
|
|
?>
|