CC-1665: Scheduled stream rebroadcasting and recording

-add placeholder icons for smart playlists/webstreams
This commit is contained in:
Martin Konecny 2012-08-07 23:44:21 -04:00
parent 230c3399ef
commit 18ca6b22cb
1 changed files with 6 additions and 3 deletions

View File

@ -719,13 +719,16 @@ class Application_Model_StoredFile
//datatable stuff really needs to be pulled out and generalized within the project
//access to zend view methods to access url helpers is needed.
Logging::log($type);
if ($type == "au") {
//TODO:
Logging::log("row id: ".$row['id']);
$row['audioFile'] = $row['id'].".".pathinfo($row['filepath'], PATHINFO_EXTENSION);
$row['image'] = '<img title="Track preview" src="/css/images/icon_audioclip.png">';
} else {
} else if ($type == "pl") {
$row['image'] = '<img title="Playlist preview" src="/css/images/icon_playlist.png">';
} else if ($type == "st") {
$row['image'] = '<img title="Webstream preview" src="/css/images/record_icon.png">';
} else if ($type == "bl") {
$row['image'] = '<img title="Smart Playlist" src="/css/images/delete.png">';
}
}