<?php
namespace ConcreteController;
class Feed extends ConcreteCoreControllerController
{
public function get($identifier)
{
$feed = ConcreteCorePageFeed::getByHandle($identifier);
if (is_object($feed)) {
//header('Content-Type: text/xml');
$xml = $feed->getOutput($this->request);
print $xml;
}
exit;
}
}