| @@ -4,15 +4,8 @@ | ||
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | class FrmFieldsController { |
| 7 | 7 | |
| 8 | - /** | |
| 9 | - * This is stored statically so we can re-use this data for every field. | |
| 10 | - * | |
| 11 | - * @var FrmFieldSelectionData|null | |
| 12 | - */ | |
| 13 | - private static $field_selection_data; | |
| 14 | - | |
| 15 | 8 | public static function load_field() { |
| 16 | 9 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 17 | 10 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 18 | 11 | |
| @@ -18,10 +11,9 @@ | ||
| 18 | 11 | |
| 19 | 12 | // Javascript may be included in some field settings. |
| 20 | 13 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
| 21 | 14 | $fields = isset( $_POST['field'] ) ? wp_unslash( $_POST['field'] ) : array(); |
| 22 | - | |
| 23 | - if ( ! $fields ) { | |
| 15 | + if ( empty( $fields ) ) { | |
| 24 | 16 | wp_die(); |
| 25 | 17 | } |
| 26 | 18 | |
| 27 | 19 | $_GET['page'] = 'formidable'; |
| @@ -34,11 +26,10 @@ | ||
| 34 | 26 | |
| 35 | 27 | foreach ( $fields as $field ) { |
| 36 | 28 | $field = htmlspecialchars_decode( nl2br( $field ) ); |
| 37 | 29 | $field = json_decode( $field ); |
| 38 | - | |
| 39 | 30 | if ( ! isset( $field->id ) || ! is_numeric( $field->id ) ) { |
| 40 | - // This field may have already been loaded | |
| 31 | + // this field may have already been loaded | |
| 41 | 32 | continue; |
| 42 | 33 | } |
| 43 | 34 | |
| 44 | 35 | if ( ! isset( $field->value ) ) { |
| @@ -49,10 +40,11 @@ | ||
| 49 | 40 | $field->default_value = json_decode( json_encode( $field->default_value ), true ); |
| 50 | 41 | |
| 51 | 42 | ob_start(); |
| 52 | 43 | self::load_single_field( $field, $values ); |
| 53 | - $field_html[ absint( $field->id ) ] = ob_get_clean(); | |
| 54 | - }//end foreach | |
| 44 | + $field_html[ absint( $field->id ) ] = ob_get_contents(); | |
| 45 | + ob_end_clean(); | |
| 46 | + } | |
| 55 | 47 | |
| 56 | 48 | echo json_encode( $field_html ); |
| 57 | 49 | |
| 58 | 50 | wp_die(); |
| @@ -64,17 +56,16 @@ | ||
| 64 | 56 | public static function create() { |
| 65 | 57 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 66 | 58 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 67 | 59 | |
| 68 | - $field_type = FrmAppHelper::get_post_param( 'field_type', '', 'sanitize_text_field' ); | |
| 69 | - $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' ); | |
| 70 | - $field_options = FrmAppHelper::get_post_param( 'field_options', array(), 'wp_kses_post' ); | |
| 60 | + $field_type = FrmAppHelper::get_post_param( 'field_type', '', 'sanitize_text_field' ); | |
| 61 | + $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' ); | |
| 71 | 62 | |
| 72 | 63 | do_action( 'frm_before_create_field', $field_type, $form_id ); |
| 73 | 64 | |
| 74 | - $field = self::include_new_field( $field_type, $form_id, $field_options ); | |
| 65 | + $field = self::include_new_field( $field_type, $form_id ); | |
| 75 | 66 | |
| 76 | - // This hook will allow for multiple fields to be added at once | |
| 67 | + // this hook will allow for multiple fields to be added at once | |
| 77 | 68 | do_action( 'frm_after_field_created', $field, $form_id ); |
| 78 | 69 | |
| 79 | 70 | wp_die(); |
| 80 | 71 | } |
| @@ -82,40 +73,29 @@ | ||
| 82 | 73 | /** |
| 83 | 74 | * Set up and create a new field |
| 84 | 75 | * |
| 85 | 76 | * @param string $field_type |
| 86 | - * @param int $form_id | |
| 87 | - * @param array $field_options | |
| 77 | + * @param integer $form_id | |
| 88 | 78 | * |
| 89 | - * @return array|false | |
| 79 | + * @return array|bool | |
| 90 | 80 | */ |
| 91 | - public static function include_new_field( $field_type, $form_id, $field_options = array() ) { | |
| 81 | + public static function include_new_field( $field_type, $form_id ) { | |
| 92 | 82 | $field_values = FrmFieldsHelper::setup_new_vars( $field_type, $form_id ); |
| 83 | + $field_values = apply_filters( 'frm_before_field_created', $field_values ); | |
| 93 | 84 | |
| 94 | - if ( $field_options ) { | |
| 95 | - $field_values['field_options'] = array_merge( $field_values['field_options'], $field_options ); | |
| 96 | - } | |
| 85 | + $field_id = FrmField::create( $field_values ); | |
| 97 | 86 | |
| 98 | - // When a new field is added to the form, flag it as draft and hide it from the front-end. | |
| 99 | - $field_values['field_options']['draft'] = 1; | |
| 100 | - | |
| 101 | - /** | |
| 102 | - * @param array $field_values | |
| 103 | - */ | |
| 104 | - $field_values = apply_filters( 'frm_before_field_created', $field_values ); | |
| 105 | - $field_id = FrmField::create( $field_values ); | |
| 106 | - | |
| 107 | 87 | if ( ! $field_id ) { |
| 108 | 88 | return false; |
| 109 | 89 | } |
| 110 | 90 | |
| 111 | - $field = self::get_field_array_from_id( $field_id ); | |
| 91 | + $field = self::get_field_array_from_id( $field_id ); | |
| 92 | + | |
| 112 | 93 | $values = array(); |
| 113 | - | |
| 114 | 94 | if ( FrmAppHelper::pro_is_installed() ) { |
| 115 | 95 | $values['post_type'] = FrmProFormsHelper::post_type( $form_id ); |
| 116 | - $parent_form_id = FrmDb::get_var( 'frm_forms', array( 'id' => $form_id ), 'parent_form_id' ); | |
| 117 | 96 | |
| 97 | + $parent_form_id = FrmDb::get_var( 'frm_forms', array( 'id' => $form_id ), 'parent_form_id' ); | |
| 118 | 98 | if ( $parent_form_id ) { |
| 119 | 99 | $field['parent_form_id'] = $parent_form_id; |
| 120 | 100 | } |
| 121 | 101 | } |
| @@ -128,10 +108,11 @@ | ||
| 128 | 108 | public static function duplicate() { |
| 129 | 109 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 130 | 110 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 131 | 111 | |
| 132 | - $field_id = FrmAppHelper::get_post_param( 'field_id', 0, 'absint' ); | |
| 133 | - $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' ); | |
| 112 | + $field_id = FrmAppHelper::get_post_param( 'field_id', 0, 'absint' ); | |
| 113 | + $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' ); | |
| 114 | + | |
| 134 | 115 | $new_field = FrmField::duplicate_single_field( $field_id, $form_id ); |
| 135 | 116 | |
| 136 | 117 | if ( is_array( $new_field ) && ! empty( $new_field['field_id'] ) ) { |
| 137 | 118 | self::load_single_field( $new_field['field_id'], $new_field['values'] ); |
| @@ -148,8 +129,9 @@ | ||
| 148 | 129 | * @return array |
| 149 | 130 | */ |
| 150 | 131 | public static function get_field_array_from_id( $field_id ) { |
| 151 | 132 | $field = FrmField::getOne( $field_id ); |
| 133 | + | |
| 152 | 134 | return FrmFieldsHelper::setup_edit_vars( $field ); |
| 153 | 135 | } |
| 154 | 136 | |
| 155 | 137 | /** |
| @@ -154,13 +136,11 @@ | ||
| 154 | 136 | |
| 155 | 137 | /** |
| 156 | 138 | * @since 3.0 |
| 157 | 139 | * |
| 158 | - * @param array|int|object|string $field_object | |
| 159 | - * @param array $values | |
| 160 | - * @param int $form_id | |
| 161 | - * | |
| 162 | - * @return void | |
| 140 | + * @param int|array|object $field_object | |
| 141 | + * @param array $values | |
| 142 | + * @param int $form_id | |
| 163 | 143 | */ |
| 164 | 144 | public static function load_single_field( $field_object, $values, $form_id = 0 ) { |
| 165 | 145 | global $frm_vars; |
| 166 | 146 | $frm_vars['is_admin'] = true; |
| @@ -171,62 +151,56 @@ | ||
| 171 | 151 | $field = $field_object; |
| 172 | 152 | $field_object = FrmField::getOne( $field['id'] ); |
| 173 | 153 | } |
| 174 | 154 | |
| 175 | - $field_obj = FrmFieldFactory::get_field_factory( $field_object ); | |
| 176 | - $display = self::display_field_options( array(), $field_obj ); | |
| 177 | - $ajax_loading = ! empty( $values['ajax_load'] ); | |
| 178 | - $ajax_this_field = isset( $values['count'] ) && $values['count'] > 10 && ! in_array( $field_object->type, array( 'divider', 'end_divider' ), true ); | |
| 155 | + $field_obj = FrmFieldFactory::get_field_factory( $field_object ); | |
| 156 | + $display = self::display_field_options( array(), $field_obj ); | |
| 179 | 157 | |
| 158 | + $ajax_loading = isset( $values['ajax_load'] ) && $values['ajax_load']; | |
| 159 | + $ajax_this_field = isset( $values['count'] ) && $values['count'] > 10 && ! in_array( $field_object->type, array( 'divider', 'end_divider' ) ); | |
| 160 | + | |
| 180 | 161 | if ( $ajax_loading && $ajax_this_field ) { |
| 181 | 162 | $li_classes = self::get_classes_for_builder_field( array(), $display, $field_obj ); |
| 182 | - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/ajax-field-placeholder.php'; | |
| 183 | - return; | |
| 184 | - } | |
| 163 | + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/ajax-field-placeholder.php' ); | |
| 164 | + } else { | |
| 165 | + if ( ! isset( $field ) && is_object( $field_object ) ) { | |
| 166 | + $field_object->parent_form_id = isset( $values['id'] ) ? $values['id'] : $field_object->form_id; | |
| 185 | 167 | |
| 186 | - if ( ! isset( $field ) && is_object( $field_object ) ) { | |
| 187 | - $field_object->parent_form_id = $values['id'] ?? $field_object->form_id; | |
| 188 | - $field = FrmFieldsHelper::setup_edit_vars( $field_object ); | |
| 189 | - } | |
| 168 | + $field = FrmFieldsHelper::setup_edit_vars( $field_object ); | |
| 169 | + } | |
| 190 | 170 | |
| 191 | - /** | |
| 192 | - * Filter for adding extra attributes to the field container. | |
| 193 | - * | |
| 194 | - * @since 6.23 | |
| 195 | - * | |
| 196 | - * @param array $extra_field_attributes | |
| 197 | - * @param array $field | |
| 198 | - * @param array $display | |
| 199 | - */ | |
| 200 | - $extra_field_attributes = apply_filters( 'frm_field_container_extra_attributes', array(), $field, $display ); | |
| 171 | + $li_classes = self::get_classes_for_builder_field( $field, $display, $field_obj ); | |
| 172 | + $li_classes .= ' ui-state-default widgets-holder-wrap'; | |
| 201 | 173 | |
| 202 | - $li_classes = self::get_classes_for_builder_field( $field, $display, $field_obj ); | |
| 203 | - $li_classes .= ' ui-state-default widgets-holder-wrap'; | |
| 204 | - | |
| 205 | - require FrmAppHelper::plugin_path() . '/classes/views/frm-forms/add_field.php'; | |
| 174 | + require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/add_field.php' ); | |
| 175 | + } | |
| 206 | 176 | } |
| 207 | 177 | |
| 208 | 178 | /** |
| 209 | 179 | * @since 3.0 |
| 210 | - * | |
| 211 | - * @param array $field | |
| 212 | - * @param array $display | |
| 213 | - * @param FrmFieldType $field_info | |
| 214 | - * | |
| 215 | - * @return string | |
| 216 | 180 | */ |
| 217 | 181 | private static function get_classes_for_builder_field( $field, $display, $field_info ) { |
| 218 | - $li_classes = $field_info->form_builder_classes( $display['type'] ); | |
| 182 | + $li_classes = $field_info->form_builder_classes( $display['type'] ); | |
| 183 | + $classes = isset( $field['classes'] ) ? $field['classes'] : ''; | |
| 184 | + | |
| 185 | + // Exclude alignright for now since we aren't using widths. | |
| 186 | + $classes = str_replace( ' frm_alignright ', ' ', $classes ); | |
| 187 | + $classes = trim( $classes ); | |
| 188 | + | |
| 189 | + if ( 'frm_alignright' === $classes ) { | |
| 190 | + $classes = ''; | |
| 191 | + } | |
| 192 | + | |
| 219 | 193 | $li_classes .= ' frm_form_field frmstart '; |
| 220 | 194 | |
| 221 | - if ( isset( $field['classes'] ) ) { | |
| 222 | - $li_classes .= trim( $field['classes'] ) . ' '; | |
| 195 | + if ( $classes ) { | |
| 196 | + $li_classes .= $classes . ' '; | |
| 223 | 197 | } |
| 224 | 198 | |
| 225 | 199 | $li_classes .= 'frmend'; |
| 226 | 200 | |
| 227 | 201 | if ( $field ) { |
| 228 | - return apply_filters( 'frm_build_field_class', $li_classes, $field ); | |
| 202 | + $li_classes = apply_filters( 'frm_build_field_class', $li_classes, $field ); | |
| 229 | 203 | } |
| 230 | 204 | |
| 231 | 205 | return $li_classes; |
| 232 | 206 | } |
| @@ -239,11 +213,10 @@ | ||
| 239 | 213 | FrmField::destroy( $field_id ); |
| 240 | 214 | wp_die(); |
| 241 | 215 | } |
| 242 | 216 | |
| 243 | - /** | |
| 244 | - * Field Options. | |
| 245 | - */ | |
| 217 | + /* Field Options */ | |
| 218 | + | |
| 246 | 219 | public static function import_options() { |
| 247 | 220 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 248 | 221 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 249 | 222 | |
| @@ -250,40 +223,27 @@ | ||
| 250 | 223 | if ( ! is_admin() || ! current_user_can( 'frm_edit_forms' ) ) { |
| 251 | 224 | return; |
| 252 | 225 | } |
| 253 | 226 | |
| 254 | - $field_id = FrmAppHelper::get_param( 'field_id', '', 'post', 'absint' ); | |
| 255 | - $field = FrmField::getOne( $field_id ); | |
| 256 | - $bulk_edit_types = array( 'radio', 'checkbox', 'select' ); | |
| 227 | + $field_id = FrmAppHelper::get_param( 'field_id', '', 'post', 'absint' ); | |
| 228 | + $field = FrmField::getOne( $field_id ); | |
| 257 | 229 | |
| 258 | - /** | |
| 259 | - * Filter to add new fields that will support import_options/Bulk Edit Options. | |
| 260 | - * | |
| 261 | - * @since 6.8.4 | |
| 262 | - * | |
| 263 | - * @param array $bulk_edit_types | |
| 264 | - * | |
| 265 | - * @return array | |
| 266 | - */ | |
| 267 | - $bulk_edit_types = apply_filters( 'frm_bulk_edit_field_types', $bulk_edit_types ); | |
| 268 | - | |
| 269 | - if ( ! in_array( $field->type, $bulk_edit_types, true ) ) { | |
| 230 | + if ( ! in_array( $field->type, array( 'radio', 'checkbox', 'select' ) ) ) { | |
| 270 | 231 | return; |
| 271 | 232 | } |
| 272 | 233 | |
| 273 | 234 | $field = FrmFieldsHelper::setup_edit_vars( $field ); |
| 235 | + $opts = FrmAppHelper::get_param( 'opts', '', 'post', 'wp_kses_post' ); | |
| 236 | + $opts = explode( "\n", rtrim( $opts, "\n" ) ); | |
| 237 | + $opts = array_map( 'trim', $opts ); | |
| 274 | 238 | |
| 275 | - $opts = FrmAppHelper::get_param( 'opts', '', 'post', 'wp_kses_post' ); | |
| 276 | - $opts = explode( "\n", rtrim( $opts, "\n" ) ); | |
| 277 | - $opts = array_map( 'trim', $opts ); | |
| 239 | + $separate = FrmAppHelper::get_param( 'separate', '', 'post', 'sanitize_text_field' ); | |
| 240 | + $field['separate_value'] = ( $separate === 'true' ); | |
| 278 | 241 | |
| 279 | - $separate = FrmAppHelper::get_param( 'separate', '', 'post', 'sanitize_text_field' ); | |
| 280 | - $field['separate_value'] = $separate === 'true'; | |
| 281 | - | |
| 282 | 242 | if ( $field['separate_value'] ) { |
| 283 | 243 | foreach ( $opts as $opt_key => $opt ) { |
| 284 | - if ( str_contains( $opt, '|' ) ) { | |
| 285 | - $vals = explode( '|', $opt ); | |
| 244 | + if ( strpos( $opt, '|' ) !== false ) { | |
| 245 | + $vals = explode( '|', $opt ); | |
| 286 | 246 | $opts[ $opt_key ] = array( |
| 287 | 247 | 'label' => trim( $vals[0] ), |
| 288 | 248 | 'value' => trim( $vals[1] ), |
| 289 | 249 | ); |
| @@ -293,12 +253,10 @@ | ||
| 293 | 253 | } |
| 294 | 254 | } |
| 295 | 255 | |
| 296 | 256 | // Keep other options after bulk update. |
| 297 | - // phpcs:ignore Universal.Operators.StrictComparisons | |
| 298 | - if ( ! empty( $field['field_options']['other'] ) ) { | |
| 257 | + if ( isset( $field['field_options']['other'] ) && $field['field_options']['other'] == true ) { | |
| 299 | 258 | $other_array = array(); |
| 300 | - | |
| 301 | 259 | foreach ( $field['options'] as $opt_key => $opt ) { |
| 302 | 260 | if ( FrmFieldsHelper::is_other_opt( $opt_key ) ) { |
| 303 | 261 | $other_array[ $opt_key ] = $opt; |
| 304 | 262 | } |
| @@ -303,10 +261,9 @@ | ||
| 303 | 261 | $other_array[ $opt_key ] = $opt; |
| 304 | 262 | } |
| 305 | 263 | unset( $opt_key, $opt ); |
| 306 | 264 | } |
| 307 | - | |
| 308 | - if ( $other_array ) { | |
| 265 | + if ( ! empty( $other_array ) ) { | |
| 309 | 266 | $opts = array_merge( $opts, $other_array ); |
| 310 | 267 | } |
| 311 | 268 | } |
| 312 | 269 | |
| @@ -320,10 +277,8 @@ | ||
| 320 | 277 | /** |
| 321 | 278 | * @since 4.0 |
| 322 | 279 | * |
| 323 | 280 | * @param array $atts - Includes field array, field_obj, display array, values array. |
| 324 | - * | |
| 325 | - * @return void | |
| 326 | 281 | */ |
| 327 | 282 | public static function load_single_field_settings( $atts ) { |
| 328 | 283 | $field = $atts['field']; |
| 329 | 284 | $field_obj = $atts['field_obj']; |
| @@ -338,19 +293,19 @@ | ||
| 338 | 293 | if ( ! isset( $field['read_only'] ) ) { |
| 339 | 294 | $field['read_only'] = false; |
| 340 | 295 | } |
| 341 | 296 | |
| 342 | - $field_selection_data = self::maybe_define_field_selection_data(); | |
| 343 | - $all_field_types = $field_selection_data->all_field_types; | |
| 344 | - $disabled_fields = $field_selection_data->disabled_fields; | |
| 345 | - $frm_settings = FrmAppHelper::get_settings(); | |
| 346 | - $field_types = FrmFieldTypeOptionData::get_field_types( $field['type'] ); | |
| 297 | + $field_types = FrmFieldsHelper::get_field_types( $field['type'] ); | |
| 298 | + $pro_field_selection = FrmField::pro_field_selection(); | |
| 299 | + $all_field_types = array_merge( $pro_field_selection, FrmField::field_selection() ); | |
| 300 | + $disabled_fields = FrmAppHelper::pro_is_installed() ? array() : $pro_field_selection; | |
| 301 | + $frm_settings = FrmAppHelper::get_settings(); | |
| 347 | 302 | |
| 348 | 303 | if ( ! isset( $all_field_types[ $field['type'] ] ) ) { |
| 349 | 304 | // Add fallback for an add-on field type that has been deactivated. |
| 350 | 305 | $all_field_types[ $field['type'] ] = array( |
| 351 | 306 | 'name' => ucfirst( $field['type'] ), |
| 352 | - 'icon' => 'frmfont frm_pencil_icon', | |
| 307 | + 'icon' => 'frm_icon_font frm_pencil_icon', | |
| 353 | 308 | ); |
| 354 | 309 | } elseif ( ! is_array( $all_field_types[ $field['type'] ] ) ) { |
| 355 | 310 | // Fallback for fields added in a more basic way. |
| 356 | 311 | FrmFormsHelper::prepare_field_type( $all_field_types[ $field['type'] ] ); |
| @@ -356,9 +311,8 @@ | ||
| 356 | 311 | FrmFormsHelper::prepare_field_type( $all_field_types[ $field['type'] ] ); |
| 357 | 312 | } |
| 358 | 313 | |
| 359 | 314 | $type_name = $all_field_types[ $field['type'] ]['name']; |
| 360 | - | |
| 361 | 315 | if ( $field['type'] === 'divider' && FrmField::is_option_true( $field, 'repeat' ) ) { |
| 362 | 316 | $type_name = $all_field_types['divider|repeat']['name']; |
| 363 | 317 | } |
| 364 | 318 | |
| @@ -368,77 +322,61 @@ | ||
| 368 | 322 | |
| 369 | 323 | if ( $display['clear_on_focus'] && is_array( $field['placeholder'] ) ) { |
| 370 | 324 | $field['placeholder'] = implode( ', ', $field['placeholder'] ); |
| 371 | 325 | } |
| 372 | - | |
| 373 | - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/settings.php'; | |
| 326 | + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/settings.php' ); | |
| 374 | 327 | } |
| 375 | 328 | |
| 376 | 329 | /** |
| 377 | - * @since 6.9.1 | |
| 378 | - * | |
| 379 | - * @return FrmFieldSelectionData | |
| 380 | - */ | |
| 381 | - private static function maybe_define_field_selection_data() { | |
| 382 | - if ( ! isset( self::$field_selection_data ) ) { | |
| 383 | - self::$field_selection_data = new FrmFieldSelectionData(); | |
| 384 | - } | |
| 385 | - return self::$field_selection_data; | |
| 386 | - } | |
| 387 | - | |
| 388 | - /** | |
| 389 | 330 | * Get the list of default value types that can be toggled in the builder. |
| 390 | 331 | * |
| 391 | 332 | * @since 4.0 |
| 392 | - * | |
| 393 | - * @param array $field | |
| 394 | - * @param array $atts | |
| 395 | - * | |
| 396 | 333 | * @return array |
| 397 | 334 | */ |
| 398 | 335 | private static function default_value_types( $field, $atts ) { |
| 399 | 336 | $types = array( |
| 400 | - 'default_value' => array( | |
| 337 | + 'default_value' => array( | |
| 401 | 338 | 'class' => '', |
| 402 | - 'icon' => 'frmfont frm_text2_icon', | |
| 403 | - 'title' => __( 'Default Value', 'formidable' ), | |
| 339 | + 'icon' => 'frm_icon_font frm_text2_icon', | |
| 340 | + 'title' => __( 'Default Value (Text)', 'formidable' ), | |
| 404 | 341 | 'data' => array( |
| 405 | 342 | 'frmshow' => '#default-value-for-', |
| 406 | 343 | ), |
| 407 | 344 | ), |
| 408 | - 'calc' => array( | |
| 409 | - 'class' => 'frm_show_upgrade frm_noallow', | |
| 410 | - 'title' => __( 'Calculate Value', 'formidable' ), | |
| 411 | - 'icon' => 'frmfont frm_calculator_icon', | |
| 412 | - 'data' => array( | |
| 345 | + 'calc' => array( | |
| 346 | + 'class' => 'frm_show_upgrade frm_noallow', | |
| 347 | + 'title' => __( 'Default Value (Calculation)', 'formidable' ), | |
| 348 | + 'icon' => 'frm_icon_font frm_calculator_icon', | |
| 349 | + 'data' => array( | |
| 413 | 350 | 'medium' => 'calculations', |
| 414 | 351 | 'upgrade' => __( 'Calculator forms', 'formidable' ), |
| 415 | 352 | ), |
| 416 | - 'tooltip' => __( 'Automatically calculate the value of this field based on values from other fields.', 'formidable' ), | |
| 417 | 353 | ), |
| 418 | 354 | 'get_values_field' => array( |
| 419 | - 'class' => 'frm_show_upgrade frm_noallow', | |
| 420 | - 'title' => __( 'Lookup', 'formidable' ), | |
| 421 | - 'icon' => 'frmfont frm_search_icon', | |
| 422 | - 'data' => array( | |
| 355 | + 'class' => 'frm_show_upgrade frm_noallow', | |
| 356 | + 'title' => __( 'Default Value (Lookup)', 'formidable' ), | |
| 357 | + 'icon' => 'frm_icon_font frm_search_icon', | |
| 358 | + 'data' => array( | |
| 423 | 359 | 'medium' => 'lookup', |
| 424 | 360 | 'upgrade' => __( 'Lookup fields', 'formidable' ), |
| 425 | 361 | ), |
| 426 | - 'tooltip' => __( 'Dynamically retrieve the value of this field from a lookup field.', 'formidable' ), | |
| 427 | 362 | ), |
| 428 | 363 | ); |
| 429 | 364 | |
| 430 | 365 | $types = apply_filters( 'frm_default_value_types', $types, $atts ); |
| 431 | 366 | |
| 367 | + if ( FrmAppHelper::pro_is_installed() && ! FrmAppHelper::meets_min_pro_version( '4.0' ) ) { | |
| 368 | + // Prevent settings from showing in 2 spots. | |
| 369 | + unset( $types['calc'], $types['get_values_field'] ); | |
| 370 | + } | |
| 371 | + | |
| 432 | 372 | // Set active class. |
| 433 | 373 | $settings = array_keys( $types ); |
| 434 | 374 | $active = 'default_value'; |
| 435 | 375 | |
| 436 | - if ( FrmAppHelper::pro_is_connected() ) { | |
| 437 | - foreach ( $settings as $type ) { | |
| 438 | - if ( ! empty( $field[ $type ] ) ) { | |
| 439 | - $active = $type; | |
| 440 | - } | |
| 376 | + foreach ( $settings as $type ) { | |
| 377 | + if ( ! empty( $field[ $type ] ) ) { | |
| 378 | + $active = $type; | |
| 441 | 379 | } |
| 442 | 380 | } |
| 443 | 381 | |
| 444 | 382 | $types[ $active ]['class'] .= ' current'; |
| @@ -446,13 +384,8 @@ | ||
| 446 | 384 | |
| 447 | 385 | return $types; |
| 448 | 386 | } |
| 449 | 387 | |
| 450 | - /** | |
| 451 | - * @param string $type | |
| 452 | - * | |
| 453 | - * @return string | |
| 454 | - */ | |
| 455 | 388 | public static function change_type( $type ) { |
| 456 | 389 | $type_switch = array( |
| 457 | 390 | 'scale' => 'radio', |
| 458 | 391 | 'star' => 'radio', |
| @@ -460,32 +393,30 @@ | ||
| 460 | 393 | 'rte' => 'textarea', |
| 461 | 394 | 'website' => 'url', |
| 462 | 395 | 'image' => 'url', |
| 463 | 396 | ); |
| 464 | - | |
| 465 | 397 | if ( isset( $type_switch[ $type ] ) ) { |
| 466 | 398 | $type = $type_switch[ $type ]; |
| 467 | 399 | } |
| 468 | 400 | |
| 469 | 401 | $pro_fields = FrmField::pro_field_selection(); |
| 470 | - // We want to keep credit_card types as credit card types for Stripe Lite. | |
| 471 | - // The credit_card key is set for backward compatibility. | |
| 472 | - unset( $pro_fields['credit_card'] ); | |
| 402 | + $types = array_keys( $pro_fields ); | |
| 403 | + if ( in_array( $type, $types ) ) { | |
| 404 | + $type = 'text'; | |
| 405 | + } | |
| 473 | 406 | |
| 474 | - return array_key_exists( $type, $pro_fields ) ? 'text' : $type; | |
| 407 | + return $type; | |
| 475 | 408 | } |
| 476 | 409 | |
| 477 | 410 | /** |
| 478 | - * @param array $settings | |
| 479 | - * @param FrmFieldType|null $field_info | |
| 411 | + * @param array $settings | |
| 412 | + * @param object $field_info | |
| 480 | 413 | * |
| 481 | 414 | * @return array |
| 482 | 415 | */ |
| 483 | 416 | public static function display_field_options( $settings, $field_info = null ) { |
| 484 | 417 | if ( $field_info ) { |
| 485 | - $settings = $field_info->display_field_settings(); | |
| 486 | - | |
| 487 | - // Field appears to be protected but there is a __get function in FrmFieldType that makes this public. | |
| 418 | + $settings = $field_info->display_field_settings(); | |
| 488 | 419 | $settings['field_data'] = $field_info->field; |
| 489 | 420 | } |
| 490 | 421 | |
| 491 | 422 | return apply_filters( 'frm_display_field_options', $settings ); |
| @@ -495,32 +426,14 @@ | ||
| 495 | 426 | * Display the format option |
| 496 | 427 | * |
| 497 | 428 | * @since 3.0 |
| 498 | 429 | * |
| 499 | - * @param array $field Field data. | |
| 500 | - * @param bool $is_hidden Whether the format option should be hidden. | |
| 501 | - * | |
| 502 | - * @return void | |
| 430 | + * @param array $field | |
| 503 | 431 | */ |
| 504 | - public static function show_format_option( $field, $is_hidden = false ) { | |
| 505 | - $attributes = array( | |
| 506 | - 'class' => 'frm-has-modal', | |
| 507 | - 'id' => 'frm-field-format-custom-' . $field['id'], | |
| 508 | - ); | |
| 509 | - | |
| 510 | - if ( $is_hidden ) { | |
| 511 | - $attributes['class'] .= ' frm_hidden'; | |
| 512 | - } | |
| 513 | - | |
| 514 | - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/value-format.php'; | |
| 432 | + public static function show_format_option( $field ) { | |
| 433 | + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/value-format.php' ); | |
| 515 | 434 | } |
| 516 | 435 | |
| 517 | - /** | |
| 518 | - * @param array $field | |
| 519 | - * @param bool $echo | |
| 520 | - * | |
| 521 | - * @return string | |
| 522 | - */ | |
| 523 | 436 | public static function input_html( $field, $echo = true ) { |
| 524 | 437 | $class = array(); |
| 525 | 438 | self::add_input_classes( $field, $class ); |
| 526 | 439 | |
| @@ -540,26 +453,20 @@ | ||
| 540 | 453 | $add_html = apply_filters( 'frm_field_extra_html', $add_html, $field ); |
| 541 | 454 | $add_html = ' ' . implode( ' ', $add_html ) . ' '; |
| 542 | 455 | |
| 543 | 456 | if ( $echo ) { |
| 544 | - echo $add_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 457 | + echo $add_html; // WPCS: XSS ok. | |
| 545 | 458 | } |
| 546 | 459 | |
| 547 | 460 | return $add_html; |
| 548 | 461 | } |
| 549 | 462 | |
| 550 | - /** | |
| 551 | - * @param array $field | |
| 552 | - * @param array $class | |
| 553 | - * | |
| 554 | - * @return void | |
| 555 | - */ | |
| 556 | 463 | private static function add_input_classes( $field, array &$class ) { |
| 557 | - if ( ! empty( $field['input_class'] ) ) { | |
| 464 | + if ( isset( $field['input_class'] ) && ! empty( $field['input_class'] ) ) { | |
| 558 | 465 | $class[] = $field['input_class']; |
| 559 | 466 | } |
| 560 | 467 | |
| 561 | - if ( $field['type'] === 'hidden' || $field['type'] === 'user_id' ) { | |
| 468 | + if ( $field['type'] == 'hidden' || $field['type'] == 'user_id' ) { | |
| 562 | 469 | return; |
| 563 | 470 | } |
| 564 | 471 | |
| 565 | 472 | if ( isset( $field['size'] ) && $field['size'] > 0 ) { |
| @@ -566,14 +473,8 @@ | ||
| 566 | 473 | $class[] = 'auto_width'; |
| 567 | 474 | } |
| 568 | 475 | } |
| 569 | 476 | |
| 570 | - /** | |
| 571 | - * @param array $field | |
| 572 | - * @param array $add_html | |
| 573 | - * | |
| 574 | - * @return void | |
| 575 | - */ | |
| 576 | 477 | private static function add_html_size( $field, array &$add_html ) { |
| 577 | 478 | $size_fields = array( |
| 578 | 479 | 'select', |
| 579 | 480 | 'data', |
| @@ -582,9 +483,9 @@ | ||
| 582 | 483 | 'file', |
| 583 | 484 | 'lookup', |
| 584 | 485 | ); |
| 585 | 486 | |
| 586 | - if ( ! isset( $field['size'] ) || $field['size'] <= 0 || in_array( $field['type'], $size_fields, true ) ) { | |
| 487 | + if ( ! isset( $field['size'] ) || $field['size'] <= 0 || in_array( $field['type'], $size_fields ) ) { | |
| 587 | 488 | return; |
| 588 | 489 | } |
| 589 | 490 | |
| 590 | 491 | if ( FrmAppHelper::is_admin_page( 'formidable' ) ) { |
| @@ -601,16 +502,10 @@ | ||
| 601 | 502 | |
| 602 | 503 | self::add_html_cols( $field, $add_html ); |
| 603 | 504 | } |
| 604 | 505 | |
| 605 | - /** | |
| 606 | - * @param array $field | |
| 607 | - * @param array $add_html | |
| 608 | - * | |
| 609 | - * @return void | |
| 610 | - */ | |
| 611 | 506 | private static function add_html_cols( $field, array &$add_html ) { |
| 612 | - if ( ! in_array( $field['type'], array( 'textarea', 'rte' ), true ) ) { | |
| 507 | + if ( ! in_array( $field['type'], array( 'textarea', 'rte' ) ) ) { | |
| 613 | 508 | return; |
| 614 | 509 | } |
| 615 | 510 | |
| 616 | 511 | // Convert to cols for textareas. |
| @@ -620,9 +515,9 @@ | ||
| 620 | 515 | 'rem' => 0.444, |
| 621 | 516 | 'em' => 0.544, |
| 622 | 517 | ); |
| 623 | 518 | |
| 624 | - // Include "col" for valid html | |
| 519 | + // include "col" for valid html | |
| 625 | 520 | $unit = trim( preg_replace( '/[0-9]+/', '', $field['size'] ) ); |
| 626 | 521 | |
| 627 | 522 | if ( ! isset( $calc[ $unit ] ) ) { |
| 628 | 523 | return; |
| @@ -627,18 +522,13 @@ | ||
| 627 | 522 | if ( ! isset( $calc[ $unit ] ) ) { |
| 628 | 523 | return; |
| 629 | 524 | } |
| 630 | 525 | |
| 631 | - $size = (float) str_replace( $unit, '', $field['size'] ) / $calc[ $unit ]; | |
| 526 | + $size = (float) str_replace( $unit, '', $field['size'] ) / $calc[ $unit ]; | |
| 527 | + | |
| 632 | 528 | $add_html['cols'] = 'cols="' . absint( $size ) . '"'; |
| 633 | 529 | } |
| 634 | 530 | |
| 635 | - /** | |
| 636 | - * @param array $field | |
| 637 | - * @param array $add_html | |
| 638 | - * | |
| 639 | - * @return void | |
| 640 | - */ | |
| 641 | 531 | private static function add_html_length( $field, array &$add_html ) { |
| 642 | 532 | // Check for max setting and if this field accepts maxlength. |
| 643 | 533 | $fields = array( |
| 644 | 534 | 'textarea', |
| @@ -646,9 +536,9 @@ | ||
| 646 | 536 | 'hidden', |
| 647 | 537 | 'file', |
| 648 | 538 | ); |
| 649 | 539 | |
| 650 | - if ( FrmField::is_option_empty( $field, 'max' ) || in_array( $field['type'], $fields, true ) ) { | |
| 540 | + if ( FrmField::is_option_empty( $field, 'max' ) || in_array( $field['type'], $fields ) ) { | |
| 651 | 541 | return; |
| 652 | 542 | } |
| 653 | 543 | |
| 654 | 544 | if ( FrmAppHelper::is_admin_page( 'formidable' ) ) { |
| @@ -658,17 +548,9 @@ | ||
| 658 | 548 | |
| 659 | 549 | $add_html['maxlength'] = 'maxlength="' . esc_attr( $field['max'] ) . '"'; |
| 660 | 550 | } |
| 661 | 551 | |
| 662 | - /** | |
| 663 | - * @param array $field | |
| 664 | - * @param array $add_html | |
| 665 | - * @param array $class | |
| 666 | - * | |
| 667 | - * @return void | |
| 668 | - */ | |
| 669 | 552 | private static function add_html_placeholder( $field, array &$add_html, array &$class ) { |
| 670 | - // phpcs:ignore Universal.Operators.StrictComparisons | |
| 671 | 553 | if ( $field['default_value'] != '' ) { |
| 672 | 554 | if ( is_array( $field['default_value'] ) ) { |
| 673 | 555 | $add_html['data-frmval'] = 'data-frmval="' . esc_attr( json_encode( $field['default_value'] ) ) . '"'; |
| 674 | 556 | } else { |
| @@ -676,29 +558,43 @@ | ||
| 676 | 558 | } |
| 677 | 559 | } |
| 678 | 560 | |
| 679 | 561 | $field['placeholder'] = self::prepare_placeholder( $field ); |
| 680 | - | |
| 681 | - // phpcs:ignore Universal.Operators.StrictComparisons | |
| 682 | 562 | if ( $field['placeholder'] == '' || is_array( $field['placeholder'] ) ) { |
| 683 | - // Don't include a json placeholder | |
| 563 | + // don't include a json placeholder | |
| 684 | 564 | return; |
| 685 | 565 | } |
| 686 | 566 | |
| 687 | - self::add_placeholder_to_input( $field, $add_html ); | |
| 567 | + $frm_settings = FrmAppHelper::get_settings(); | |
| 568 | + | |
| 569 | + if ( $frm_settings->use_html ) { | |
| 570 | + self::add_placeholder_to_input( $field, $add_html ); | |
| 571 | + } else { | |
| 572 | + self::add_frmval_to_input( $field, $add_html ); | |
| 573 | + | |
| 574 | + $class[] = 'frm_toggle_default'; | |
| 575 | + | |
| 576 | + if ( $field['value'] == $field['placeholder'] ) { | |
| 577 | + $class[] = 'frm_default'; | |
| 578 | + } | |
| 579 | + } | |
| 688 | 580 | } |
| 689 | 581 | |
| 690 | 582 | /** |
| 691 | - * Prepares field placeholder. | |
| 692 | - * | |
| 693 | - * @since 5.4 This doesn't call `FrmFieldsController::get_default_value_from_name()` anymore. | |
| 694 | - * | |
| 695 | - * @param array $field Field array. | |
| 696 | - * | |
| 583 | + * @param array $field | |
| 697 | 584 | * @return string |
| 698 | 585 | */ |
| 699 | 586 | private static function prepare_placeholder( $field ) { |
| 700 | - return $field['placeholder'] ?? ''; | |
| 587 | + $placeholder = isset( $field['placeholder'] ) ? $field['placeholder'] : ''; | |
| 588 | + $placeholder_is_blank = empty( $placeholder ) && '0' !== $placeholder; | |
| 589 | + $is_placeholder_field = FrmFieldsHelper::is_placeholder_field_type( $field['type'] ); | |
| 590 | + $is_combo_field = in_array( $field['type'], array( 'address', 'credit_card' ), true ); | |
| 591 | + | |
| 592 | + if ( $placeholder_is_blank && $is_placeholder_field && ! $is_combo_field ) { | |
| 593 | + $placeholder = self::get_default_value_from_name( $field ); | |
| 594 | + } | |
| 595 | + | |
| 596 | + return $placeholder; | |
| 701 | 597 | } |
| 702 | 598 | |
| 703 | 599 | /** |
| 704 | 600 | * If the label position is "inside", |
| @@ -704,9 +600,8 @@ | ||
| 704 | 600 | * If the label position is "inside", |
| 705 | 601 | * get the label to use as the placeholder |
| 706 | 602 | * |
| 707 | 603 | * @since 2.05 |
| 708 | - * @since 5.4 Remove the logic code for "inside" label position. | |
| 709 | 604 | * |
| 710 | 605 | * @param array $field |
| 711 | 606 | * |
| 712 | 607 | * @return string |
| @@ -711,9 +606,19 @@ | ||
| 711 | 606 | * |
| 712 | 607 | * @return string |
| 713 | 608 | */ |
| 714 | 609 | public static function get_default_value_from_name( $field ) { |
| 715 | - return ''; | |
| 610 | + $position = FrmField::get_option( $field, 'label' ); | |
| 611 | + if ( $position == 'inside' ) { | |
| 612 | + $default_value = $field['name']; | |
| 613 | + if ( FrmField::is_required( $field ) ) { | |
| 614 | + $default_value .= ' ' . $field['required_indicator']; | |
| 615 | + } | |
| 616 | + } else { | |
| 617 | + $default_value = ''; | |
| 618 | + } | |
| 619 | + | |
| 620 | + return $default_value; | |
| 716 | 621 | } |
| 717 | 622 | |
| 718 | 623 | /** |
| 719 | 624 | * Maybe add a blank placeholder option before any options |
| @@ -719,39 +624,22 @@ | ||
| 719 | 624 | * Maybe add a blank placeholder option before any options |
| 720 | 625 | * in a dropdown. |
| 721 | 626 | * |
| 722 | 627 | * @since 4.04 |
| 723 | - * | |
| 724 | - * @param array|object $field | |
| 725 | - * | |
| 726 | 628 | * @return bool True if placeholder was added. |
| 727 | 629 | */ |
| 728 | 630 | public static function add_placeholder_to_select( $field ) { |
| 729 | 631 | $placeholder = FrmField::get_option( $field, 'placeholder' ); |
| 730 | - | |
| 731 | - if ( ! $placeholder ) { | |
| 632 | + if ( empty( $placeholder ) ) { | |
| 732 | 633 | $placeholder = self::get_default_value_from_name( $field ); |
| 733 | 634 | } |
| 734 | 635 | |
| 735 | - $use_placeholder = $placeholder; | |
| 736 | - $autocomplete = FrmField::get_option( $field, 'autocom' ); | |
| 737 | - | |
| 738 | - if ( $autocomplete ) { | |
| 739 | - $use_chosen = ! is_callable( 'FrmProAppHelper::use_chosen_js' ) || FrmProAppHelper::use_chosen_js(); | |
| 740 | - | |
| 741 | - if ( $use_chosen ) { | |
| 742 | - $use_placeholder = ''; | |
| 743 | - } | |
| 744 | - } | |
| 745 | - | |
| 746 | 636 | if ( $placeholder !== '' ) { |
| 747 | - $placeholder_attributes = array( | |
| 748 | - 'class' => 'frm-select-placeholder', | |
| 749 | - 'value' => '', | |
| 750 | - 'data-placeholder' => 'true', | |
| 751 | - ); | |
| 752 | - | |
| 753 | - FrmHtmlHelper::echo_dropdown_option( $use_placeholder, false, $placeholder_attributes ); | |
| 637 | + ?> | |
| 638 | + <option value=""> | |
| 639 | + <?php echo esc_html( FrmField::get_option( $field, 'autocom' ) ? '' : $placeholder ); ?> | |
| 640 | + </option> | |
| 641 | + <?php | |
| 754 | 642 | return true; |
| 755 | 643 | } |
| 756 | 644 | |
| 757 | 645 | return false; |
| @@ -757,14 +645,12 @@ | ||
| 757 | 645 | return false; |
| 758 | 646 | } |
| 759 | 647 | |
| 760 | 648 | /** |
| 761 | - * Use HTML5 placeholder with js fallback. | |
| 649 | + * Use HMTL5 placeholder with js fallback | |
| 762 | 650 | * |
| 763 | 651 | * @param array $field |
| 764 | 652 | * @param array $add_html |
| 765 | - * | |
| 766 | - * @return void | |
| 767 | 653 | */ |
| 768 | 654 | private static function add_placeholder_to_input( $field, &$add_html ) { |
| 769 | 655 | if ( FrmFieldsHelper::is_placeholder_field_type( $field['type'] ) ) { |
| 770 | 656 | $add_html['placeholder'] = 'placeholder="' . esc_attr( $field['placeholder'] ) . '"'; |
| @@ -770,16 +656,9 @@ | ||
| 770 | 656 | $add_html['placeholder'] = 'placeholder="' . esc_attr( $field['placeholder'] ) . '"'; |
| 771 | 657 | } |
| 772 | 658 | } |
| 773 | 659 | |
| 774 | - /** | |
| 775 | - * @param array $field | |
| 776 | - * @param array $add_html | |
| 777 | - * | |
| 778 | - * @return void | |
| 779 | - */ | |
| 780 | 660 | private static function add_frmval_to_input( $field, &$add_html ) { |
| 781 | - // phpcs:ignore Universal.Operators.StrictComparisons | |
| 782 | 661 | if ( $field['placeholder'] != '' ) { |
| 783 | 662 | $add_html['data-frmval'] = 'data-frmval="' . esc_attr( $field['placeholder'] ) . '"'; |
| 784 | 663 | |
| 785 | 664 | if ( 'select' === $field['type'] ) { |
| @@ -786,30 +665,21 @@ | ||
| 786 | 665 | $add_html['data-frmplaceholder'] = 'data-frmplaceholder="' . esc_attr( $field['placeholder'] ) . '"'; |
| 787 | 666 | } |
| 788 | 667 | } |
| 789 | 668 | |
| 790 | - // phpcs:ignore Universal.Operators.StrictComparisons | |
| 791 | 669 | if ( $field['default_value'] != '' ) { |
| 792 | 670 | $add_html['data-frmval'] = 'data-frmval="' . esc_attr( $field['default_value'] ) . '"'; |
| 793 | 671 | } |
| 794 | 672 | } |
| 795 | 673 | |
| 796 | - /** | |
| 797 | - * @param array $field | |
| 798 | - * @param array $add_html | |
| 799 | - * | |
| 800 | - * @return void | |
| 801 | - */ | |
| 802 | 674 | private static function add_validation_messages( $field, array &$add_html ) { |
| 803 | - $field_validation_messages_status = self::get_validation_data_attribute_visibility_info( $field ); | |
| 804 | - | |
| 805 | - if ( FrmField::is_required( $field ) && ! empty( $field_validation_messages_status['data-reqmsg'] ) ) { | |
| 675 | + if ( FrmField::is_required( $field ) ) { | |
| 806 | 676 | $required_message = FrmFieldsHelper::get_error_msg( $field, 'blank' ); |
| 807 | 677 | $add_html['data-reqmsg'] = 'data-reqmsg="' . esc_attr( $required_message ) . '"'; |
| 808 | 678 | self::maybe_add_html_required( $field, $add_html ); |
| 809 | 679 | } |
| 810 | 680 | |
| 811 | - if ( ! FrmField::is_option_empty( $field, 'invalid' ) && ! empty( $field_validation_messages_status['data-invmsg'] ) ) { | |
| 681 | + if ( ! FrmField::is_option_empty( $field, 'invalid' ) ) { | |
| 812 | 682 | $invalid_message = FrmFieldsHelper::get_error_msg( $field, 'invalid' ); |
| 813 | 683 | $add_html['data-invmsg'] = 'data-invmsg="' . esc_attr( $invalid_message ) . '"'; |
| 814 | 684 | } |
| 815 | 685 | |
| @@ -818,63 +688,24 @@ | ||
| 818 | 688 | } |
| 819 | 689 | } |
| 820 | 690 | |
| 821 | 691 | /** |
| 822 | - * Returns an array that contains field validation messages status. | |
| 823 | - * | |
| 824 | - * @since 6.9 | |
| 825 | - * | |
| 826 | - * @param array|object $field | |
| 827 | - * | |
| 828 | - * @return array | |
| 829 | - */ | |
| 830 | - private static function get_validation_data_attribute_visibility_info( $field ) { | |
| 831 | - if ( FrmField::get_field_type( $field ) === 'hidden' ) { | |
| 832 | - $field_validation_data_attributes = array( | |
| 833 | - 'data-invmsg' => false, | |
| 834 | - 'data-reqmsg' => false, | |
| 835 | - ); | |
| 836 | - } else { | |
| 837 | - $field_validation_data_attributes = array( | |
| 838 | - 'data-invmsg' => true, | |
| 839 | - 'data-reqmsg' => true, | |
| 840 | - ); | |
| 841 | - } | |
| 842 | - | |
| 843 | - /** | |
| 844 | - * Allows controlling which field validation messages would be included in the field html. | |
| 845 | - * | |
| 846 | - * @since 6.9 | |
| 847 | - * | |
| 848 | - * @param array $field_validation_messages_status | |
| 849 | - * @param array|object $field | |
| 850 | - */ | |
| 851 | - return apply_filters( 'frm_field_validation_include_data_attributes', $field_validation_data_attributes, $field ); | |
| 852 | - } | |
| 853 | - | |
| 854 | - /** | |
| 855 | 692 | * @since 5.0.03 |
| 856 | 693 | * |
| 857 | 694 | * @param array $field |
| 858 | 695 | * @param array $add_html |
| 859 | - * | |
| 860 | - * @return void | |
| 861 | 696 | */ |
| 862 | 697 | private static function maybe_add_error_html_for_js_validation( $field, array &$add_html ) { |
| 863 | 698 | $form = self::get_form_for_js_validation( $field ); |
| 864 | - | |
| 865 | 699 | if ( false === $form ) { |
| 866 | 700 | return; |
| 867 | 701 | } |
| 868 | 702 | |
| 869 | 703 | $error_body = self::pull_custom_error_body_from_custom_html( $form, $field ); |
| 870 | - | |
| 871 | - if ( false === $error_body ) { | |
| 872 | - return; | |
| 704 | + if ( false !== $error_body ) { | |
| 705 | + $error_body = urlencode( $error_body ); | |
| 706 | + $add_html['data-error-html'] = 'data-error-html="' . esc_attr( $error_body ) . '"'; | |
| 873 | 707 | } |
| 874 | - | |
| 875 | - $error_body = urlencode( $error_body ); | |
| 876 | - $add_html['data-error-html'] = 'data-error-html="' . esc_attr( $error_body ) . '"'; | |
| 877 | 708 | } |
| 878 | 709 | |
| 879 | 710 | /** |
| 880 | 711 | * @since 5.0.03 |
| @@ -879,24 +710,20 @@ | ||
| 879 | 710 | /** |
| 880 | 711 | * @since 5.0.03 |
| 881 | 712 | * |
| 882 | 713 | * @param array $field |
| 883 | - * | |
| 884 | - * @return false|stdClass false if there is no form object found with JS validation active. | |
| 714 | + * @return stdClass|false false if there is no form object found with JS validation active. | |
| 885 | 715 | */ |
| 886 | 716 | private static function get_form_for_js_validation( $field ) { |
| 887 | 717 | global $frm_vars; |
| 888 | - | |
| 889 | 718 | if ( ! empty( $frm_vars['js_validate_forms'] ) ) { |
| 890 | 719 | if ( isset( $frm_vars['js_validate_forms'][ $field['form_id'] ] ) ) { |
| 891 | 720 | return $frm_vars['js_validate_forms'][ $field['form_id'] ]; |
| 892 | 721 | } |
| 893 | - | |
| 894 | 722 | if ( ! empty( $field['parent_form_id'] ) && isset( $frm_vars['js_validate_forms'][ $field['parent_form_id'] ] ) ) { |
| 895 | 723 | return $frm_vars['js_validate_forms'][ $field['parent_form_id'] ]; |
| 896 | 724 | } |
| 897 | 725 | } |
| 898 | - | |
| 899 | 726 | return false; |
| 900 | 727 | } |
| 901 | 728 | |
| 902 | 729 | /** |
| @@ -902,10 +729,9 @@ | ||
| 902 | 729 | /** |
| 903 | 730 | * @param stdClass $form |
| 904 | 731 | * @param array $field |
| 905 | 732 | * @param array $errors |
| 906 | - * | |
| 907 | - * @return false|string | |
| 733 | + * @return string|false | |
| 908 | 734 | */ |
| 909 | 735 | public static function pull_custom_error_body_from_custom_html( $form, $field, $errors = array() ) { |
| 910 | 736 | if ( empty( $field['custom_html'] ) ) { |
| 911 | 737 | return false; |
| @@ -912,16 +738,15 @@ | ||
| 912 | 738 | } |
| 913 | 739 | |
| 914 | 740 | $custom_html = $field['custom_html']; |
| 915 | 741 | $custom_html = apply_filters( 'frm_before_replace_shortcodes', $custom_html, $field, $errors, $form ); |
| 916 | - $start = strpos( $custom_html, '[if error]' ); | |
| 917 | 742 | |
| 743 | + $start = strpos( $custom_html, '[if error]' ); | |
| 918 | 744 | if ( false === $start ) { |
| 919 | 745 | return false; |
| 920 | 746 | } |
| 921 | 747 | |
| 922 | 748 | $end = strpos( $custom_html, '[/if error]' ); |
| 923 | - | |
| 924 | 749 | if ( false === $end || $end < $start ) { |
| 925 | 750 | return false; |
| 926 | 751 | } |
| 927 | 752 | |
| @@ -927,14 +752,16 @@ | ||
| 927 | 752 | |
| 928 | 753 | $error_body = substr( $custom_html, $start + 10, $end - $start - 10 ); |
| 929 | 754 | $default_html = array( |
| 930 | 755 | '<div class="frm_error" id="frm_error_field_[key]">[error]</div>', |
| 931 | - '<div class="frm_error" role="alert" id="frm_error_field_[key]">[error]</div>', | |
| 932 | 756 | '<div class="frm_error">[error]</div>', |
| 933 | - '<div class="frm_error" role="alert">[error]</div>', | |
| 934 | 757 | ); |
| 935 | 758 | |
| 936 | - return in_array( $error_body, $default_html, true ) ? false : $error_body; | |
| 759 | + if ( in_array( $error_body, $default_html, true ) ) { | |
| 760 | + return false; | |
| 761 | + } | |
| 762 | + | |
| 763 | + return $error_body; | |
| 937 | 764 | } |
| 938 | 765 | |
| 939 | 766 | /** |
| 940 | 767 | * If 'required' is added to a conditionally hidden field, the form won't |
| @@ -941,64 +768,33 @@ | ||
| 941 | 768 | * submit in many browsers. Check to make sure the javascript to conditionally |
| 942 | 769 | * remove it is present if needed. |
| 943 | 770 | * |
| 944 | 771 | * @since 3.06.01 |
| 945 | - * | |
| 946 | 772 | * @param array $field |
| 947 | 773 | * @param array $add_html |
| 948 | - * | |
| 949 | - * @return void | |
| 950 | 774 | */ |
| 951 | 775 | private static function maybe_add_html_required( $field, array &$add_html ) { |
| 952 | - // phpcs:disable Generic.WhiteSpace.ScopeIndent | |
| 953 | - $excluded_field_types = | |
| 954 | - FrmField::is_radio( $field ) || | |
| 955 | - FrmField::is_checkbox( $field ) || | |
| 956 | - FrmField::is_field_type( $field, 'file' ) || | |
| 957 | - FrmField::is_field_type( $field, 'nps' ) || | |
| 958 | - FrmField::is_field_type( $field, 'scale' ); | |
| 959 | - // phpcs:enable Generic.WhiteSpace.ScopeIndent | |
| 960 | - | |
| 961 | - if ( $excluded_field_types ) { | |
| 776 | + if ( in_array( $field['type'], array( 'file', 'data', 'lookup' ), true ) ) { | |
| 962 | 777 | return; |
| 963 | 778 | } |
| 964 | 779 | |
| 965 | - $add_html['aria-required'] = 'aria-required="true"'; | |
| 780 | + $include_html = FrmAppHelper::meets_min_pro_version( '3.06.01' ); | |
| 781 | + if ( $include_html ) { | |
| 782 | + $add_html['aria-required'] = 'aria-required="true"'; | |
| 783 | + } | |
| 966 | 784 | } |
| 967 | 785 | |
| 968 | - /** | |
| 969 | - * @param array $field | |
| 970 | - * @param array $add_html | |
| 971 | - * | |
| 972 | - * @return void | |
| 973 | - */ | |
| 974 | 786 | private static function add_shortcodes_to_html( $field, array &$add_html ) { |
| 975 | 787 | if ( FrmField::is_option_empty( $field, 'shortcodes' ) ) { |
| 976 | 788 | return; |
| 977 | 789 | } |
| 978 | 790 | |
| 979 | - if ( ! empty( $field['autocomplete'] ) ) { | |
| 980 | - unset( $field['shortcodes']['autocomplete'] ); | |
| 981 | - } | |
| 982 | - | |
| 983 | 791 | foreach ( $field['shortcodes'] as $k => $v ) { |
| 984 | - if ( isset( $field['subfield_name'] ) && str_starts_with( $k, 'aria-invalid' ) ) { | |
| 985 | - $subfield_name = $field['subfield_name']; | |
| 986 | - | |
| 987 | - if ( ! isset( $field['shortcodes'][ 'aria-invalid-' . $subfield_name ] ) ) { | |
| 988 | - continue; | |
| 989 | - } | |
| 990 | - // Change the key to the correct aria-invalid value so that $add_html is set correctly for the current subfield of a combo field. | |
| 991 | - $k = 'aria-invalid'; | |
| 992 | - $v = $field['shortcodes'][ 'aria-invalid-' . $subfield_name ]; | |
| 993 | - unset( $field['shortcodes'][ 'aria-invalid-' . $subfield_name ] ); | |
| 994 | - } | |
| 995 | - | |
| 996 | - if ( 'opt' === $k || ! self::should_allow_input_attribute( $k ) ) { | |
| 792 | + if ( 'opt' === $k ) { | |
| 997 | 793 | continue; |
| 998 | 794 | } |
| 999 | 795 | |
| 1000 | - if ( is_numeric( $k ) && str_contains( $v, '=' ) ) { | |
| 796 | + if ( is_numeric( $k ) && strpos( $v, '=' ) ) { | |
| 1001 | 797 | $add_html[] = $v; |
| 1002 | 798 | } elseif ( ! empty( $k ) && isset( $add_html[ $k ] ) ) { |
| 1003 | 799 | $add_html[ $k ] = str_replace( $k . '="', $k . '="' . $v, $add_html[ $k ] ); |
| 1004 | 800 | } else { |
| @@ -1005,65 +801,41 @@ | ||
| 1005 | 801 | $add_html[ $k ] = $k . '="' . esc_attr( $v ) . '"'; |
| 1006 | 802 | } |
| 1007 | 803 | |
| 1008 | 804 | unset( $k, $v ); |
| 1009 | - }//end foreach | |
| 1010 | - } | |
| 1011 | - | |
| 1012 | - /** | |
| 1013 | - * Disallow possibly unsafe attributees (that trigger JavaScript) when unasfe HTML is not allowed. | |
| 1014 | - * | |
| 1015 | - * @since 6.11.2 | |
| 1016 | - * | |
| 1017 | - * @param string $key The option key. | |
| 1018 | - * | |
| 1019 | - * @return bool | |
| 1020 | - */ | |
| 1021 | - private static function should_allow_input_attribute( $key ) { | |
| 1022 | - if ( ! FrmAppHelper::should_never_allow_unfiltered_html() ) { | |
| 1023 | - return true; | |
| 1024 | 805 | } |
| 1025 | - return FrmAppHelper::input_key_is_safe( $key ); | |
| 1026 | 806 | } |
| 1027 | 807 | |
| 1028 | 808 | /** |
| 1029 | - * Add pattern attribute. | |
| 809 | + * Add pattern attribute | |
| 1030 | 810 | * |
| 1031 | 811 | * @since 3.0 |
| 1032 | 812 | * |
| 1033 | 813 | * @param array $field |
| 1034 | 814 | * @param array $add_html |
| 1035 | - * | |
| 1036 | - * @return void | |
| 1037 | 815 | */ |
| 1038 | 816 | private static function add_pattern_attribute( $field, array &$add_html ) { |
| 1039 | - $format_value = FrmField::get_option( $field, 'format' ); | |
| 1040 | - $has_format = $format_value && ! FrmCurrencyHelper::is_currency_format( $format_value ); | |
| 817 | + $has_format = FrmField::is_option_true_in_array( $field, 'format' ); | |
| 1041 | 818 | $format_field = FrmField::is_field_type( $field, 'text' ); |
| 1042 | 819 | |
| 1043 | - if ( $field['type'] !== 'phone' && ( ! $has_format || ! $format_field ) ) { | |
| 1044 | - return; | |
| 1045 | - } | |
| 820 | + if ( $field['type'] == 'phone' || ( $has_format && $format_field ) ) { | |
| 821 | + $frm_settings = FrmAppHelper::get_settings(); | |
| 1046 | 822 | |
| 1047 | - $format = FrmEntryValidate::phone_format( $field ); | |
| 1048 | - $format = substr( $format, 2, - 1 ); | |
| 823 | + if ( $frm_settings->use_html ) { | |
| 824 | + $format = FrmEntryValidate::phone_format( $field ); | |
| 825 | + $format = substr( $format, 2, - 1 ); | |
| 1049 | 826 | |
| 1050 | - $add_html['pattern'] = 'pattern="' . esc_attr( $format ) . '"'; | |
| 827 | + $add_html['pattern'] = 'pattern="' . esc_attr( $format ) . '"'; | |
| 828 | + } | |
| 829 | + } | |
| 1051 | 830 | } |
| 1052 | 831 | |
| 1053 | - /** | |
| 1054 | - * @param mixed $opt | |
| 1055 | - * @param mixed $opt_key | |
| 1056 | - * @param array|object $field | |
| 1057 | - * | |
| 1058 | - * @return mixed | |
| 1059 | - */ | |
| 1060 | 832 | public static function check_value( $opt, $opt_key, $field ) { |
| 1061 | 833 | if ( is_array( $opt ) ) { |
| 1062 | 834 | if ( FrmField::is_option_true( $field, 'separate_value' ) ) { |
| 1063 | - $opt = $opt['value'] ?? $opt['label'] ?? reset( $opt ); | |
| 835 | + $opt = isset( $opt['value'] ) ? $opt['value'] : ( isset( $opt['label'] ) ? $opt['label'] : reset( $opt ) ); | |
| 1064 | 836 | } else { |
| 1065 | - $opt = $opt['label'] ?? reset( $opt ); | |
| 837 | + $opt = isset( $opt['label'] ) ? $opt['label'] : reset( $opt ); | |
| 1066 | 838 | } |
| 1067 | 839 | } |
| 1068 | 840 | |
| 1069 | 841 | return $opt; |
| @@ -1068,13 +840,109 @@ | ||
| 1068 | 840 | |
| 1069 | 841 | return $opt; |
| 1070 | 842 | } |
| 1071 | 843 | |
| 844 | + public static function check_label( $opt ) { | |
| 845 | + if ( is_array( $opt ) ) { | |
| 846 | + $opt = ( isset( $opt['label'] ) ? $opt['label'] : reset( $opt ) ); | |
| 847 | + } | |
| 848 | + | |
| 849 | + return $opt; | |
| 850 | + } | |
| 851 | + | |
| 1072 | 852 | /** |
| 1073 | - * @param mixed $opt | |
| 853 | + * @deprecated 4.0 | |
| 854 | + */ | |
| 855 | + public static function update_ajax_option() { | |
| 856 | + _deprecated_function( __METHOD__, '4.0' ); | |
| 857 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); | |
| 858 | + check_ajax_referer( 'frm_ajax', 'nonce' ); | |
| 859 | + | |
| 860 | + $field_id = FrmAppHelper::get_post_param( 'field', 0, 'absint' ); | |
| 861 | + if ( ! $field_id ) { | |
| 862 | + wp_die(); | |
| 863 | + } | |
| 864 | + | |
| 865 | + $field = FrmField::getOne( $field_id ); | |
| 866 | + | |
| 867 | + if ( isset( $_POST['separate_value'] ) ) { | |
| 868 | + $new_val = FrmField::is_option_true( $field, 'separate_value' ) ? 0 : 1; | |
| 869 | + | |
| 870 | + $field->field_options['separate_value'] = $new_val; | |
| 871 | + unset( $new_val ); | |
| 872 | + } | |
| 873 | + | |
| 874 | + FrmField::update( | |
| 875 | + $field_id, | |
| 876 | + array( | |
| 877 | + 'field_options' => $field->field_options, | |
| 878 | + 'form_id' => $field->form_id, | |
| 879 | + ) | |
| 880 | + ); | |
| 881 | + wp_die(); | |
| 882 | + } | |
| 883 | + | |
| 884 | + /** | |
| 885 | + * @deprecated 4.0 | |
| 886 | + */ | |
| 887 | + public static function import_choices() { | |
| 888 | + _deprecated_function( __METHOD__, '4.0' ); | |
| 889 | + wp_die(); | |
| 890 | + } | |
| 891 | + | |
| 892 | + /** | |
| 893 | + * Add Single Option or Other Option. | |
| 1074 | 894 | * |
| 1075 | - * @return mixed | |
| 895 | + * @deprecated 4.0 Moved to Pro for Other option only. | |
| 1076 | 896 | */ |
| 1077 | - public static function check_label( $opt ) { | |
| 1078 | - return is_array( $opt ) ? ( $opt['label'] ?? reset( $opt ) ) : $opt; | |
| 897 | + public static function add_option() { | |
| 898 | + _deprecated_function( __METHOD__, '4.0', 'FrmProFormsController::add_other_option' ); | |
| 899 | + if ( is_callable( 'FrmProFormsController::add_other_option' ) ) { | |
| 900 | + FrmProFormsController::add_other_option(); | |
| 901 | + } | |
| 902 | + } | |
| 903 | + | |
| 904 | + /** | |
| 905 | + * @deprecated 4.0 | |
| 906 | + */ | |
| 907 | + public static function update_order() { | |
| 908 | + FrmDeprecated::update_order(); | |
| 909 | + } | |
| 910 | + | |
| 911 | + /** | |
| 912 | + * @deprecated 3.0 | |
| 913 | + * @codeCoverageIgnore | |
| 914 | + */ | |
| 915 | + public static function edit_name( $field = 'name', $id = '' ) { | |
| 916 | + FrmDeprecated::edit_name( $field, $id ); | |
| 917 | + } | |
| 918 | + | |
| 919 | + /** | |
| 920 | + * @deprecated 3.0 | |
| 921 | + * @codeCoverageIgnore | |
| 922 | + * | |
| 923 | + * @param int $field_id | |
| 924 | + * @param array $values | |
| 925 | + * @param int $form_id | |
| 926 | + * | |
| 927 | + * @return array | |
| 928 | + */ | |
| 929 | + public static function include_single_field( $field_id, $values, $form_id = 0 ) { | |
| 930 | + return FrmDeprecated::include_single_field( $field_id, $values, $form_id ); | |
| 931 | + } | |
| 932 | + | |
| 933 | + /** | |
| 934 | + * @deprecated 2.3 | |
| 935 | + * @codeCoverageIgnore | |
| 936 | + */ | |
| 937 | + public static function edit_option() { | |
| 938 | + FrmDeprecated::deprecated( __METHOD__, '2.3' ); | |
| 939 | + } | |
| 940 | + | |
| 941 | + /** | |
| 942 | + * @deprecated 2.3 | |
| 943 | + * @codeCoverageIgnore | |
| 944 | + */ | |
| 945 | + public static function delete_option() { | |
| 946 | + FrmDeprecated::deprecated( __METHOD__, '2.3' ); | |
| 1079 | 947 | } |
| 1080 | 948 | } |