CCrmRequisiteLinkRestProxy::getEntityRequisite

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmRequisiteLinkRestProxy
  4. getEntityRequisite
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmRequisiteLinkRestProxy
  • Вызов: CCrmRequisiteLinkRestProxy::getEntityRequisite
protected function getEntityRequisite($entityTypeId, $entityId, &$errors)
{
	if(!Requisite\EntityLink::checkReadPermissionOwnerEntity($entityTypeId, $entityId))
	{
		$errors[] = 'Access denied.';
		return false;
	}

	$linkInfo = Requisite\EntityLink::getByEntity($entityTypeId, $entityId);
	if (is_array($linkInfo))
	{
		$result = array_merge(array('ENTITY_TYPE_ID' => $entityTypeId, 'ENTITY_ID' => $entityId), $linkInfo);
	}
	else
	{
		$errors[] = 'Not found';
		return false;
	}

	return $result;
}

Добавить комментарий