@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | $info['url'] = $xml; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - $disabled = isset( $imported[ $info['form'] ] ) ? ' disabled' : ''; |
|
| 14 | + $disabled = isset( $imported[$info['form']] ) ? ' disabled' : ''; |
|
| 15 | 15 | $url = $info['url'] ?? ''; |
| 16 | 16 | $value = $importing === 'form' ? $info['form'] : $info['key']; |
| 17 | 17 | if ( ! isset( $info['img'] ) ) { |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | continue; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - $hide_views = $importing === 'view' && ( ( $selected && $info['form'] !== $selected ) || isset( $imported[ $info['form'] ] ) ); |
|
| 24 | + $hide_views = $importing === 'view' && ( ( $selected && $info['form'] !== $selected ) || isset( $imported[$info['form']] ) ); |
|
| 25 | 25 | ?> |
| 26 | 26 | <div class="frm_radio radio-inline radio frm_image_option<?php echo esc_attr( $importing === 'view' ? ' show_sub_opt show_' . $info['form'] : '' ); ?>" style="<?php echo esc_attr( $hide_views ? 'display:none' : '' ); ?>"> |
| 27 | 27 | <?php if ( $importing === 'form' ) { ?> |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | if ( $importing === 'form' && $disabled ) { |
| 57 | - FrmAppHelper::kses_echo( FrmFormsHelper::edit_form_link( $imported[ $info['form'] ] ), array( 'a' ) ); |
|
| 57 | + FrmAppHelper::kses_echo( FrmFormsHelper::edit_form_link( $imported[$info['form']] ), array( 'a' ) ); |
|
| 58 | 58 | } else { |
| 59 | 59 | echo esc_html( $info['name'] ); |
| 60 | 60 | } |
@@ -112,7 +112,7 @@ |
||
| 112 | 112 | FrmFieldGdprHelper::FIELD_TYPE => FrmFieldGdprHelper::get_gdpr_field_class( $field_type ), |
| 113 | 113 | ); |
| 114 | 114 | |
| 115 | - $class = $type_classes[ $field_type ] ?? ''; |
|
| 115 | + $class = $type_classes[$field_type] ?? ''; |
|
| 116 | 116 | |
| 117 | 117 | return apply_filters( 'frm_get_field_type_class', $class, $field_type ); |
| 118 | 118 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | protected function get_field_value( $args ) { |
| 59 | 59 | $user_ID = get_current_user_id(); |
| 60 | 60 | $user_ID = ( $user_ID ? $user_ID : '' ); |
| 61 | - $posted_value = ( FrmAppHelper::is_admin() && $_POST && isset( $_POST['item_meta'][ $this->field['id'] ] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
| 61 | + $posted_value = ( FrmAppHelper::is_admin() && $_POST && isset( $_POST['item_meta'][$this->field['id']] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
| 62 | 62 | $action = ( $args['action'] ?? $args['form_action'] ?? '' ); |
| 63 | 63 | $updating = $action === 'update'; |
| 64 | 64 | return is_numeric( $this->field['value'] ) || $posted_value || $updating ? $this->field['value'] : $user_ID; |
@@ -61,12 +61,12 @@ discard block |
||
| 61 | 61 | if ( is_array( $sub_field ) ) { |
| 62 | 62 | $sub_field = wp_parse_args( $sub_field, $defaults ); |
| 63 | 63 | $sub_field['name'] = $name; |
| 64 | - $this->sub_fields[ $name ] = $sub_field; |
|
| 64 | + $this->sub_fields[$name] = $sub_field; |
|
| 65 | 65 | continue; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | if ( is_string( $sub_field ) ) { |
| 69 | - $this->sub_fields[ $name ] = wp_parse_args( |
|
| 69 | + $this->sub_fields[$name] = wp_parse_args( |
|
| 70 | 70 | array( |
| 71 | 71 | 'name' => $name, |
| 72 | 72 | 'label' => $sub_field, |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public function set_aria_invalid_error( &$shortcode_atts, $args ) { |
| 91 | 91 | foreach ( $this->get_sub_fields() as $sub_field ) { |
| 92 | - $shortcode_atts[ 'aria-invalid-' . $sub_field['name'] ] = isset( $args['errors'][ 'field' . $this->field_id . '-' . $sub_field['name'] ] ) ? 'true' : 'false'; |
|
| 92 | + $shortcode_atts['aria-invalid-' . $sub_field['name']] = isset( $args['errors']['field' . $this->field_id . '-' . $sub_field['name']] ) ? 'true' : 'false'; |
|
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | |
@@ -135,9 +135,9 @@ discard block |
||
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | if ( is_string( $option ) ) { |
| 138 | - $extra_options[ $key . '_' . $option ] = ''; |
|
| 138 | + $extra_options[$key . '_' . $option] = ''; |
|
| 139 | 139 | } elseif ( ! empty( $option['name'] ) ) { |
| 140 | - $extra_options[ $key . '_' . $option['name'] ] = ''; |
|
| 140 | + $extra_options[$key . '_' . $option['name']] = ''; |
|
| 141 | 141 | } |
| 142 | 142 | } |
| 143 | 143 | } |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | foreach ( $this->sub_fields as $name => $sub_field ) { |
| 164 | 164 | $sub_field['name'] = $name; |
| 165 | 165 | $wrapper_classes = 'frm_grid_container frm_sub_field_options frm_sub_field_options-' . $sub_field['name']; |
| 166 | - if ( ! isset( $processed_sub_fields[ $name ] ) ) { |
|
| 166 | + if ( ! isset( $processed_sub_fields[$name] ) ) { |
|
| 167 | 167 | // Options for this subfield should be hidden. |
| 168 | 168 | $wrapper_classes .= ' frm_hidden'; |
| 169 | 169 | } |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | $default_value = array(); |
| 194 | 194 | |
| 195 | 195 | foreach ( $this->sub_fields as $name => $sub_field ) { |
| 196 | - $default_value[ $name ] = ''; |
|
| 196 | + $default_value[$name] = ''; |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | return $default_value; |
@@ -375,8 +375,8 @@ discard block |
||
| 375 | 375 | // Placeholder. |
| 376 | 376 | if ( in_array( 'placeholder', $sub_field['options'], true ) ) { |
| 377 | 377 | $placeholders = FrmField::get_option( $field, 'placeholder' ); |
| 378 | - if ( ! empty( $placeholders[ $sub_field['name'] ] ) ) { |
|
| 379 | - $field['placeholder'] = $placeholders[ $sub_field['name'] ]; |
|
| 378 | + if ( ! empty( $placeholders[$sub_field['name']] ) ) { |
|
| 379 | + $field['placeholder'] = $placeholders[$sub_field['name']]; |
|
| 380 | 380 | } |
| 381 | 381 | } |
| 382 | 382 | |
@@ -437,9 +437,9 @@ discard block |
||
| 437 | 437 | |
| 438 | 438 | // Validate not empty. |
| 439 | 439 | foreach ( $sub_fields as $name => $sub_field ) { |
| 440 | - if ( empty( $sub_field['optional'] ) && empty( $args['value'][ $name ] ) ) { |
|
| 441 | - $errors[ 'field' . $args['id'] . '-' . $name ] = ''; |
|
| 442 | - $errors[ 'field' . $args['id'] ] = $blank_msg; |
|
| 440 | + if ( empty( $sub_field['optional'] ) && empty( $args['value'][$name] ) ) { |
|
| 441 | + $errors['field' . $args['id'] . '-' . $name] = ''; |
|
| 442 | + $errors['field' . $args['id']] = $blank_msg; |
|
| 443 | 443 | } |
| 444 | 444 | } |
| 445 | 445 | |
@@ -458,7 +458,7 @@ discard block |
||
| 458 | 458 | $field_key = $this->field->field_key ?? $this->field['field_key']; |
| 459 | 459 | $sub_fields = $this->get_processed_sub_fields(); |
| 460 | 460 | foreach ( $sub_fields as $name => $sub_field ) { |
| 461 | - $headings[ $field_id . '_' . $name ] = $field_name . ' (' . $field_key . ') - ' . $sub_field['label']; |
|
| 461 | + $headings[$field_id . '_' . $name] = $field_name . ' (' . $field_key . ') - ' . $sub_field['label']; |
|
| 462 | 462 | } |
| 463 | 463 | |
| 464 | 464 | return $headings; |
@@ -58,19 +58,19 @@ discard block |
||
| 58 | 58 | $result = array(); |
| 59 | 59 | |
| 60 | 60 | foreach ( $names as $name ) { |
| 61 | - if ( empty( $this->sub_fields[ $name ] ) ) { |
|
| 61 | + if ( empty( $this->sub_fields[$name] ) ) { |
|
| 62 | 62 | continue; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - if ( ! isset( $this->sub_fields[ $name ]['wrapper_classes'] ) ) { |
|
| 66 | - $this->sub_fields[ $name ]['wrapper_classes'] = $col_class; |
|
| 67 | - } elseif ( is_array( $this->sub_fields[ $name ]['wrapper_classes'] ) ) { |
|
| 68 | - $this->sub_fields[ $name ]['wrapper_classes'] = implode( ' ', $this->sub_fields[ $name ]['wrapper_classes'] ) . ' ' . $col_class; |
|
| 65 | + if ( ! isset( $this->sub_fields[$name]['wrapper_classes'] ) ) { |
|
| 66 | + $this->sub_fields[$name]['wrapper_classes'] = $col_class; |
|
| 67 | + } elseif ( is_array( $this->sub_fields[$name]['wrapper_classes'] ) ) { |
|
| 68 | + $this->sub_fields[$name]['wrapper_classes'] = implode( ' ', $this->sub_fields[$name]['wrapper_classes'] ) . ' ' . $col_class; |
|
| 69 | 69 | } else { |
| 70 | - $this->sub_fields[ $name ]['wrapper_classes'] .= ' ' . $col_class; |
|
| 70 | + $this->sub_fields[$name]['wrapper_classes'] .= ' ' . $col_class; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - $result[ $name ] = $this->sub_fields[ $name ]; |
|
| 73 | + $result[$name] = $this->sub_fields[$name]; |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | return $result; |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | |
| 102 | 102 | // Default desc. |
| 103 | 103 | foreach ( $this->sub_fields as $name => $sub_field ) { |
| 104 | - $extra_options[ $name . '_desc' ] = $sub_field['label']; |
|
| 104 | + $extra_options[$name . '_desc'] = $sub_field['label']; |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | return $extra_options; |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | $name_layout = $this->get_name_layout(); |
| 140 | 140 | |
| 141 | 141 | if ( ! empty( $atts['show'] ) ) { |
| 142 | - return $value[ $atts['show'] ] ?? ''; |
|
| 142 | + return $value[$atts['show']] ?? ''; |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | $value = wp_parse_args( |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | $args['sub_fields'] = $this->sub_fields; |
| 217 | 217 | |
| 218 | 218 | foreach ( $hidden_fields as $name => $hidden_field ) { |
| 219 | - $args['sub_fields'][ $name ]['wrapper_classes'] .= ' frm_hidden'; |
|
| 219 | + $args['sub_fields'][$name]['wrapper_classes'] .= ' frm_hidden'; |
|
| 220 | 220 | } |
| 221 | 221 | } |
| 222 | 222 | } |
@@ -274,7 +274,7 @@ |
||
| 274 | 274 | return ''; |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | - return $item_meta[ $field_id ] ?? ''; |
|
| 277 | + return $item_meta[$field_id] ?? ''; |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | /** |
@@ -40,6 +40,6 @@ |
||
| 40 | 40 | */ |
| 41 | 41 | public function get_video( $type = 'welcome' ) { |
| 42 | 42 | $videos = $this->get_api_info(); |
| 43 | - return $videos[ $type ] ?? array(); |
|
| 43 | + return $videos[$type] ?? array(); |
|
| 44 | 44 | } |
| 45 | 45 | } |
@@ -239,8 +239,8 @@ discard block |
||
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | foreach ( $settings as $setting => $default ) { |
| 242 | - if ( isset( $params[ 'frm_' . $setting ] ) ) { |
|
| 243 | - $this->{$setting} = $params[ 'frm_' . $setting ]; |
|
| 242 | + if ( isset( $params['frm_' . $setting] ) ) { |
|
| 243 | + $this->{$setting} = $params['frm_' . $setting]; |
|
| 244 | 244 | } elseif ( ! isset( $this->{$setting} ) ) { |
| 245 | 245 | $this->{$setting} = $default; |
| 246 | 246 | } |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | 'denylist_check', |
| 433 | 433 | ); |
| 434 | 434 | foreach ( $checkboxes as $set ) { |
| 435 | - $this->$set = isset( $params[ 'frm_' . $set ] ) ? absint( $params[ 'frm_' . $set ] ) : 0; |
|
| 435 | + $this->$set = isset( $params['frm_' . $set] ) ? absint( $params['frm_' . $set] ) : 0; |
|
| 436 | 436 | } |
| 437 | 437 | } |
| 438 | 438 | |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | $frm_roles = FrmAppHelper::frm_capabilities(); |
| 446 | 446 | $roles = get_editable_roles(); |
| 447 | 447 | foreach ( $frm_roles as $frm_role => $frm_role_description ) { |
| 448 | - $this->$frm_role = (array) ( $params[ $frm_role ] ?? 'administrator' ); |
|
| 448 | + $this->$frm_role = (array) ( $params[$frm_role] ?? 'administrator' ); |
|
| 449 | 449 | |
| 450 | 450 | // Make sure administrators always have permissions |
| 451 | 451 | if ( ! in_array( 'administrator', $this->$frm_role, true ) ) { |
@@ -208,9 +208,9 @@ discard block |
||
| 208 | 208 | $groups = FrmFormActionsController::form_action_groups(); |
| 209 | 209 | $group = 'misc'; |
| 210 | 210 | |
| 211 | - if ( isset( $action_options['group'] ) && isset( $groups[ $action_options['group'] ] ) ) { |
|
| 211 | + if ( isset( $action_options['group'] ) && isset( $groups[$action_options['group']] ) ) { |
|
| 212 | 212 | $group = $action_options['group']; |
| 213 | - } elseif ( isset( $groups[ $this->id_base ] ) ) { |
|
| 213 | + } elseif ( isset( $groups[$this->id_base] ) ) { |
|
| 214 | 214 | $group = $this->id_base; |
| 215 | 215 | } else { |
| 216 | 216 | foreach ( $groups as $name => $check_group ) { |
@@ -221,8 +221,8 @@ discard block |
||
| 221 | 221 | } |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | - $groups[ $group ]['id'] = $group; |
|
| 225 | - return $groups[ $group ]; |
|
| 224 | + $groups[$group]['id'] = $group; |
|
| 225 | + return $groups[$group]; |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | /** |
@@ -333,7 +333,7 @@ discard block |
||
| 333 | 333 | * @return int $post_id |
| 334 | 334 | */ |
| 335 | 335 | public function maybe_create_action( $action, $forms ) { |
| 336 | - if ( isset( $action['ID'] ) && is_numeric( $action['ID'] ) && isset( $forms[ $action['menu_order'] ] ) && $forms[ $action['menu_order'] ] === 'updated' ) { |
|
| 336 | + if ( isset( $action['ID'] ) && is_numeric( $action['ID'] ) && isset( $forms[$action['menu_order']] ) && $forms[$action['menu_order']] === 'updated' ) { |
|
| 337 | 337 | // Update action only |
| 338 | 338 | $action['post_content'] = FrmAppHelper::maybe_json_decode( $action['post_content'] ); |
| 339 | 339 | $post_id = $this->save_settings( $action ); |
@@ -356,18 +356,18 @@ discard block |
||
| 356 | 356 | $switch = $this->get_global_switch_fields(); |
| 357 | 357 | |
| 358 | 358 | foreach ( (array) $action->post_content as $key => $val ) { |
| 359 | - if ( is_numeric( $val ) && isset( $frm_duplicate_ids[ $val ] ) ) { |
|
| 360 | - $action->post_content[ $key ] = $frm_duplicate_ids[ $val ]; |
|
| 359 | + if ( is_numeric( $val ) && isset( $frm_duplicate_ids[$val] ) ) { |
|
| 360 | + $action->post_content[$key] = $frm_duplicate_ids[$val]; |
|
| 361 | 361 | } elseif ( ! is_array( $val ) ) { |
| 362 | - $action->post_content[ $key ] = FrmFieldsHelper::switch_field_ids( $val ); |
|
| 363 | - } elseif ( isset( $switch[ $key ] ) && is_array( $switch[ $key ] ) ) { |
|
| 362 | + $action->post_content[$key] = FrmFieldsHelper::switch_field_ids( $val ); |
|
| 363 | + } elseif ( isset( $switch[$key] ) && is_array( $switch[$key] ) ) { |
|
| 364 | 364 | // loop through each value if empty |
| 365 | - if ( empty( $switch[ $key ] ) ) { |
|
| 366 | - $switch[ $key ] = array_keys( $val ); |
|
| 365 | + if ( empty( $switch[$key] ) ) { |
|
| 366 | + $switch[$key] = array_keys( $val ); |
|
| 367 | 367 | } |
| 368 | 368 | |
| 369 | - foreach ( $switch[ $key ] as $subkey ) { |
|
| 370 | - $action->post_content[ $key ] = $this->duplicate_array_walk( $action->post_content[ $key ], $subkey, $val ); |
|
| 369 | + foreach ( $switch[$key] as $subkey ) { |
|
| 370 | + $action->post_content[$key] = $this->duplicate_array_walk( $action->post_content[$key], $subkey, $val ); |
|
| 371 | 371 | } |
| 372 | 372 | } |
| 373 | 373 | |
@@ -385,20 +385,20 @@ discard block |
||
| 385 | 385 | foreach ( $subkey as $subkey2 ) { |
| 386 | 386 | foreach ( (array) $val as $ck => $cv ) { |
| 387 | 387 | if ( is_array( $cv ) ) { |
| 388 | - $action[ $ck ] = $this->duplicate_array_walk( $action[ $ck ], $subkey2, $cv ); |
|
| 389 | - } elseif ( isset( $cv[ $subkey ] ) && is_numeric( $cv[ $subkey ] ) && isset( $frm_duplicate_ids[ $cv[ $subkey ] ] ) ) { |
|
| 390 | - $action[ $ck ][ $subkey ] = $frm_duplicate_ids[ $cv[ $subkey ] ]; |
|
| 388 | + $action[$ck] = $this->duplicate_array_walk( $action[$ck], $subkey2, $cv ); |
|
| 389 | + } elseif ( isset( $cv[$subkey] ) && is_numeric( $cv[$subkey] ) && isset( $frm_duplicate_ids[$cv[$subkey]] ) ) { |
|
| 390 | + $action[$ck][$subkey] = $frm_duplicate_ids[$cv[$subkey]]; |
|
| 391 | 391 | } |
| 392 | 392 | } |
| 393 | 393 | } |
| 394 | 394 | } else { |
| 395 | 395 | foreach ( (array) $val as $ck => $cv ) { |
| 396 | 396 | if ( is_array( $cv ) ) { |
| 397 | - $action[ $ck ] = $this->duplicate_array_walk( $action[ $ck ], $subkey, $cv ); |
|
| 398 | - } elseif ( $ck == $subkey && isset( $frm_duplicate_ids[ $cv ] ) ) { |
|
| 399 | - $action[ $ck ] = $frm_duplicate_ids[ $cv ]; |
|
| 397 | + $action[$ck] = $this->duplicate_array_walk( $action[$ck], $subkey, $cv ); |
|
| 398 | + } elseif ( $ck == $subkey && isset( $frm_duplicate_ids[$cv] ) ) { |
|
| 399 | + $action[$ck] = $frm_duplicate_ids[$cv]; |
|
| 400 | 400 | } elseif ( $ck == $subkey ) { |
| 401 | - $action[ $ck ] = $this->maybe_switch_field_ids( $action[ $ck ] ); |
|
| 401 | + $action[$ck] = $this->maybe_switch_field_ids( $action[$ck] ); |
|
| 402 | 402 | } |
| 403 | 403 | } |
| 404 | 404 | }//end if |
@@ -422,10 +422,10 @@ discard block |
||
| 422 | 422 | } |
| 423 | 423 | |
| 424 | 424 | // phpcs:ignore WordPress.Security.NonceVerification.Missing |
| 425 | - if ( isset( $_POST[ $this->option_name ] ) && is_array( $_POST[ $this->option_name ] ) ) { |
|
| 425 | + if ( isset( $_POST[$this->option_name] ) && is_array( $_POST[$this->option_name] ) ) { |
|
| 426 | 426 | // Sanitizing removes scripts and <email> type of values. |
| 427 | 427 | // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification.Missing |
| 428 | - $settings = wp_unslash( $_POST[ $this->option_name ] ); |
|
| 428 | + $settings = wp_unslash( $_POST[$this->option_name] ); |
|
| 429 | 429 | } else { |
| 430 | 430 | return; |
| 431 | 431 | } |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | foreach ( $settings as $number => $new_instance ) { |
| 436 | 436 | $this->_set( $number ); |
| 437 | 437 | |
| 438 | - $old_instance = $all_instances[ $number ] ?? array(); |
|
| 438 | + $old_instance = $all_instances[$number] ?? array(); |
|
| 439 | 439 | |
| 440 | 440 | if ( ! isset( $new_instance['post_status'] ) ) { |
| 441 | 441 | $new_instance['post_status'] = 'draft'; |
@@ -474,7 +474,7 @@ discard block |
||
| 474 | 474 | $instance['post_content'] = apply_filters( 'frm_before_save_' . $this->id_base . '_action', $instance['post_content'], $instance, $new_instance, $old_instance, $this ); |
| 475 | 475 | |
| 476 | 476 | if ( false !== $instance ) { |
| 477 | - $all_instances[ $number ] = $instance; |
|
| 477 | + $all_instances[$number] = $instance; |
|
| 478 | 478 | } |
| 479 | 479 | |
| 480 | 480 | $action_ids[] = $this->save_settings( $instance ); |
@@ -563,12 +563,12 @@ discard block |
||
| 563 | 563 | // some plugins/themes are formatting the post_excerpt |
| 564 | 564 | $action->post_excerpt = sanitize_title( $action->post_excerpt ); |
| 565 | 565 | |
| 566 | - if ( ! isset( $action_controls[ $action->post_excerpt ] ) ) { |
|
| 566 | + if ( ! isset( $action_controls[$action->post_excerpt] ) ) { |
|
| 567 | 567 | continue; |
| 568 | 568 | } |
| 569 | 569 | |
| 570 | - $action = $action_controls[ $action->post_excerpt ]->prepare_action( $action ); |
|
| 571 | - $settings[ $action->ID ] = $action; |
|
| 570 | + $action = $action_controls[$action->post_excerpt]->prepare_action( $action ); |
|
| 571 | + $settings[$action->ID] = $action; |
|
| 572 | 572 | |
| 573 | 573 | if ( count( $settings ) >= $limit ) { |
| 574 | 574 | break; |
@@ -594,7 +594,7 @@ discard block |
||
| 594 | 594 | * @return int The filtered limit value. |
| 595 | 595 | */ |
| 596 | 596 | public static function get_action_limit( $form_id, $limit = 99 ) { |
| 597 | - $type = 'all'; |
|
| 597 | + $type = 'all'; |
|
| 598 | 598 | return (int) apply_filters( 'frm_form_action_limit', (int) $limit, compact( 'type', 'form_id' ) ); |
| 599 | 599 | } |
| 600 | 600 | |
@@ -617,7 +617,7 @@ discard block |
||
| 617 | 617 | 'limit' => 99, |
| 618 | 618 | 'post_status' => $default_status, |
| 619 | 619 | ); |
| 620 | - $args = wp_parse_args( $args, $defaults ); |
|
| 620 | + $args = wp_parse_args( $args, $defaults ); |
|
| 621 | 621 | } |
| 622 | 622 | |
| 623 | 623 | /** |
@@ -687,7 +687,7 @@ discard block |
||
| 687 | 687 | |
| 688 | 688 | $action = $this->prepare_action( $action ); |
| 689 | 689 | |
| 690 | - $settings[ $action->ID ] = $action; |
|
| 690 | + $settings[$action->ID] = $action; |
|
| 691 | 691 | } |
| 692 | 692 | |
| 693 | 693 | if ( 1 === $limit ) { |
@@ -730,10 +730,10 @@ discard block |
||
| 730 | 730 | |
| 731 | 731 | foreach ( $default_values as $k => $vals ) { |
| 732 | 732 | if ( is_array( $vals ) && ! empty( $vals ) ) { |
| 733 | - if ( 'event' === $k && ! $this->action_options['force_event'] && ! empty( $action->post_content[ $k ] ) ) { |
|
| 733 | + if ( 'event' === $k && ! $this->action_options['force_event'] && ! empty( $action->post_content[$k] ) ) { |
|
| 734 | 734 | continue; |
| 735 | 735 | } |
| 736 | - $action->post_content[ $k ] = wp_parse_args( $action->post_content[ $k ], $vals ); |
|
| 736 | + $action->post_content[$k] = wp_parse_args( $action->post_content[$k], $vals ); |
|
| 737 | 737 | } |
| 738 | 738 | } |
| 739 | 739 | |
@@ -821,9 +821,9 @@ discard block |
||
| 821 | 821 | |
| 822 | 822 | // fill with existing options |
| 823 | 823 | foreach ( $action->post_content as $name => $val ) { |
| 824 | - if ( isset( $form->options[ $name ] ) ) { |
|
| 825 | - $action->post_content[ $name ] = $form->options[ $name ]; |
|
| 826 | - unset( $form->options[ $name ] ); |
|
| 824 | + if ( isset( $form->options[$name] ) ) { |
|
| 825 | + $action->post_content[$name] = $form->options[$name]; |
|
| 826 | + unset( $form->options[$name] ); |
|
| 827 | 827 | } |
| 828 | 828 | } |
| 829 | 829 | |
@@ -883,8 +883,8 @@ discard block |
||
| 883 | 883 | private static function get_value_from_entry( $entry, $field_id ) { |
| 884 | 884 | $observed_value = ''; |
| 885 | 885 | |
| 886 | - if ( isset( $entry->metas[ $field_id ] ) ) { |
|
| 887 | - $observed_value = $entry->metas[ $field_id ]; |
|
| 886 | + if ( isset( $entry->metas[$field_id] ) ) { |
|
| 887 | + $observed_value = $entry->metas[$field_id]; |
|
| 888 | 888 | } elseif ( $entry->post_id && FrmAppHelper::pro_is_installed() ) { |
| 889 | 889 | $field = FrmField::getOne( $field_id ); |
| 890 | 890 | $observed_value = FrmProEntryMetaHelper::get_post_or_meta_value( |
@@ -958,7 +958,7 @@ discard block |
||
| 958 | 958 | $form_fields = FrmField::get_all_for_form( $form_id, '', 'include' ); |
| 959 | 959 | return array_filter( |
| 960 | 960 | $form_fields, |
| 961 | - function ( $form_field ) { |
|
| 961 | + function( $form_field ) { |
|
| 962 | 962 | return ! FrmField::is_no_save_field( $form_field->type ); |
| 963 | 963 | } |
| 964 | 964 | ); |