-day view now highlights current show

This commit is contained in:
mkonecny 2011-02-09 15:45:45 -05:00
parent ce23df43d1
commit 28f3a77246
2 changed files with 6 additions and 1 deletions

View file

@ -12,6 +12,10 @@ class Application_Model_DateHelper
return date("Y-m-d H:i:s", $this->_timestamp);
}
function getTime(){
return date("H:i:s", $this->_timestamp);
}
function setDate($dateString){
$this->_timestamp = strtotime($dateString);
}