• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/product/systemfield/productmapping.php
  • Класс: BitrixCatalogProductSystemFieldProductMapping
  • Вызов: ProductMapping::getHighloadblockValues
static function getHighloadblockValues(): array
{
	$mapId = [
		self::MAP_LANDING,
//			self::MAP_FACEBOOK
	];

	$result = [];

	foreach ($mapId as $id)
	{
		$title = (string)Loc::getMessage(self::VALUE_NAME_PREFIX.$id);
		$result[] = [
			'UF_XML_ID' => $id,
			'UF_NAME' => $title ?: $id,
		];
	}

	return $result;
}