CC-3174 : showbuilder
adding cue/fade columns to table fixing schedule fade out putting default fade between files not in a playlist.
This commit is contained in:
parent
6ecf2f94b0
commit
43d67c921d
6 changed files with 27 additions and 5 deletions
|
@ -26,7 +26,11 @@ class Application_Model_ShowBuilder {
|
|||
"title" => "",
|
||||
"creator" => "",
|
||||
"album" => "",
|
||||
"timestamp" => null
|
||||
"timestamp" => null,
|
||||
"cuein" => "",
|
||||
"cueout" => "",
|
||||
"fadein" => "",
|
||||
"fadeout" => ""
|
||||
);
|
||||
|
||||
/*
|
||||
|
@ -184,6 +188,11 @@ class Application_Model_ShowBuilder {
|
|||
$row["creator"] = $p_item["file_artist_name"];
|
||||
$row["album"] = $p_item["file_album_title"];
|
||||
|
||||
$row["cuein"] = $p_item["cue_in"];
|
||||
$row["cueout"] = $p_item["cue_out"];
|
||||
$row["fadein"] = $p_item["fade_in"];
|
||||
$row["fadeout"] = $p_item["fade_out"];
|
||||
|
||||
$this->contentDT = $schedEndDT;
|
||||
}
|
||||
//show is empty
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue