...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
- Класс: \CCrmProductRestProxy
- Вызов: CCrmProductRestProxy::innerDelete
protected function innerDelete($ID, &$errors, array $params = null) { if(!CModule::IncludeModule('iblock')) { throw new RestException('Could not load iblock module.'); } if(!(CCrmProduct::CheckDeletePermission($ID) && CCrmProduct::EnsureDefaultCatalogScope($ID))) { $errors[] = 'Access denied.'; return false; } $result = CCrmProduct::Delete($ID); if($result !== true) { $errors[] = CCrmProduct::GetLastError(); } return $result; }