Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:41 +09:00
commit 5b1bfe3390
2223 changed files with 561621 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
ob_start();
echo "<?xml version=\"1.0\" encoding=\"" . config_item('charset') . "\"?".">\n";
echo "<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
if (element('sitemap', $view)) {
foreach (element('sitemap', $view) as $key => $row) {
echo "<sitemap>\n";
echo "<loc>" . element('loc', $row) . "</loc>\n";
echo "</sitemap>\n";
}
}
echo "</sitemapindex>\n";
$xml = ob_get_clean();
echo $xml;