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

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

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

		$tunnelGlobalVariables[$entityTypeId] = $globalConstants;
	}

	return $tunnelGlobalVariables[$entityTypeId];
}