added UI to toggle autoplaylist repeat option
This commit is contained in:
parent
7a944ac9ce
commit
c12ad4ea4f
|
@ -0,0 +1 @@
|
|||
ALTER TABLE cc_show DROP COLUMN IF EXISTS autoplaylist_repeat;
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE cc_show ADD COLUMN autoplaylist_repeat boolean default 'f' NOT NULL;
|
|
@ -27,6 +27,13 @@ class Application_Form_AddShowAutoPlaylist extends Zend_Form_SubForm
|
|||
$autoPlaylistSelect->setValue(null);
|
||||
$autoPlaylistSelect->setDecorators(array('ViewHelper'));
|
||||
$this->addElement($autoPlaylistSelect);
|
||||
// Add autoplaylist checkbox element
|
||||
$this->addElement('checkbox', 'add_show_autoplaylist_repeat', array(
|
||||
'label' => _('Repeat AutoPlaylist Until Show is Full ?'),
|
||||
'required' => false,
|
||||
'class' => 'input_text',
|
||||
'decorators' => array('ViewHelper')
|
||||
));
|
||||
}
|
||||
|
||||
public function disable()
|
||||
|
|
|
@ -135,6 +135,13 @@ class Application_Model_Show
|
|||
$hasAutoPlaylist = $show->getDbHasAutoPlaylist();
|
||||
return $hasAutoPlaylist;
|
||||
}
|
||||
|
||||
public function getAutoPlaylistRepeat() {
|
||||
$show = CcShowQuery::create()->findPK($this->_showId);
|
||||
$AutoPlaylistRepeat = $show->getDbAutoPlaylistRepeat();
|
||||
return $AutoPlaylistRepeat;
|
||||
}
|
||||
|
||||
|
||||
public function setHasAutoPlaylist($value)
|
||||
{
|
||||
|
|
|
@ -96,7 +96,15 @@ SQL;
|
|||
return $show->getDbAutoPlaylistId();
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function getAutoPlaylistRepeat()
|
||||
{
|
||||
$show = CcShowQuery::create()->findPK($this->getShowId());
|
||||
return $show->getDbAutoPlaylistRepeat();
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the start time of the Show (UTC time)
|
||||
* @return string in format DEFAULT_TIMESTAMP_FORMAT (PHP time notation)
|
||||
|
|
|
@ -321,6 +321,7 @@ class CcShow extends BaseCcShow {
|
|||
$info['linked'] = $this->getDbLinked();
|
||||
$info['has_autoplaylist'] = $this->getDbHasAutoPlaylist();
|
||||
$info['autoplaylist_id'] = $this->getDbAutoPlaylistId();
|
||||
$info['autoplaylist_repeat'] = $this->getDbAutoPlaylistRepeat();
|
||||
return $info;
|
||||
}
|
||||
|
||||
|
|
|
@ -153,7 +153,8 @@ class Application_Service_ShowFormService
|
|||
$form->populate(
|
||||
array(
|
||||
'add_show_has_autoplaylist' => $this->ccShow->getDbHasAutoPlaylist() ? 1 : 0,
|
||||
'add_show_autoplaylist_id' => $this->ccShow->getDbAutoPlaylistId()
|
||||
'add_show_autoplaylist_id' => $this->ccShow->getDbAutoPlaylistId(),
|
||||
'add_show_autoplaylist_repeat' => $this->ccShow->getDbAutoPlaylistRepeat()
|
||||
|
||||
));
|
||||
}
|
||||
|
|
|
@ -1541,6 +1541,7 @@ SQL;
|
|||
$ccShow->setDbLiveStreamUser($showData['custom_username']);
|
||||
$ccShow->setDbLiveStreamPass($showData['custom_password']);
|
||||
$ccShow->setDbHasAutoPlaylist($showData['add_show_has_autoplaylist'] == 1);
|
||||
$ccShow->setDbAutoPlaylistRepeat($showData['add_show_autoplaylist_repeat'] == 1);
|
||||
// added to prevent errors with insert due to a lack of data
|
||||
if ($showData['add_show_autoplaylist_id'] != '') {
|
||||
$ccShow->setDbAutoPlaylistId($showData['add_show_autoplaylist_id']);
|
||||
|
|
|
@ -519,3 +519,15 @@ class AirtimeUpgrader300alpha1 extends AirtimeUpgrader
|
|||
return '3.0.0-alpha.1';
|
||||
}
|
||||
}
|
||||
class AirtimeUpgrader300alpha2 extends AirtimeUpgrader
|
||||
{
|
||||
protected function getSupportedSchemaVersions() {
|
||||
return array(
|
||||
'3.0.0-alpha'
|
||||
);
|
||||
}
|
||||
|
||||
public function getNewVersion() {
|
||||
return '3.0.0-alpha.2';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,5 +18,17 @@
|
|||
<dd>
|
||||
<?php echo $this->element->getElement('add_show_autoplaylist_id') ?>
|
||||
</div>
|
||||
<div id="add_show_autoplaylist_repeat">
|
||||
<dt id="add_show_autoplaylist_repeat_label">
|
||||
<label for="add_show_autoplaylist_repeat_label">
|
||||
<?php echo $this->element->getElement('add_show_autoplaylist_repeat')->getLabel()?>
|
||||
</label>
|
||||
</dt>
|
||||
<dd>
|
||||
<?php echo $this->element->getElement('add_show_autoplaylist_repeat') ?>
|
||||
</dd>
|
||||
</div>
|
||||
|
||||
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
|
|
@ -162,6 +162,7 @@ CREATE TABLE "cc_show"
|
|||
"image_path" VARCHAR(255) DEFAULT '',
|
||||
"has_autoplaylist" BOOLEAN DEFAULT 'f' NOT NULL,
|
||||
"autoplaylist_id" INTEGER,
|
||||
"autoplaylist_repeat" BOOLEAN DEFAULT 'f' NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
|
|
|
@ -269,6 +269,7 @@ function setAddShowEvents(form) {
|
|||
|
||||
if(!form.find("#add_show_has_autoplaylist").attr('checked')) {
|
||||
form.find("#add_show_playlist_dropdown").hide();
|
||||
form.find("#add_show_autoplaylist_repeat").hide();
|
||||
}
|
||||
else {
|
||||
$("#add_show_playlist_dropdown").show();
|
||||
|
@ -300,12 +301,14 @@ function setAddShowEvents(form) {
|
|||
form.find("#add_show_has_autoplaylist").click(function(){
|
||||
$(this).blur();
|
||||
form.find("#add_show_playlist_dropdown").toggle();
|
||||
form.find("#add_show_autoplaylist_repeat").toggle();
|
||||
|
||||
var checkBoxSelected = false;
|
||||
|
||||
//must switch rebroadcast displays
|
||||
if(form.find("#add_show_has_autoplaylist").attr('checked')) {
|
||||
form.find("#add_show_playlist_dropdown").show();
|
||||
form.find("#add_show_autoplaylist_repeat").show();
|
||||
}
|
||||
else {
|
||||
form.find("#add_show_playlist_downdown").hide();
|
||||
|
|
|
@ -18,6 +18,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 0,
|
||||
"add_show_linked" => 0,
|
||||
|
@ -95,6 +96,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 1,
|
||||
"add_show_linked" => 0,
|
||||
|
@ -172,6 +174,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 1,
|
||||
"add_show_linked" => 0,
|
||||
|
@ -260,6 +263,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 0,
|
||||
"add_show_linked" => 0,
|
||||
|
@ -288,6 +292,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 1,
|
||||
"add_show_linked" => 0,
|
||||
|
@ -366,6 +371,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 0,
|
||||
"add_show_linked" => 0,
|
||||
|
@ -443,6 +449,7 @@ Class ShowServiceData
|
|||
"add_show_duration" => "01h 00m",
|
||||
"add_show_timezone" => "UTC",
|
||||
"add_show_has_autoplaylist" => false,
|
||||
"add_show_autoplaylist_repeat" => false,
|
||||
"add_show_autoplaylist_id" => null,
|
||||
"add_show_repeats" => 1,
|
||||
"add_show_linked" => 0,
|
||||
|
|
Loading…
Reference in New Issue