SAAS-870: Schedule widget displays shows in wrong timezone

Have angularjs hooked in
This commit is contained in:
drigato 2015-06-26 15:25:44 -04:00
parent c79e4fb9ea
commit 0a4651f752
4 changed files with 143 additions and 67 deletions

View file

@ -98,7 +98,8 @@ class EmbedController extends Zend_Controller_Action
$weeklyScheduleData = WidgetHelper::getWeekInfoV2($this->getRequest()->getParam("timezone"));
// Return only the current week's schedule data. In the future we may use the next week's data.
$this->view->weeklyScheduleData = ($weeklyScheduleData[0]);
$this->view->schedule_data = json_encode($weeklyScheduleData);
$this->view->weeklyScheduleData = $weeklyScheduleData;
$currentDay = new DateTime("now", new DateTimeZone(Application_Model_Preference::GetTimezone()));
//day of the month without leading zeros (1 to 31)