Package Home

Zend Framework 2 Documentation (Manual)

PHK Home

File: /_sources/modules/zend.form.view.helper.form-search.txt

Size:599
Storage flags:no_autoload,compress/gzip (53%)

:orphan:

.. _zend.form.view.helper.form-search:

FormSearch
^^^^^^^^^^

The ``FormSearch`` view helper can be used to render a ``<input type="search">``
HTML5 form input.

``FormSearch`` extends from :ref:`Zend\\Form\\View\\Helper\\FormText <zend.form.view.helper.form-text>`.

.. _zend.form.view.helper.form-search.usage:

Basic usage:

.. code-block:: php
   :linenos:

   use Zend\Form\Element;

   $element = new Element('my-search');

   // Within your view...
   echo $this->formSearch($element);

Output:

.. code-block:: html
   :linenos:

   <input type="search" name="my-search" value="">

For more information about the PHK package format: http://phk.tekwire.net