CC-2833: Use ClassLoaders for PHP Files

-Found out ClassLoaders only want one class per file. Moved
 ShowInstance class to its own .php file.
-Merged Show_DAL class into Show class
This commit is contained in:
martin 2011-09-23 12:33:28 -04:00
parent 502be61620
commit 1dd78d0584
5 changed files with 645 additions and 648 deletions

View file

@ -101,7 +101,7 @@ class Application_Model_Nowplaying
$data[] = self::CreateGapRow($gapTime);
}
return array("currentShow"=>Show_DAL::GetCurrentShow($timeNow), "rows"=>$data);
return array("currentShow"=>Application_Model_Show::GetCurrentShow($timeNow), "rows"=>$data);
}
public static function ShouldShowPopUp(){