dbFields = array(
'numberOfItems'=>5
);
}
// Method called on the settings of the plugin on the admin area
public function form()
{
global $L;
$html = '
';
$html .= '';
$html .= '';
$html .= ''.$L->get('Amount of items to show on the feed').'';
$html .= '
';
return $html;
}
private function createXML()
{
global $site;
global $pages;
global $url;
// Amount of pages to show
$numberOfItems = $this->getValue('numberOfItems');
// Page number the first one
$pageNumber = 1;
// Only published pages
$onlyPublished = true;
// Get the list of pages
$list = $pages->getList($pageNumber, $numberOfItems, $onlyPublished);
$xml = '';
$xml .= '';
$xml .= '';
$xml .= ''.$site->title().'';
$xml .= ''.$site->url().'';
$xml .= ''.$site->description().'';
// Get keys of pages
foreach($list as $pageKey) {
try {
// Create the page object from the page key
$page = new Page($pageKey);
$xml .= '';
$xml .= ''.$page->title().'';
$xml .= ''.$page->permalink().'';
$xml .= ''.Sanitize::html($page->contentBreak()).'';
$xml .= ''.$page->dateRaw('r').'';
$xml .= ''.$page->uuid().'';
$xml .= '';
} catch (Exception $e) {
// Continue
}
}
$xml .= '';
// New DOM document
$doc = new DOMDocument();
$doc->formatOutput = true;
$doc->loadXML($xml);
$doc->save($this->workspace().'rss.xml');
}
public function install($position=0)
{
parent::install($position);
$this->createXML();
}
public function post()
{
// Call the method
parent::post();
// After POST request
$this->createXML();
}
public function afterPageCreate()
{
$this->createXML();
}
public function afterPageModify()
{
$this->createXML();
}
public function afterPageDelete()
{
$this->createXML();
}
public function siteHead()
{
return ''.PHP_EOL;
}
public function beforeAll()
{
$webhook = 'rss.xml';
if ($this->webhook($webhook)) {
// Send XML header
header('Content-type: text/xml');
$doc = new DOMDocument();
// Load XML
libxml_disable_entity_loader(false);
$doc->load($this->workspace().'rss.xml');
libxml_disable_entity_loader(true);
// Print the XML
echo $doc->saveXML();
// Stop Bludit execution
exit(0);
}
}
}