22 lines
524 B
PHP
22 lines
524 B
PHP
|
<?php
|
||
|
/*
|
||
|
|
||
|
05.06.2021
|
||
|
Категории магазинов
|
||
|
|
||
|
*/
|
||
|
$mod = new main( $smarty, $settings, $db );
|
||
|
|
||
|
if ( $_POST['act']=="mc" ) $mod -> new_category ( $_POST, $_FILES );//Сохраняем новую категорию
|
||
|
if ( $_POST['act']=="nm" ) $mod -> new_magazin ( $_POST, $_FILES );//Новый магазин
|
||
|
|
||
|
//print_r($mod->list('mag_cat'));
|
||
|
|
||
|
unset($a);
|
||
|
$a['type']='mag_cat';
|
||
|
|
||
|
|
||
|
$smarty->assign('list', $db->get_massiv('content', $a));
|
||
|
|
||
|
//$smarty->assign('list', $mod->list('mag_cat'));
|
||
|
?>
|