Testing
This commit is contained in:
parent
43e9fb59ce
commit
b00ac6750c
32 changed files with 10218 additions and 358 deletions
14
airtime_mvc/application/controllers/FeedsController.php
Normal file
14
airtime_mvc/application/controllers/FeedsController.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?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();
|
||||
}
|
||||
}
|
|
@ -119,7 +119,8 @@ class Zend_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
|
|||
"upgrade",
|
||||
'whmcs-login',
|
||||
"provisioning",
|
||||
"embed"
|
||||
"embed",
|
||||
"feeds"
|
||||
)))
|
||||
{
|
||||
$this->setRoleName("G");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue