14 lines
461 B
PHP
Executable File
14 lines
461 B
PHP
Executable File
<?php
|
|
//604800 - неделя
|
|
header( 'Content-Type: text/xml' );
|
|
header("Cache-Control: public");
|
|
header("Expires: " . date("r", time() + 604800));
|
|
ini_set( 'display_errors', 0 );
|
|
$smarty -> caching = true;
|
|
$smarty -> cache_lifetime = 604800;
|
|
$data=date( "Y-m-d" );
|
|
$smarty -> assign( 'data', $data );
|
|
#читаем карту сайта
|
|
$link= \DB::getAll( 'SELECT `link` FROM `sitemap` WHERE `status`=1' );
|
|
$smarty -> assign( 'link', $link );
|
|
?>
|