• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/usertype/userfieldbase.php
  • Класс: BitrixBizprocUserTypemanager
  • Вызов: manager::convertTo
static function convertTo(FieldType $fieldType, $value, $toTypeClass)
{
	if (is_array($value) && isset($value['VALUE']))
		$value = $value['VALUE'];

	$value = (string)$value;

	return BaseTypeStringType::convertTo($fieldType, $value, $toTypeClass);
}