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