<?php
date_default_timezone_set("America/Sao_Paulo");
header("Content-Type: application/xml; charset=UTF-8");
echo '<?xml version="1.0" encoding="UTF-8"?>';
$hoje = date('Y-m-d');
require ('./_app/Config.Inc.php');
$Read = new Read;
?>

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    <url>
        <loc><?= HOME ?>/</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc><?= HOME ?>/a-esamaz</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/eventos</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/transferencia-externa</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/mural</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/trabalhe-conosco</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/consulta-vestibular</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/calendario-academico</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/contato</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/fale-com-o-diretor</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/ouvidoria-esamaz</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/financiamento-estudantil</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/blog</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <url>
        <loc><?= HOME ?>/cursos</loc>
        <lastmod><?= $hoje ?></lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    <?php
    $Read->ExeRead(BD_EVENTOS, "WHERE evento_status = :s ORDER BY evento_titulo ASC", "s=1");
    foreach ($Read->getResult() as $ln):
        extract($ln);
        ?>
        <url>
            <loc><?= HOME ?>/evento/<?= $evento_slug ?></loc>
            <lastmod><?= date('Y-m-d', strtotime($evento_cad_date)) ?></lastmod>
            <changefreq>monthly</changefreq>
            <priority>0.8</priority>
        </url>
    <?php endforeach; ?>
    <?php
    $Read->ExeRead(BD_CURSOS, "WHERE curso_status = :s ORDER BY curso_titulo ASC", "s=1");
    foreach ($Read->getResult() as $ln):
        extract($ln);
        ?>
        <url>
            <loc><?= HOME ?>/curso/<?= $curso_slug ?></loc>
            <lastmod><?= $hoje ?></lastmod>
            <changefreq>monthly</changefreq>
            <priority>0.8</priority>
        </url>
    <?php endforeach; ?>
    <?php
    $Read->ExeRead(BD_POSTS, "WHERE post_status = :s ORDER BY post_date DESC", "s=1");
    foreach ($Read->getResult() as $ln):
        extract($ln);
        ?>
        <url>
            <loc><?= HOME ?>/noticia/<?= $post_slug ?></loc>
            <lastmod><?= date('Y-m-d', strtotime($post_date)) ?></lastmod>
            <changefreq>monthly</changefreq>
            <priority>0.8</priority>
        </url>
    <?php endforeach; ?>
</urlset>