1 <?xml version="1.0" encoding="UTF-8"?>
3 <sect1 id="zend.form.standardElements">
4 <title>Standard Form Elements Shipped With Zend Framework</title>
7 Zend Framework ships with concrete element classes covering most <acronym>HTML</acronym>
8 form elements. Most simply specify a particular view helper for use when
9 decorating the element, but several offer additional functionality. The
10 following is a list of all such classes, as well as descriptions of the
11 functionality they offer.
14 <sect2 id="zend.form.standardElements.button">
15 <title>Zend_Form_Element_Button</title>
18 Used for creating <acronym>HTML</acronym> button elements,
19 <classname>Zend_Form_Element_Button</classname> extends <link
20 linkend="zend.form.standardElements.submit">Zend_Form_Element_Submit</link>,
21 specifying some custom functionality. It specifies the 'formButton'
22 view helper for decoration.
26 Like the submit element, it uses the element's label as the element
27 value for display purposes; in other words, to set the text of the
28 button, set the value of the element. The label will be translated
29 if a translation adapter is present.
33 Because the label is used as part of the element, the button element
35 linkend="zend.form.standardDecorators.viewHelper">ViewHelper</link>
37 linkend="zend.form.standardDecorators.dtDdWrapper">DtDdWrapper</link>
42 After populating or validating a form, you can check if the given
43 button was clicked using the <methodname>isChecked()</methodname> method.
47 <sect2 id="zend.form.standardElements.captcha">
48 <title>Zend_Form_Element_Captcha</title>
51 CAPTCHAs are used to prevent automated submission of forms by bots
52 and other automated processes.
56 The Captcha form element allows you to specify which <link
57 linkend="zend.captcha.adapters">Zend_Captcha adapter</link> you
58 wish to utilize as a form CAPTCHA. It then sets this adapter as a
59 validator to the object, and uses a Captcha decorator for rendering
60 (which proxies to the CAPTCHA adapter).
64 Adapters may be any adapters in <classname>Zend_Captcha</classname>, as well
65 as any custom adapters you may have defined elsewhere. To allow
66 this, you may pass an additional plugin loader type key, 'CAPTCHA'
67 or 'captcha', when specifying a plugin loader prefix path:
70 <programlisting language="php"><![CDATA[
71 $element->addPrefixPath('My_Captcha', 'My/Captcha/', 'captcha');
75 Captcha's may then be registered using the <methodname>setCaptcha()</methodname>
76 method, which can take either a concrete CAPTCHA instance, or the
77 short name of a CAPTCHA adapter:
80 <programlisting language="php"><![CDATA[
82 $element->setCaptcha(new Zend_Captcha_Figlet());
85 $element->setCaptcha('Dumb');
89 If you wish to load your element via configuration, specify either
90 the key 'captcha' with an array containing the key 'captcha', or
91 both the keys 'captcha' and 'captchaOptions':
94 <programlisting language="php"><![CDATA[
95 // Using single captcha key:
96 $element = new Zend_Form_Element_Captcha('foo', array(
97 'label' => "Please verify you're a human",
99 'captcha' => 'Figlet',
105 // Using both captcha and captchaOptions:
106 $element = new Zend_Form_Element_Captcha('foo', array(
107 'label' => "Please verify you're a human",
108 'captcha' => 'Figlet',
109 'captchaOptions' => array(
110 'captcha' => 'Figlet',
118 The decorator used is determined by querying the captcha adapter. By
120 linkend="zend.form.standardDecorators.captcha">Captcha
121 decorator</link> is used, but an adapter may specify a different
122 one via its <methodname>getDecorator()</methodname> method.
126 As noted, the captcha adapter itself acts as a validator for the
127 element. Additionally, the NotEmpty validator is not used, and the
128 element is marked as required. In most cases, you should need to do
129 nothing else to have a captcha present in your form.
133 <sect2 id="zend.form.standardElements.checkbox">
134 <title>Zend_Form_Element_Checkbox</title>
137 <acronym>HTML</acronym> checkboxes allow you return a specific value, but basically
138 operate as booleans. When checked, the checkbox's value is submitted.
139 When the checkbox is not checked, nothing is submitted. Internally,
140 <classname>Zend_Form_Element_Checkbox</classname> enforces this state.
144 By default, the checked value is '1', and the unchecked value '0'.
145 You can specify the values to use using the <methodname>setCheckedValue()</methodname>
146 and <methodname>setUncheckedValue()</methodname> accessors, respectively. Internally,
147 any time you set the value, if the provided value matches the checked value, then it is
148 set, but any other value causes the unchecked value to be set.
152 Additionally, setting the value sets the <property>checked</property>
153 property of the checkbox. You can query this using
154 <methodname>isChecked()</methodname> or simply accessing the property. Using the
155 <methodname>setChecked($flag)</methodname> method will both set the state of the
156 flag as well as set the appropriate checked or unchecked value in the
157 element. Please use this method when setting the checked state of a
158 checkbox element to ensure the value is set properly.
162 <classname>Zend_Form_Element_Checkbox</classname> uses the 'formCheckbox' view
163 helper. The checked value is always used to populate it.
167 <sect2 id="zend.form.standardElements.file">
168 <title>Zend_Form_Element_File</title>
171 The File form element provides a mechanism for supplying file upload
172 fields to your form. It utilizes <link
173 linkend="zend.file.transfer.introduction">Zend_File_Transfer</link>
174 internally to provide this functionality, and the
175 <classname>FormFile</classname> view helper as also the <classname>File</classname>
176 decorator to display the form element.
180 By default, it uses the <classname>Http</classname> transfer adapter, which
181 introspects the <varname>$_FILES</varname> array and allows you to attach
182 validators and filters. Validators and filters attached to the form
183 element are in turn attached to the transfer adapter.
186 <example id="zend.form.standardElements.file.usage">
187 <title>File form element usage</title>
190 The above explanation of using the File form element may seem
191 arcane, but actual usage is relatively trivial:
194 <programlisting language="php"><![CDATA[
195 $element = new Zend_Form_Element_File('foo');
196 $element->setLabel('Upload an image:')
197 ->setDestination('/var/www/upload');
198 // ensure only 1 file
199 $element->addValidator('Count', false, 1);
201 $element->addValidator('Size', false, 102400);
202 // only JPEG, PNG, and GIFs
203 $element->addValidator('Extension', false, 'jpg,png,gif');
204 $form->addElement($element, 'foo');
208 You also need to ensure that the correct encoding type is provided to
209 the form; you should use 'multipart/form-data'. You can do this
210 by setting the 'enctype' attribute on the form:
213 <programlisting language="php"><![CDATA[
214 $form->setAttrib('enctype', 'multipart/form-data');
218 After the form is validated successfully, you must receive the file
219 to store it in the final destination using <methodname>receive()</methodname>.
220 Additionally you can determinate the final location using
221 <methodname>getFileName()</methodname>:
224 <programlisting language="php"><![CDATA[
225 if (!$form->isValid()) {
226 print "Uh oh... validation error";
229 if (!$form->foo->receive()) {
230 print "Error receiving the file";
233 $location = $form->foo->getFileName();
238 <title>Default Upload Location</title>
241 By default, files are uploaded to the system temp directory.
246 <title>File values</title>
249 Within <acronym>HTTP</acronym> a file element has no value. For this reason and
250 because of security concerns <methodname>getValue()</methodname> returns only the
251 uploaded filename and not the complete path. If you need the file path, call
252 <methodname>getFileName()</methodname>, which returns both the path and the name of
258 Per default the file will automatically be received when you call
259 <methodname>getValues()</methodname> on the form. The reason behind this behaviour is,
260 that the file itself is the value of the file element.
263 <programlisting language="php"><![CDATA[
269 Therefor another call of <methodname>receive()</methodname> after calling
270 <methodname>getValues()</methodname> will not have an effect. Also creating a
271 instance of <classname>Zend_File_Transfer</classname> will not have an effect as
272 there no file anymore to receive.
277 Still, sometimes you may want to call <methodname>getValues()</methodname> without
278 receiving the file. You can archive this by calling
279 <methodname>setValueDisabled(true)</methodname>. To get the actual value of this flag
280 you can call <methodname>isValueDisabled()</methodname>.
283 <example id="zend.form.standardElements.file.retrievement">
284 <title>Explicit file retrievement</title>
287 First call <methodname>setValueDisabled(true)</methodname>.
290 <programlisting language="php"><![CDATA[
291 $element = new Zend_Form_Element_File('foo');
292 $element->setLabel('Upload an image:')
293 ->setDestination('/var/www/upload')
294 ->setValueDisabled(true);
298 Now the file will not be received when you call
299 <methodname>getValues()</methodname>. So you must call
300 <methodname>receive()</methodname> on the file element, or an instance of
301 <classname>Zend_File_Transfer</classname> yourself.
304 <programlisting language="php"><![CDATA[
305 $values = $form->getValues();
307 if ($form->isValid($form->getPost())) {
308 if (!$form->foo->receive()) {
309 print "Upload error";
316 There are several states of the uploaded file which can be checked
317 with the following methods:
323 <methodname>isUploaded()</methodname>: Checks if the file element has
324 been uploaded or not.
330 <methodname>isReceived()</methodname>: Checks if the file element has
331 already been received.
337 <methodname>isFiltered()</methodname>: Checks if the filters have already
338 been applied to the file element or not.
343 <example id="zend.form.standardElements.file.isuploaded">
344 <title>Checking if an optional file has been uploaded</title>
346 <programlisting language="php"><![CDATA[
347 $element = new Zend_Form_Element_File('foo');
348 $element->setLabel('Upload an image:')
349 ->setDestination('/var/www/upload')
350 ->setRequired(false);
351 $element->addValidator('Size', false, 102400);
352 $form->addElement($element, 'foo');
354 // The foo file element is optional but when it's given go into here
355 if ($form->foo->isUploaded()) {
356 // foo file given... do something
362 <classname>Zend_Form_Element_File</classname> also supports multiple files.
363 By calling the <methodname>setMultiFile($count)</methodname> method you can set
364 the number of file elements you want to create. This keeps you
365 from setting the same settings multiple times.
368 <example id="zend.form.standardElements.file.multiusage">
369 <title>Setting multiple files</title>
372 Creating a multifile element is the same as setting a single element.
373 Just call <methodname>setMultiFile()</methodname> after the element is created:
376 <programlisting language="php"><![CDATA[
377 $element = new Zend_Form_Element_File('foo');
378 $element->setLabel('Upload an image:')
379 ->setDestination('/var/www/upload');
380 // ensure minimum 1, maximum 3 files
381 $element->addValidator('Count', false, array('min' => 1, 'max' => 3));
383 $element->addValidator('Size', false, 102400);
384 // only JPEG, PNG, and GIFs
385 $element->addValidator('Extension', false, 'jpg,png,gif');
386 // defines 3 identical file elements
387 $element->setMultiFile(3);
388 $form->addElement($element, 'foo');
392 You now have 3 identical file upload elements
393 with the same settings. To get the set multifile number simply call
394 <methodname>getMultiFile()</methodname>.
400 <title>File elements in Subforms</title>
403 When you use file elements in subforms you must set unique names.
404 For example, if you name a file element in subform1 "file", you must give
405 any file element in subform2 a different name.
409 If there are 2 file elements with the same name, the second
410 element is not be displayed or submitted.
414 Additionally, file elements are not rendered within the sub-form. So when
415 you add a file element into a subform, then the element will be rendered
416 within the main form.
421 To limit the size of the file uploaded, you can
422 specify the maximum file size by setting the <constant>MAX_FILE_SIZE</constant>
423 option on the form. When you set this value by using the
424 <methodname>setMaxFileSize($size)</methodname> method, it will be rendered with the
428 <programlisting language="php"><![CDATA[
429 $element = new Zend_Form_Element_File('foo');
430 $element->setLabel('Upload an image:')
431 ->setDestination('/var/www/upload')
432 ->addValidator('Size', false, 102400) // limit to 100K
433 ->setMaxFileSize(102400); // limits the filesize on the client side
434 $form->addElement($element, 'foo');
438 <title>MaxFileSize with Multiple File Elements</title>
441 When you use multiple file elements in your form you should set
442 the <constant>MAX_FILE_SIZE</constant> only once. Setting it again will
443 overwrite the previous value.
447 Note, that this is also the case when you use multiple forms.
452 <sect2 id="zend.form.standardElements.hidden">
453 <title>Zend_Form_Element_Hidden</title>
456 Hidden elements inject data that should be submitted, but that should not manipulated by
457 the user . <classname>Zend_Form_Element_Hidden</classname> accomplishes this with the
458 'formHidden' view helper.
462 <sect2 id="zend.form.standardElements.hash">
463 <title>Zend_Form_Element_Hash</title>
466 This element provides protection from CSRF attacks on forms,
467 ensuring the data is submitted by the user session that generated
468 the form and not by a rogue script. Protection is achieved by adding
469 a hash element to a form and verifying it when the form is
474 The name of the hash element should be unique. We recommend using
475 the <literal>salt</literal> option for the element- two hashes with
476 same names and different salts would not collide:
479 <programlisting language="php"><![CDATA[
480 $form->addElement('hash', 'no_csrf_foo', array('salt' => 'unique'));
484 You can set the salt later using the <methodname>setSalt($salt)</methodname>
489 Internally, the element stores a unique identifier using
490 <classname>Zend_Session_Namespace</classname>, and checks for it at
491 submission (checking that the TTL has not expired). The 'Identical'
492 validator is then used to ensure the submitted hash matches the
497 The 'formHidden' view helper is used to render the element in the
502 <sect2 id="zend.form.standardElements.Image">
503 <title>Zend_Form_Element_Image</title>
506 Images can be used as form elements, and you can use these images as
507 graphical elements on form buttons.
511 Images need an image source. <classname>Zend_Form_Element_Image</classname>
512 allows you to specify this by using the <methodname>setImage()</methodname>
513 accessor (or 'image' configuration key). You can also optionally specify a value to use
514 when submitting the image using the <methodname>setImageValue()</methodname> accessor
515 (or 'imageValue' configuration key). When the value set for the
516 element matches the <property>imageValue</property>, then the accessor
517 <methodname>isChecked()</methodname> will return <constant>TRUE</constant>.
521 Image elements use the
522 <link linkend="zend.form.standardDecorators.image">Image
523 Decorator</link> for rendering, in addition to the standard Errors,
524 HtmlTag, and Label decorators. You can optionally specify a tag to
525 the <classname>Image</classname> decorator that will then wrap the image
530 <sect2 id="zend.form.standardElements.multiCheckbox">
531 <title>Zend_Form_Element_MultiCheckbox</title>
534 Often you have a set of related checkboxes, and you wish to group
535 the results. This is much like a <link
536 linkend="zend.form.standardElements.multiselect">Multiselect</link>,
537 but instead of them being in a dropdown list, you need to show
538 checkbox/value pairs.
542 <classname>Zend_Form_Element_MultiCheckbox</classname> makes this a snap. Like
543 all other elements extending the base Multi element, you can specify
544 a list of options, and easily validate against that same list. The
545 'formMultiCheckbox' view helper ensures that these are returned as
546 an array in the form submission.
550 By default, this element registers an <classname>InArray</classname> validator
551 which validates against the array keys of registered options. You
552 can disable this behavior by either calling
553 <methodname>setRegisterInArrayValidator(false)</methodname>, or by passing a
554 <constant>FALSE</constant> value to the <property>registerInArrayValidator</property>
559 You may manipulate the various checkbox options using the following
565 <para><methodname>addMultiOption($option, $value)</methodname></para>
569 <para><methodname>addMultiOptions(array $options)</methodname></para>
574 <methodname>setMultiOptions(array $options)</methodname> (overwrites existing
579 <listitem><para><methodname>getMultiOption($option)</methodname></para></listitem>
580 <listitem><para><methodname>getMultiOptions()</methodname></para></listitem>
581 <listitem><para><methodname>removeMultiOption($option)</methodname></para></listitem>
582 <listitem><para><methodname>clearMultiOptions()</methodname></para></listitem>
586 To mark checked items, you need to pass an array of values to
587 <methodname>setValue()</methodname>. The following will check the values "bar"
591 <programlisting language="php"><![CDATA[
592 $element = new Zend_Form_Element_MultiCheckbox('foo', array(
593 'multiOptions' => array(
594 'foo' => 'Foo Option',
595 'bar' => 'Bar Option',
596 'baz' => 'Baz Option',
597 'bat' => 'Bat Option',
601 $element->setValue(array('bar', 'bat'));
605 Note that even when setting a single value, you must pass an array.
609 <sect2 id="zend.form.standardElements.multiselect">
610 <title>Zend_Form_Element_Multiselect</title>
613 <acronym>XHTML</acronym> <emphasis>select</emphasis> elements allow a 'multiple'
614 attribute, indicating multiple options may be selected for submission, instead
615 of the usual one. <classname>Zend_Form_Element_Multiselect</classname> extends
617 linkend="zend.form.standardElements.select">Zend_Form_Element_Select</link>,
618 and sets the <property>multiple</property> attribute to 'multiple'. Like
619 other classes that inherit from the base
620 <classname>Zend_Form_Element_Multi</classname> class, you can manipulate the
621 options for the select using:
626 <para><methodname>addMultiOption($option, $value)</methodname></para>
630 <para><methodname>addMultiOptions(array $options)</methodname></para>
635 <methodname>setMultiOptions(array $options)</methodname> (overwrites existing
640 <listitem><para><methodname>getMultiOption($option)</methodname></para></listitem>
641 <listitem><para><methodname>getMultiOptions()</methodname></para></listitem>
642 <listitem><para><methodname>removeMultiOption($option)</methodname></para></listitem>
643 <listitem><para><methodname>clearMultiOptions()</methodname></para></listitem>
647 If a translation adapter is registered with the form and/or element,
648 option values will be translated for display purposes.
652 By default, this element registers an <classname>InArray</classname> validator
653 which validates against the array keys of registered options. You
654 can disable this behavior by either calling
655 <methodname>setRegisterInArrayValidator(false)</methodname>, or by passing a
656 <constant>FALSE</constant> value to the <property>registerInArrayValidator</property>
661 <sect2 id="zend.form.standardElements.password">
662 <title>Zend_Form_Element_Password</title>
665 Password elements are basically normal text elements -- except that
666 you typically do not want the submitted password displayed in error
667 messages or the element itself when the form is re-displayed.
671 <classname>Zend_Form_Element_Password</classname> achieves this by calling
672 <methodname>setObscureValue(true)</methodname> on each validator (ensuring that
673 the password is obscured in validation error messages), and using
674 the 'formPassword' view helper (which does not display the value
679 <sect2 id="zend.form.standardElements.radio">
680 <title>Zend_Form_Element_Radio</title>
683 Radio elements allow you to specify several options, of which you
684 need a single value returned. <classname>Zend_Form_Element_Radio</classname>
685 extends the base <classname>Zend_Form_Element_Multi</classname> class,
686 allowing you to specify a number of options, and then uses the
687 <emphasis>formRadio</emphasis> view helper to display these.
691 By default, this element registers an <classname>InArray</classname> validator
692 which validates against the array keys of registered options. You
693 can disable this behavior by either calling
694 <methodname>setRegisterInArrayValidator(false)</methodname>, or by passing a
695 <constant>FALSE</constant> value to the <property>registerInArrayValidator</property>
700 Like all elements extending the Multi element base class, the
701 following methods may be used to manipulate the radio options
707 <para><methodname>addMultiOption($option, $value)</methodname></para>
711 <para><methodname>addMultiOptions(array $options)</methodname></para>
716 <methodname>setMultiOptions(array $options)</methodname>
717 (overwrites existing options)
721 <listitem><para><methodname>getMultiOption($option)</methodname></para></listitem>
722 <listitem><para><methodname>getMultiOptions()</methodname></para></listitem>
723 <listitem><para><methodname>removeMultiOption($option)</methodname></para></listitem>
724 <listitem><para><methodname>clearMultiOptions()</methodname></para></listitem>
728 <sect2 id="zend.form.standardElements.reset">
729 <title>Zend_Form_Element_Reset</title>
732 Reset buttons are typically used to clear a form, and are not part
733 of submitted data. However, as they serve a purpose in the display,
734 they are included in the standard elements.
738 <classname>Zend_Form_Element_Reset</classname> extends <link
739 linkend="zend.form.standardElements.submit">Zend_Form_Element_Submit</link>.
740 As such, the label is used for the button display, and will be
741 translated if a translation adapter is present. It utilizes only the
742 'ViewHelper' and 'DtDdWrapper' decorators, as there should never be
743 error messages for such elements, nor will a label be necessary.
747 <sect2 id="zend.form.standardElements.select">
748 <title>Zend_Form_Element_Select</title>
751 Select boxes are a common way of limiting to specific choices for a
752 given form datum. <classname>Zend_Form_Element_Select</classname> allows you
753 to generate these quickly and easily.
757 By default, this element registers an <classname>InArray</classname> validator
758 which validates against the array keys of registered options. You
759 can disable this behavior by either calling
760 <methodname>setRegisterInArrayValidator(false)</methodname>, or by passing a
761 <constant>FALSE</constant> value to the <property>registerInArrayValidator</property>
766 As it extends the base Multi element, the following methods may be
767 used to manipulate the select options:
772 <para><methodname>addMultiOption($option, $value)</methodname></para>
776 <para><methodname>addMultiOptions(array $options)</methodname></para>
781 <methodname>setMultiOptions(array $options)</methodname>
782 (overwrites existing options)
786 <listitem><para><methodname>getMultiOption($option)</methodname></para></listitem>
787 <listitem><para><methodname>getMultiOptions()</methodname></para></listitem>
788 <listitem><para><methodname>removeMultiOption($option)</methodname></para></listitem>
789 <listitem><para><methodname>clearMultiOptions()</methodname></para></listitem>
793 <classname>Zend_Form_Element_Select</classname> uses the 'formSelect' view
794 helper for decoration.
798 <sect2 id="zend.form.standardElements.submit">
799 <title>Zend_Form_Element_Submit</title>
802 Submit buttons are used to submit a form. You may use multiple
803 submit buttons; you can use the button used to submit the form to
804 decide what action to take with the data submitted.
805 <classname>Zend_Form_Element_Submit</classname> makes this decisioning easy,
806 by adding a <methodname>isChecked()</methodname> method; as only one button
807 element will be submitted by the form, after populating or
808 validating the form, you can call this method on each submit button
809 to determine which one was used.
813 <classname>Zend_Form_Element_Submit</classname> uses the label as the "value"
814 of the submit button, translating it if a translation adapter is
815 present. <methodname>isChecked()</methodname> checks the submitted value against
816 the label in order to determine if the button was used.
821 linkend="zend.form.standardDecorators.viewHelper">ViewHelper</link>
823 linkend="zend.form.standardDecorators.dtDdWrapper">DtDdWrapper</link>
824 decorators to render the element. No label decorator is used, as the
825 button label is used when rendering the element; also, typically,
826 you will not associate errors with a submit element.
830 <sect2 id="zend.form.standardElements.text">
831 <title>Zend_Form_Element_Text</title>
834 By far the most prevalent type of form element is the text element,
835 allowing for limited text entry; it's an ideal element for most data
836 entry. <classname>Zend_Form_Element_Text</classname> simply uses the
837 'formText' view helper to display the element.
841 <sect2 id="zend.form.standardElements.textarea">
842 <title>Zend_Form_Element_Textarea</title>
845 Textareas are used when large quantities of text are expected, and
846 place no limits on the amount of text submitted (other than maximum
847 size limits as dictated by your server or <acronym>PHP</acronym>).
848 <classname>Zend_Form_Element_Textarea</classname> uses the 'textArea' view
849 helper to display such elements, placing the value as the content of
855 vim:se ts=4 sw=4 tw=80 et: