| 
| Size: | 8382 | 
| Storage flags: | no_autoload,compress/gzip (32%) | 
The FormTel view helper can be used to render a <input type="tel"> HTML5 form input.
FormTel extends from Zend\Form\View\Helper\FormInput.
Basic usage:
1 2 3 4 5 6  | use Zend\Form\Element;
$element = new Element('my-tel');
// Within your view...
echo $this->formTel($element);
 | 
Output:
1  | <input type="tel" name="my-tel" 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.