-began adding grouping by shows for the datatable.

This commit is contained in:
martin 2011-03-04 18:26:22 -05:00
parent d22ab329d8
commit 38856c4af7
7 changed files with 126 additions and 12 deletions

View file

@ -29,6 +29,10 @@ class Application_Model_DateHelper
$dayEndTS = strtotime(date("Y-m-d", $this->_timestamp+(86400)));
return $dayEndTS - $this->_timestamp;
}
public static function TimeDiff($time1, $time2){
return strtotime($time2) - strtotime($time1);
}
public static function ConvertMSToHHMMSSmm($time){
$hours = floor($time / 3600000);