bludit/bl-plugins/sitemap/plugin.php

85 lines
1.7 KiB
PHP
Raw Normal View History

2016-01-08 00:43:09 +01:00
<?php
class pluginSitemap extends Plugin {
private function createXML()
{
global $Site;
global $dbPages;
global $Url;
$xml = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
$xml .= '<url>';
$xml .= '<loc>'.$Site->url().'</loc>';
$xml .= '</url>';
// Get keys of pages
$keys = array_keys($dbPages->db);
foreach($keys as $pageKey) {
// Create the page object from the page key
$page = buildPage($pageKey);
$xml .= '<url>';
$xml .= '<loc>'.$page->permalink().'</loc>';
$xml .= '<lastmod>'.$page->dateRaw(SITEMAP_DATE_FORMAT).'</lastmod>';
$xml .= '<changefreq>daily</changefreq>';
$xml .= '</url>';
2016-01-08 00:43:09 +01:00
}
$xml .= '</urlset>';
2016-01-08 00:43:09 +01:00
// New DOM document
$doc = new DOMDocument();
$doc->formatOutput = true;
$doc->loadXML($xml);
$doc->save($this->workspace().'sitemap.xml');
2016-01-08 00:43:09 +01:00
}
public function install($position=0)
2016-01-08 00:43:09 +01:00
{
parent::install($position);
$this->createXML();
}
public function afterPageCreate()
{
$this->createXML();
}
public function afterPageModify()
{
$this->createXML();
}
public function afterPageDelete()
{
$this->createXML();
}
public function beforeRulesLoad()
{
global $Url;
if($Url->uri()===HTML_PATH_ROOT.'sitemap.xml') {
2016-01-08 00:43:09 +01:00
// Send XML header
header('Content-type: text/xml');
$doc = new DOMDocument();
// Workaround for a bug https://bugs.php.net/bug.php?id=62577
libxml_disable_entity_loader(false);
// Load XML
$doc->load($this->workspace().'sitemap.xml');
libxml_disable_entity_loader(true);
2016-01-08 00:43:09 +01:00
// Print the XML
echo $doc->saveXML();
// Terminate the run successfully
exit(0);
2016-01-08 00:43:09 +01:00
}
}
}