コード例 #1
0
ファイル: Actions.php プロジェクト: BertLasker/Catch-design
 /**
  * @return array
  */
 public function AjaxCalendarDelete()
 {
     $mResult = false;
     $oAccount = $this->getDefaultAccountFromParam();
     $sCalendarId = $this->getParamValue('Id');
     $mResult = $this->oApiCalendar->DeleteCalendar($oAccount, $sCalendarId);
     return $this->DefaultResponse($oAccount, __FUNCTION__, $mResult);
 }