• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/inputs.php
  • Класс: BitrixSaleDeliveryInputsPeriod
  • Вызов: Period::getViewHtmlSingle
static function getViewHtmlSingle(array $input, $values)
{
	if(!is_array($values))
		throw new ArgumentTypeException('values', 'array');

	self::checkArgs($input, $values);

	return $input["ITEMS"]["FROM"]["NAME"].": ".InputManager::getViewHtml($input["ITEMS"]["FROM"], $values["FROM"]).
		$input["ITEMS"]["TO"]["NAME"].": ".InputManager::getViewHtml($input["ITEMS"]["TO"], $values["TO"]).
		" ".InputManager::getViewHtml($input["ITEMS"]["TYPE"], $values["TYPE"]);
}