예제 #1
0
파일: storage.php 프로젝트: Git-Host/email
 /**
  * Deletes calendar user settings from the storage. User identifier is used for look up.
  * 
  * @param int $iUserId User identifier.
  * 
  * @return bool
  */
 public function deleteCalUser($iUserId)
 {
     $bResult = $this->oConnection->Execute($this->oCommandCreator->deleteCalUserQuery($iUserId));
     $this->throwDbExceptionIfExist();
     return $bResult;
 }