• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/Category.php
  • Класс: BitrixCrmMobileControllerCategory
  • Вызов: Category::getTunnelGlobalConstants
private function getTunnelGlobalConstants(int $entityTypeId): array
{
	static $tunnelGlobalConstants = [];

	if (!isset($tunnelGlobalConstants[$entityTypeId]))
	{
		$globalConstants = [];

		foreach (GlobalConst::getAll(CCrmBizProcHelper::ResolveDocumentType($entityTypeId)) as $key => $value)
		{
			$globalConstants[$key] = $value['Name'];
		}

		$tunnelGlobalConstants[$entityTypeId] = $globalConstants;
	}

	return $tunnelGlobalConstants[$entityTypeId];
}