Beispiel #1
0
 /**
  * @param string $sCalendarId
  * @param string $sEventId
  * @return bool
  */
 public function getGroupEvent($sCalendarId, $sEventId)
 {
     $aResult = array();
     if ($this->oConnection->Execute($this->oCommandCreator->getGroupEvent($sCalendarId, $sEventId))) {
         $aResult = $this->oConnection->GetResultAsAssocArrays();
         $this->oConnection->FreeResult();
     }
     return $aResult;
 }