<?php
// Bitrix\Bizproc\BaseType\StringType :: renderControl()
// /dist/bitrix/modules/bizproc/lib/basetype/stringtype.php:127
protected static function renderControl(FieldType $fieldType, array $field, $value, $allowSelection, $renderMode)
{
$renderResult = parent::renderControl($fieldType, $field, $value, $allowSelection, $renderMode);
if ($allowSelection && !($renderMode & FieldType::RENDER_MODE_PUBLIC))
{
$renderResult .= static::renderControlSelector($field, null, false, '', $fieldType);
}
return $renderResult;
}