BootstrapUI\View\Helper\FormHelper::_getInput PHP Метод

_getInput() защищенный Метод

Overrides parent method to unset 'help' key.
protected _getInput ( string $fieldName, array $options ) : string
$fieldName string The field's name.
$options array The options for the input element.
Результат string The generated input element.
    protected function _getInput($fieldName, $options)
    {
        unset($options['help']);
        return parent::_getInput($fieldName, $options);
    }