どうすれば日付と時刻を更新できますか..日付と時刻以外はすべて問題ありません。すべての更新後、それらは同じであり、変更されることはありません。私のどこが間違っていると思いますか?
これは、イベントを更新するために使用する関数です。
function updateEvent ($client, $eventId, $newTitle,
$newDesc, $newWhere, $newStartDate,
$newStartTime, $newEndDate, $newEndTime,
$tzOffset)
{
$gdataCal = new Zend_Gdata_Calendar($client);
if ($eventOld = getEvent($client, $eventId)) {
$eventOld->title = $gdataCal->newTitle($newTitle);
$eventOld->where = array($gdataCal->newWhere($newWhere));
$eventOld->content = $gdataCal->newContent("$newDesc");
$when = $gdataCal->newWhen();
if ($newStartTime!='' && $newEndTime!=''){
$when->startTime = "{$newStartDate}T{$newStartTime}:00.000{$tzOffset}:00";
$when->endTime = "{$newEndDate}T{$newEndTime}:00.000{$tzOffset}:00";
}else {
$when->startTime = $newStartDate;
$when->endTime = $newEndDate;
}
try {
$eventOld->save();
} catch (Zend_Gdata_App_Exception $e) {
var_dump($e);
return null;
}
return 1;
} else {
return 0;
}
}
if($_POST) {
updateEvent($client, $id, $_POST['nameBg'], $_POST['descrBg'], $_POST['place'],
$_POST['dateStart'],
$_POST['dateEnd'],
$_POST['timeStart'],
$_POST['timeEnd'],
'+02');
$this->_helper->FlashMessenger->addMessage(array('success' => $this->_translate->_('Everything is OK.')));
return $this->_helper->redirector->gotoRoute(array_merge($this->_urlCommon, array('action' => 'list')), 'lang-admin', true);
}