Package Home

Zend Framework 2 Documentation (Manual)

PHK Home

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

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

:orphan:

.. _zend.form.element.submit:

Submit
^^^^^^

``Zend\Form\Element\Submit`` represents a submit button form input.
It can be used with the ``Zend\Form\View\Helper\FormSubmit`` view helper.

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

.. _zend.form.element.submit.usage:

.. rubric:: Basic Usage

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

.. code-block:: php
   :linenos:

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

   $submit = new Element\Submit('my-submit');
   $submit->setValue('Submit Form');

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

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