We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7d507 commit 676e29fCopy full SHA for 676e29f
core/Form/PlainForm.class.php
@@ -116,6 +116,15 @@ public function getRawValue($name)
116
return $this->get($name)->getRawValue();
117
}
118
119
+ public function getValueOrDefault($name)
120
+ {
121
+ return $this->get($name)->getValueOrDefault();
122
+ }
123
+
124
+ /**
125
+ * @deprecated since version 1.0
126
+ * @see getValueOrDefault
127
+ */
128
public function getActualValue($name)
129
{
130
return $this->get($name)->getActualValue();
@@ -160,4 +169,4 @@ public function getPrimitiveList()
160
169
return $this->primitives;
161
170
162
171
163
-?>
172
0 commit comments