core/api/modules/mc/index.php

19 lines
473 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
/*
06.06.2021
Категории магазинов - публичная часть
*/
$mod = new main( $smarty, $settings, $db );
//получаем инфу о категории
unset($a);
$a['type']='mag_cat';
$a['id']=ID;
$smarty->assign('info', $db->get_massiv('content', $a, '', 1));
//получаем список магазинов
unset($a);
$a['parent']=ID;
$a['type']='mag';
$smarty->assign('list', $db->get_massiv('content', $a));
?>