• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/basetype/booltype.php
  • Класс: BitrixBizprocBaseTypeBoolType
  • Вызов: BoolType::formatValuePrintable
static function formatValuePrintable(FieldType $fieldType, $value)
{
	return mb_strtoupper($value) != 'N' && !empty($value)
		? Loc::getMessage('BPDT_BOOL_YES')
		: Loc::getMessage('BPDT_BOOL_NO');
}