will display in the UI what is scheduled in a show when you add things.

This commit is contained in:
naomiaro 2011-01-12 19:40:05 -05:00
parent 4d8f28f3fd
commit ad869e0f7f
5 changed files with 37 additions and 11 deletions

View file

@ -305,18 +305,19 @@ class Show {
$items[$pl_counter]["pl_name"] = $row["name"];
$items[$pl_counter]["pl_creator"] = $row["creator"];
$items[$pl_counter]["pl_description"] = $row["description"];
$items[$pl_counter]["pl_description"] = $row["description"];
$items[$pl_counter]["pl_group"] = $row["group_id"];
$sql = "SELECT SUM(clip_length) FROM cc_schedule WHERE group_id = '{$currGroupId}'";
$sql = "SELECT SUM(clip_length) FROM cc_schedule WHERE group_id = '{$currGroupId}'";
$length = $CC_DBC->GetOne($sql);
$items[$pl_counter]["pl_length"] = $length;
}
$f_counter = $f_counter + 1;
$items[$pl_counter][$f_counter]["f_name"] = $row["track_title"];
$items[$pl_counter][$f_counter]["f_artist"] = $row["artist_name"];
$items[$pl_counter][$f_counter]["f_length"] = $row["length"];
$items[$pl_counter]["pl_content"][$f_counter]["f_name"] = $row["track_title"];
$items[$pl_counter]["pl_content"][$f_counter]["f_artist"] = $row["artist_name"];
$items[$pl_counter]["pl_content"][$f_counter]["f_length"] = $row["length"];
}
return $items;