コード例 #1
0
ファイル: storage.php プロジェクト: pkdevboxy/webmail-lite
 /**
  * @param string $sCalendarId
  * @param string $sEventId
  * @return bool
  */
 public function removeEventFromAllGroups($sCalendarId, $sEventId)
 {
     $iResult = $this->oConnection->Execute($this->oCommandCreator->removeEventFromAllGroups($sCalendarId, $sEventId));
     return (bool) $iResult;
 }
コード例 #2
0
 /**
  * @param string $sWhere
  * @return string
  */
 protected function getGroupByWhere($sWhere)
 {
     return parent::getGroupByWhere($sWhere) . ' LIMIT 1';
 }