<?php echo '<'.'?'.'xml version="1.0" encoding="UTF-8"?>'."\n"; ?>
<urlset
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xhtml="http://www.w3.org/1999/xhtml"
      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<?php foreach($items as $item): ?>
    <url>
        <loc><?php echo $item['loc']; ?></loc>
        <?php if(!empty($item['translation'])): ?>
          <?php foreach($item['translation'] as $translation): ?>
            <xhtml:link rel="alternate" hreflang="<?php echo $translation['language']; ?>" href="<?php echo $translation['url']; ?>" />
          <?php endforeach; ?>
        <?php endif; ?>
        <?php if($item['priority'] !== null): ?><priority><?php echo $item['priority']; ?></priority><?php endif; ?>
        <?php if($item['lastmod'] !== null): ?><lastmod><?php echo date('Y-m-d\TH:i:sP', strtotime($item['lastmod'])); ?></lastmod><?php endif; ?>
        <?php if($item['freq'] !== null): ?><changefreq><?php echo $item['freq']; ?></changefreq><?php endif; ?>
        <?php if(!empty($item['image'])): ?>
          <?php foreach($item['image'] as $image): ?>
            <image:image>
                  <image:loc><?php echo $image['url']; ?></image:loc>
                  <image:caption><?php echo $image['caption']; ?></image:caption>
            </image:image>
          <?php endforeach; ?>
        <?php endif; ?>
    </url>
<?php endforeach; ?>
</urlset>
