5 class Char extends \Rsi\Fred\Controller\View\Html\Widget{
10 $attribs = parent::attribs();
11 if($max = $this->_widget->max) $attribs[
'maxlength'] = $max;
12 if($size = $this->_widget->size ?: $max) $attribs[
'size'] = $size;
13 if($placeholder = $this->_widget->placeholder) $attribs[
'placeholder'] = $placeholder;
14 if($autocomplete = $this->_widget->autocomplete) $attribs[
'autocomplete'] = $autocomplete ===
false ?
'off' : $autocomplete;