Пример #1
0
function sendHeaders($view)
{
    global $xSitemap, $xConfig, $mainframe;
    switch ($view) {
        case 'xml':
            // XML Sitemaps output
            require_once JPATH_COMPONENT_SITE . '/xmap.xml.php';
            $xmap = new XmapXML($xConfig, $xSitemap);
            break;
        default:
            // Html output
            require_once $mainframe->getPath('front_html');
            $xmap = new XmapHtml($xConfig, $xSitemap);
            break;
    }
    $xmap->sendHeaders();
}