PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/fields/FrmFieldHidden.php +2 -17 6.265.0 View file →
@@ -9,9 +9,8 @@
9 9 class FrmFieldHidden extends FrmFieldType {
10 10
11 11 /**
12 12 * @var string
13 - *
14 13 * @since 3.0
15 14 */
16 15 protected $type = 'hidden';
17 16
@@ -16,9 +15,8 @@
16 15 protected $type = 'hidden';
17 16
18 17 /**
19 18 * @var bool
20 - *
21 19 * @since 3.0
22 20 */
23 21 protected $has_input = false;
24 22
@@ -23,9 +21,8 @@
23 21 protected $has_input = false;
24 22
25 23 /**
26 24 * @var bool
27 - *
28 25 * @since 3.0
29 26 */
30 27 protected $has_html = false;
31 28
@@ -30,24 +27,15 @@
30 27 protected $has_html = false;
31 28
32 29 /**
33 30 * @var bool
34 - *
35 31 * @since 3.0
36 32 */
37 33 protected $holds_email_values = true;
38 34
39 - /**
40 - * @var bool
41 - */
42 - protected $array_allowed = false;
43 -
44 - /**
45 - * @return array
46 - */
47 35 protected function field_settings_for_type() {
48 - $settings = parent::field_settings_for_type();
49 - $settings['css'] = false;
36 + $settings = parent::field_settings_for_type();
37 + $settings['css'] = false;
50 38 $settings['default'] = true;
51 39
52 40 return $settings;
53 41 }
@@ -55,11 +43,8 @@
55 43 protected function include_form_builder_file() {
56 44 return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-hidden.php';
57 45 }
58 46
59 - /**
60 - * @return string
61 - */
62 47 protected function html5_input_type() {
63 48 return 'hidden';
64 49 }
65 50 }