• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/BaseIblockElementRepository.php
  • Класс: BitrixCatalogv2BaseIblockElementRepository
  • Вызов: BaseIblockElementRepository::replaceRawFromTilda
private function replaceRawFromTilda(array $element): array
{
	$newElement = [];

	foreach ($element as $key => $value)
	{
		$tildaKey = "~{$key}";
		if (isset($element[$tildaKey]))
		{
			$newElement[$key] = $element[$tildaKey];
		}
	}

	return $newElement;
}