CC-2908: Add "Live Stream" title to live stream popup window

-custom logo
This commit is contained in:
martin 2011-10-04 17:18:36 -04:00
parent 7dd14efe27
commit 929e29182b
8 changed files with 79 additions and 50 deletions

View file

@ -19,6 +19,13 @@ class DashboardController extends Zend_Controller_Action
$baseUrl = $request->getBaseUrl();
$this->view->headLink()->appendStylesheet($baseUrl.'/js/jplayer/skin/jplayer.blue.monday.css');
$this->_helper->layout->setLayout('bare');
$logo = Application_Model_Preference::GetStationLogo();
if($logo){
$this->view->logo = "data:image/png;base64,$logo";
} else {
$this->view->logo = "$baseUrl/css/images/airtime_logo_jp.png";
}
}
public function helpAction()