creating a separate controller for playouthistory templates.

This commit is contained in:
Naomi 2013-08-28 18:25:46 -04:00
parent 5aa983be36
commit 653a6384b9
14 changed files with 217 additions and 162 deletions

View file

@ -423,9 +423,18 @@ class Application_Service_HistoryService
);
}
public function getShowList($startDT, $endDT, $opts)
public function getShowList($startDT, $endDT)
{
$user = Application_Model_User::getCurrentUser();
$shows = Application_Model_Show::getShows($startDT, $endDT);
Loggin::info($shows);
//need to filter the list to only their shows
if ($user->isHost()) {
}
}
public function insertPlayedItem($schedId) {