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/FrmFieldRadio.php +1 -20 6.35.4 View file →
@@ -27,13 +27,8 @@
27 27 * @since 3.06.01
28 28 */
29 29 protected $has_for_label = false;
30 30
31 - /**
32 - * @var bool
33 - */
34 - protected $array_allowed = false;
35 -
36 31 protected function input_html() {
37 32 return $this->multiple_input_html();
38 33 }
39 34
@@ -52,11 +47,8 @@
52 47 $this->type => true,
53 48 );
54 49 }
55 50
56 - /**
57 - * @return array
58 - */
59 51 protected function extra_field_opts() {
60 52 $form_id = $this->get_field_column( 'form_id' );
61 53
62 54 return array(
@@ -63,11 +55,8 @@
63 55 'align' => FrmStylesController::get_style_val( 'radio_align', ( empty( $form_id ) ? 'default' : $form_id ) ),
64 56 );
65 57 }
66 58
67 - /**
68 - * @return string[]
69 - */
70 59 protected function new_field_settings() {
71 60 return array(
72 61 'options' => serialize(
73 62 array(
@@ -79,25 +68,17 @@
79 68 }
80 69
81 70 /**
82 71 * @since 4.06
83 - *
84 - * @return void
85 72 */
86 73 protected function show_priority_field_choices( $args = array() ) {
87 - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/radio-images.php';
74 + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/radio-images.php' );
88 75 }
89 76
90 - /**
91 - * @return string
92 - */
93 77 protected function include_front_form_file() {
94 78 return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/front-end/radio-field.php';
95 79 }
96 80
97 - /**
98 - * @return bool
99 - */
100 81 protected function show_readonly_hidden() {
101 82 return true;
102 83 }
103 84 }