| 
| Size: | 8562 | 
| Storage flags: | no_autoload,compress/gzip (32%) | 
The FormText view helper can be used to render a <input type="text"> HTML form input. It is meant to work with the Zend\Form\Element\Text element.
FormText extends from Zend\Form\View\Helper\FormInput.
Basic usage:
1 2 3 4 5 6  | use Zend\Form\Element;
$element = new Element\Text('my-text');
// Within your view...
echo $this->formText($element);
 | 
Output:
1  | <input type="text" name="my-text" value="">
 | 
The source code of this file is hosted on GitHub. Everyone can update and fix errors in this document with few clicks - no downloads needed.