getParamDefaults(); if ($defaults['where'] && $this->where === $defaults['where']) { throw new \API_Exception('Cannot delete ' . $this->getEntityName() . ' with no "where" parameter specified'); } $items = $this->getObjects(); if ($items) { $result->exchangeArray($this->deleteObjects($items)); } } /** * @param $items * @return array * @throws \API_Exception */ protected function deleteObjects($items) { $ids = []; $baoName = $this->getBaoName(); if ($this->getCheckPermissions()) { foreach (array_keys($items) as $key) { $items[$key]['check_permissions'] = TRUE; $this->checkContactPermissions($baoName, $items[$key]); } } if ($this->getEntityName() !== 'EntityTag' && method_exists($baoName, 'del')) { foreach ($items as $item) { $args = [$item['id']]; $bao = call_user_func_array([$baoName, 'del'], $args); if ($bao !== FALSE) { $ids[] = ['id' => $item['id']]; } else { throw new \API_Exception("Could not delete {$this->getEntityName()} id {$item['id']}"); } } } else { foreach ($items as $item) { $baoName::deleteRecord($item); $ids[] = ['id' => $item['id']]; } } return $ids; } }