PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 3.06.06
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v3.06.06
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 +1 -14 6.43.06.06 View file →
@@ -1,8 +1,5 @@
1 1 <?php
2 -if ( ! defined( 'ABSPATH' ) ) {
3 - die( 'You are not allowed to call this page directly.' );
4 -}
5 2
6 3 /**
7 4 * @since 3.0
8 5 */
@@ -31,18 +28,11 @@
31 28 * @since 3.0
32 29 */
33 30 protected $holds_email_values = true;
34 31
35 - /**
36 - * @var bool
37 - */
38 - protected $array_allowed = false;
39 -
40 32 protected function field_settings_for_type() {
41 - $settings = parent::field_settings_for_type();
33 + $settings = parent::field_settings_for_type();
42 34 $settings['css'] = false;
43 - $settings['default'] = true;
44 -
45 35 return $settings;
46 36 }
47 37
48 38 protected function include_form_builder_file() {
@@ -48,11 +38,8 @@
48 38 protected function include_form_builder_file() {
49 39 return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-hidden.php';
50 40 }
51 41
52 - /**
53 - * @return string
54 - */
55 42 protected function html5_input_type() {
56 43 return 'hidden';
57 44 }
58 45 }