• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/kanban/entity.php
  • Класс: Bitrix\Crm\Kanban\Entity
  • Вызов: Entity::getItems
public function getItems(array $parameters): \CDBResult
{
	$listEntity = \Bitrix\Crm\ListEntity\Entity::getInstance($this->getTypeName());
	if (!$listEntity)
	{
		throw new Exception('Wrong entity type name');
	}
	return $listEntity->getItems($parameters);
}