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/FrmFieldCheckbox.php +1 -15 6.35.4 View file →
@@ -35,11 +35,8 @@
35 35 protected function include_form_builder_file() {
36 36 return $this->include_front_form_file();
37 37 }
38 38
39 - /**
40 - * @return string[]
41 - */
42 39 protected function new_field_settings() {
43 40 return array(
44 41 'options' => serialize(
45 42 array(
@@ -61,11 +58,8 @@
61 58 $this->type => true,
62 59 );
63 60 }
64 61
65 - /**
66 - * @return array
67 - */
68 62 protected function extra_field_opts() {
69 63 $form_id = $this->get_field_column( 'form_id' );
70 64
71 65 return array(
@@ -74,25 +68,17 @@
74 68 }
75 69
76 70 /**
77 71 * @since 4.06
78 - *
79 - * @return void
80 72 */
81 73 protected function show_priority_field_choices( $args = array() ) {
82 - 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' );
83 75 }
84 76
85 - /**
86 - * @return string
87 - */
88 77 protected function include_front_form_file() {
89 78 return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/front-end/checkbox-field.php';
90 79 }
91 80
92 - /**
93 - * @return bool
94 - */
95 81 protected function show_readonly_hidden() {
96 82 return true;
97 83 }
98 84