English
Kamil Dudka

Webové komponenty

Detail souboru

Jméno:Stáhnoutsitemap.xml.xml [Stáhnout]
Umístění: src > page
Velikost:559 B
Poslední změna:2022-09-09 13:06

Zdrojový kód

<?xml version="1.0" encoding="utf-8"?>
<page id='sitemap.xml' visible='no'>
  <name />
  <pageInit>
<?php
// Update SiteMap.php in cache directory if needed
ClassFactory::importClass('PageTransform');
$smCache = $docRoot.$config->cacheDir().'/SiteMap.php';
PageTransform::buildIfNeeded($smCache, 'SiteMapBuilder.xsl');
 
// Process SiteMap.php and send to client
header('Content-type: text/xml');
echo '<'.'?xml version="1.0" encoding="UTF-8"?'.">\n"; // Do not concatenate string on this line
require($smCache);
exit();
?>
  </pageInit>
  <MainPage />
</page>