sintonia/airtime_mvc/application/controllers/FeedsController.php

14 lines
336 B
PHP
Raw Normal View History

2015-09-29 19:04:22 +02:00
<?php
class FeedsController extends Zend_Controller_Action
{
public function stationRssAction()
{
$this->view->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
header('Content-Type: text/xml');
echo Application_Service_PodcastService::createStationRssFeed();
}
}