SAAS-813: Wire up schedule widget on Radio Page

This commit is contained in:
drigato 2015-05-27 13:50:25 -04:00
parent a569387c5a
commit 27868fbfe5
6 changed files with 154 additions and 227 deletions

View file

@ -13,6 +13,8 @@ class IndexController extends Zend_Controller_Action
$CC_CONFIG = Config::getConfig();
$baseUrl = Application_Common_OsPath::getBaseDir();
$this->view->headLink()->appendStylesheet($baseUrl.'css/radio-page/radio-page.css?'.$CC_CONFIG['airtime_version']);
$this->view->headLink()->appendStylesheet($baseUrl.'css/radio-page/weekly-schedule-widget.css?'.$CC_CONFIG['airtime_version']);
$this->_helper->layout->setLayout('radio-page');
$this->view->stationLogo = Application_Model_Preference::GetStationLogo();
@ -24,6 +26,8 @@ class IndexController extends Zend_Controller_Action
$stationDescription = Application_Model_Preference::GetStationDescription();
$stationDescription = empty($stationDescription) ? "Station Description" : $stationDescription;
$this->view->stationDescription = $stationDescription;
$this->view->stationUrl = Application_Common_HTTPHelper::getStationUrl();
}
public function mainAction()