コード例 #1
0
ファイル: storage.php プロジェクト: pkdevboxy/webmail-lite
 /**
  * @param CContact $oContact
  * @return bool
  */
 public function updateContact($oContact)
 {
     if ($this->oConnection->Execute($this->oCommandCreator->updateContact($oContact))) {
         $this->oConnection->Execute($this->oCommandCreator->ClearGroupsIdsByContactsIds(array($oContact->IdContact)));
         if (0 < count($oContact->GroupsIds)) {
             $this->oConnection->Execute($this->oCommandCreator->UpdateGroupIdsInContact($oContact));
         }
         return true;
     }
     return false;
 }