Package Home

Zend Framework 2 Documentation (Manual)

PHK Home

File: /_sources/modules/zend.form.element.hidden.txt

Size:926
Storage flags:no_autoload,compress/gzip (44%)

:orphan:

.. _zend.form.element.hidden:

Hidden
^^^^^^

``Zend\Form\Element\Hidden`` represents a hidden form input.
It can be used with the ``Zend\Form\View\Helper\FormHidden`` view helper.

``Zend\Form\Element\Hidden`` extends from :ref:`Zend\\Form\\Element <zend.form.element>`.

.. _zend.form.element.hidden.usage:

.. rubric:: Basic Usage

This element automatically adds a ``"type"`` attribute of value ``"hidden"``.

.. code-block:: php
   :linenos:

   use Zend\Form\Element;
   use Zend\Form\Form;

   $hidden = new Element\Hidden('my-hidden');
   $hidden->setValue('foo');

   $form = new Form('my-form');
   $form->add($hidden);

Here is with the array notation:

.. code-block:: php
   :linenos:

    use Zend\Form\Form;

    $form = new Form('my-form');
    $form->add(array(
    	'type' => 'Zend\Form\Element\Hidden',
    	'name' => 'my-hidden',
    	'attributes' => array(
    		'value' => 'foo'
    	)
    ));

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