• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/integration/bitrix24manager.php
  • Класс: BitrixRpaIntegrationBitrix24Manager
  • Вызов: Bitrix24Manager::getFullControllableTypeIds
protected function getFullControllableTypeIds(): array
{
	static $typeIds;
	if($typeIds === null)
	{
		return array_column($this->typeTable::getList([
			'select' => ['ID'],
			'order' => ['ID' => 'ASC'],
			'limit' => $this->getTypesLimit(),
		])->fetchAll(), 'ID');
	}

	return $typeIds;
}