From a931e282e13f4a0870188d1dbce5c640d8c254f9 Mon Sep 17 00:00:00 2001 From: drigato Date: Fri, 20 Feb 2015 15:44:25 -0500 Subject: [PATCH] SAAS-585: Create Embeddable Player form Fixed up the stream urls options --- airtime_mvc/application/forms/EmbeddablePlayer.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/forms/EmbeddablePlayer.php b/airtime_mvc/application/forms/EmbeddablePlayer.php index 57c46bed9..a8eb137ce 100644 --- a/airtime_mvc/application/forms/EmbeddablePlayer.php +++ b/airtime_mvc/application/forms/EmbeddablePlayer.php @@ -14,10 +14,13 @@ class Application_Form_EmbeddablePlayer extends Zend_Form_SubForm $this->addElement($displayTrackMetadata); $streamURL = new Zend_Form_Element_Radio('stream_url'); - $streamURL->setMultiOptions(array( - 'AAC' => 'http://127.0.0.1:8000/airtime_a', - 'MP3' => 'http://127.0.0.1:8000/airtime_b' - )); + $urlOptions = Array(); + foreach(Application_Model_StreamSetting::getStreamUrls() as $type => $url) { + $urlOptions[$url] = $type; + } + $streamURL->setMultiOptions( + $urlOptions + ); $streamURL->setLabel(_('Select stream:')); $this->addElement($streamURL);