コード例 #1
0
ファイル: storage.php プロジェクト: BertLasker/Catch-design
 /**
  * @param int $iGroupId
  * @param string $sCalendarId
  * @param string $sEventId
  * @return bool
  */
 public function RemoveEventFromGroup($iGroupId, $sCalendarId, $sEventId)
 {
     $iResult = $this->oConnection->Execute($this->oCommandCreator->RemoveEventFromGroup($iGroupId, $sCalendarId, $sEventId));
     return (bool) $iResult;
 }