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/widgets/FrmShowForm.php +0 -13 6.35.4 View file →
@@ -31,24 +31,12 @@
31 31 echo '</div>';
32 32 echo FrmAppHelper::kses( $args['after_widget'], 'all' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
33 33 }
34 34
35 - /**
36 - * @param array $new_instance New settings for this instance as input by the user via
37 - * WP_Widget::form().
38 - * @param array $old_instance Old settings for this instance.
39 - * @return array Settings to save or bool false to cancel saving.
40 - */
41 35 public function update( $new_instance, $old_instance ) {
42 36 return $new_instance;
43 37 }
44 38
45 - /**
46 - * Outputs the settings update form.
47 - *
48 - * @param array $instance Current settings.
49 - * @return string Default return is 'noform'.
50 - */
51 39 public function form( $instance ) {
52 40 $defaults = array(
53 41 'title' => false,
54 42 'form' => false,
@@ -91,7 +79,6 @@
91 79 <?php esc_html_e( 'Show Description', 'formidable' ); ?>
92 80 </label>
93 81 </p>
94 82 <?php
95 - return 'noform';
96 83 }
97 84 }