• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/input.php
  • Класс: BitrixSaleInternalsInputFile
  • Вызов: File::getValueSingle
static function getValueSingle(array $input, $value)
{
	if (is_array($value))
	{
		if (isset($value['DELETE']))
		{
			return null;
		}

		$value = $value['ID'] ?? null;
	}

	return is_numeric($value) ? $value : null;
}