Package Home

Zend Framework 2 Documentation (Manual)

PHK Home

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

Size:694
Storage flags:no_autoload,compress/gzip (51%)

:orphan:

.. _zend.form.view.helper.form-color:

FormColor
^^^^^^^^^

The ``FormColor`` view helper can be used to render a ``<input type="color">``
HTML5 form input. It is meant to work with the :ref:`Zend\\Form\\Element\\Color <zend.form.element.color>`
element.

``FormColor`` extends from :ref:`Zend\\Form\\View\\Helper\\FormInput <zend.form.view.helper.form-input>`.

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

Basic usage:

.. code-block:: php
   :linenos:

   use Zend\Form\Element;

   $element = new Element\Color('my-color');

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

Output:

.. code-block:: html
   :linenos:

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

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