File tree 10 files changed +54
-18
lines changed
10 files changed +54
-18
lines changed Original file line number Diff line number Diff line change @@ -81,12 +81,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
81
81
82
82
.. include :: /reference/forms/types/options/disabled.rst.inc
83
83
84
- .. include :: /reference/forms/types/options/empty_data .rst.inc
84
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
85
85
:end-before: DEFAULT_PLACEHOLDER
86
86
87
87
The default value is ``'' `` (the empty string).
88
88
89
- .. include :: /reference/forms/types/options/empty_data .rst.inc
89
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
90
90
:start-after: DEFAULT_PLACEHOLDER
91
91
92
92
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -56,12 +56,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
56
56
57
57
.. include :: /reference/forms/types/options/disabled.rst.inc
58
58
59
- .. include :: /reference/forms/types/options/empty_data .rst.inc
59
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
60
60
:end-before: DEFAULT_PLACEHOLDER
61
61
62
62
The default value is ``'' `` (the empty string).
63
63
64
- .. include :: /reference/forms/types/options/empty_data .rst.inc
64
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
65
65
:start-after: DEFAULT_PLACEHOLDER
66
66
67
67
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change
1
+ ``empty_data``
2
+ ~~~~~~~~~~~~~~
3
+
4
+ **type **: ``mixed``
5
+
6
+ .. This file should only be included with start-after or end -before that' s
7
+ set to this placeholder value. Its purpose is to let us include only
8
+ part of this file.
9
+
10
+ DEFAULT_PLACEHOLDER
11
+
12
+ This option determines what value the field will *return* when the submitted
13
+ value is empty (or missing). It does not set an initial value if none is
14
+ provided when the form is rendered in a view.
15
+
16
+ This means it helps you handling form submission with blank fields. For
17
+ example, if you want the ``name`` field to be explicitly set to ``John Doe``
18
+ when no value is selected, you can do it like this::
19
+
20
+ $builder->add(' name ' , null, [
21
+ ' required' => false,
22
+ ' empty_data' => ' John Doe' ,
23
+ ]);
24
+
25
+ This will still render an empty text box, but upon submission the ``John Doe``
26
+ value will be set. Use the ``data`` or ``placeholder`` options to show this
27
+ initial value in the rendered form.
28
+
29
+ If a form is compound, you can set ``empty_data`` as an array, object or
30
+ closure. See the :doc:`/form/use_empty_data` article for more details about
31
+ these options.
32
+
33
+ .. note::
34
+
35
+ If you want to set the ``empty_data`` option for your entire form class,
36
+ see the :doc:`/form/use_empty_data` article.
Original file line number Diff line number Diff line change @@ -79,12 +79,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
79
79
80
80
.. include :: /reference/forms/types/options/disabled.rst.inc
81
81
82
- .. include :: /reference/forms/types/options/empty_data .rst.inc
82
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
83
83
:end-before: DEFAULT_PLACEHOLDER
84
84
85
85
The default value is ``'' `` (the empty string).
86
86
87
- .. include :: /reference/forms/types/options/empty_data .rst.inc
87
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
88
88
:start-after: DEFAULT_PLACEHOLDER
89
89
90
90
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -70,12 +70,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
70
70
71
71
.. include :: /reference/forms/types/options/disabled.rst.inc
72
72
73
- .. include :: /reference/forms/types/options/empty_data .rst.inc
73
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
74
74
:end-before: DEFAULT_PLACEHOLDER
75
75
76
76
The default value is ``'' `` (the empty string).
77
77
78
- .. include :: /reference/forms/types/options/empty_data .rst.inc
78
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
79
79
:start-after: DEFAULT_PLACEHOLDER
80
80
81
81
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
55
55
56
56
.. include :: /reference/forms/types/options/disabled.rst.inc
57
57
58
- .. include :: /reference/forms/types/options/empty_data .rst.inc
58
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
59
59
:end-before: DEFAULT_PLACEHOLDER
60
60
61
61
The default value is ``'' `` (the empty string).
62
62
63
- .. include :: /reference/forms/types/options/empty_data .rst.inc
63
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
64
64
:start-after: DEFAULT_PLACEHOLDER
65
65
66
66
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -62,12 +62,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
62
62
63
63
.. include :: /reference/forms/types/options/disabled.rst.inc
64
64
65
- .. include :: /reference/forms/types/options/empty_data .rst.inc
65
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
66
66
:end-before: DEFAULT_PLACEHOLDER
67
67
68
68
The default value is ``'' `` (the empty string).
69
69
70
- .. include :: /reference/forms/types/options/empty_data .rst.inc
70
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
71
71
:start-after: DEFAULT_PLACEHOLDER
72
72
73
73
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
47
47
48
48
.. include :: /reference/forms/types/options/disabled.rst.inc
49
49
50
- .. include :: /reference/forms/types/options/empty_data .rst.inc
50
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
51
51
:end-before: DEFAULT_PLACEHOLDER
52
52
53
53
From an HTTP perspective, submitted data is always a string or an array of strings.
54
54
So by default, the form will treat any empty string as null. If you prefer to get
55
55
an empty string, explicitly set the ``empty_data `` option to an empty string.
56
56
57
- .. include :: /reference/forms/types/options/empty_data .rst.inc
57
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
58
58
:start-after: DEFAULT_PLACEHOLDER
59
59
60
60
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
50
50
51
51
.. include :: /reference/forms/types/options/disabled.rst.inc
52
52
53
- .. include :: /reference/forms/types/options/empty_data .rst.inc
53
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
54
54
:end-before: DEFAULT_PLACEHOLDER
55
55
56
56
The default value is ``'' `` (the empty string).
57
57
58
- .. include :: /reference/forms/types/options/empty_data .rst.inc
58
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
59
59
:start-after: DEFAULT_PLACEHOLDER
60
60
61
61
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
Original file line number Diff line number Diff line change @@ -71,12 +71,12 @@ These options inherit from the :doc:`FormType </reference/forms/types/form>`:
71
71
72
72
.. include :: /reference/forms/types/options/disabled.rst.inc
73
73
74
- .. include :: /reference/forms/types/options/empty_data .rst.inc
74
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
75
75
:end-before: DEFAULT_PLACEHOLDER
76
76
77
77
The default value is ``'' `` (the empty string).
78
78
79
- .. include :: /reference/forms/types/options/empty_data .rst.inc
79
+ .. include :: /reference/forms/types/options/text_empty_data .rst.inc
80
80
:start-after: DEFAULT_PLACEHOLDER
81
81
82
82
.. include :: /reference/forms/types/options/error_bubbling.rst.inc
You can’t perform that action at this time.
0 commit comments