core/api/modules/qsitemap/index.php

28 lines
847 B
PHP
Raw Normal View History

2023-01-02 21:33:36 +05:00
<?php
/*
20.11.2017 добавлен поиск по алиасу (ЧПУ) /alias.html
22.03.2021: Почти все засунуто в ООП
12.04.2022 доработка карты сайта под новый движок
*/
header( 'Content-Type: text/xml' );
ini_set( 'display_errors', 0 );
$smarty -> caching = true;
$smarty -> cache_lifetime = 86400;
#$mod = new main(BD_NAME, BD_TYPE, BD_HOST, BD_USER, BD_PWD, MOD);
$data=date( "Y-m-d" );
$smarty -> assign( 'data', $data );
#читаем товары
$tovar= \DB::getAll( 'SELECT `id` FROM `tovar` WHERE `status`=1' );
$smarty -> assign( 'tovar', $tovar );
#читаем категории товаров
$tovar_category = \DB::getAll( 'SELECT `id` FROM `tovar_category` WHERE `status`=1' );
$smarty -> assign( 'tovar_category', $tovar_category );
?>