PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4
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/FrmFieldSelect.php +2 -18 6.255.4 View file →
@@ -23,22 +23,15 @@
23 23 protected function include_form_builder_file() {
24 24 return $this->include_front_form_file();
25 25 }
26 26
27 - /**
28 - * @return bool[]
29 - */
30 27 protected function field_settings_for_type() {
31 28 return array(
32 29 'clear_on_focus' => true,
33 - 'size' => true,
34 - 'invalid' => true,
30 + 'size' => true,
35 31 );
36 32 }
37 33
38 - /**
39 - * @return string[]
40 - */
41 34 protected function new_field_settings() {
42 35 return array(
43 36 'options' => serialize(
44 37 array(
@@ -62,27 +55,18 @@
62 55 }
63 56
64 57 /**
65 58 * @since 4.0
66 - *
67 - * @param array $args Includes 'field', 'display', and 'values'.
68 - *
69 - * @return void
59 + * @param array $args - Includes 'field', 'display', and 'values'
70 60 */
71 61 public function show_extra_field_choices( $args ) {
72 62 $this->auto_width_setting( $args );
73 63 }
74 64
75 - /**
76 - * @return string
77 - */
78 65 protected function include_front_form_file() {
79 66 return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/front-end/dropdown-field.php';
80 67 }
81 68
82 - /**
83 - * @return bool
84 - */
85 69 protected function show_readonly_hidden() {
86 70 return true;
87 71 }
88 72