@@ -44,8 +44,8 @@ discard block |
||
| 44 | 44 | * @param array $atts |
| 45 | 45 | */ |
| 46 | 46 | private function _set( $param, $atts ) { |
| 47 | - if ( isset( $atts[ $param ] ) ) { |
|
| 48 | - $this->{$param} = $atts[ $param ]; |
|
| 47 | + if ( isset( $atts[$param] ) ) { |
|
| 48 | + $this->{$param} = $atts[$param]; |
|
| 49 | 49 | } |
| 50 | 50 | } |
| 51 | 51 | |
@@ -89,8 +89,8 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $exclude = array( 'field_obj', 'html' ); |
| 91 | 91 | foreach ( $exclude as $ex ) { |
| 92 | - if ( isset( $atts[ $ex ] ) ) { |
|
| 93 | - unset( $this->pass_args[ $ex ] ); |
|
| 92 | + if ( isset( $atts[$ex] ) ) { |
|
| 93 | + unset( $this->pass_args[$ex] ); |
|
| 94 | 94 | } |
| 95 | 95 | } |
| 96 | 96 | } |
@@ -102,8 +102,8 @@ discard block |
||
| 102 | 102 | * @param array $set |
| 103 | 103 | */ |
| 104 | 104 | private function set_from_field( $atts, $set ) { |
| 105 | - if ( isset( $atts[ $set['param'] ] ) ) { |
|
| 106 | - $this->{$set['param']} = $atts[ $set['param'] ]; |
|
| 105 | + if ( isset( $atts[$set['param']] ) ) { |
|
| 106 | + $this->{$set['param']} = $atts[$set['param']]; |
|
| 107 | 107 | } else { |
| 108 | 108 | $this->{$set['param']} = $this->field_obj->get_field_column( $set['default'] ); |
| 109 | 109 | } |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | */ |
| 231 | 231 | private function replace_error_shortcode() { |
| 232 | 232 | $this->maybe_add_error_id(); |
| 233 | - $error = isset( $this->pass_args['errors'][ 'field' . $this->field_id ] ) ? $this->pass_args['errors'][ 'field' . $this->field_id ] : false; |
|
| 233 | + $error = isset( $this->pass_args['errors']['field' . $this->field_id] ) ? $this->pass_args['errors']['field' . $this->field_id] : false; |
|
| 234 | 234 | |
| 235 | 235 | if ( ! empty( $error ) && false === strpos( $this->html, 'role="alert"' ) && FrmAppHelper::should_include_alert_role_on_field_errors() ) { |
| 236 | 236 | $error_body = self::get_error_body( $this->html ); |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | * @since 3.06.02 |
| 272 | 272 | */ |
| 273 | 273 | private function maybe_add_error_id() { |
| 274 | - if ( ! isset( $this->pass_args['errors'][ 'field' . $this->field_id ] ) ) { |
|
| 274 | + if ( ! isset( $this->pass_args['errors']['field' . $this->field_id] ) ) { |
|
| 275 | 275 | return; |
| 276 | 276 | } |
| 277 | 277 | |
@@ -351,7 +351,7 @@ discard block |
||
| 351 | 351 | preg_match_all( "/\[(input|deletelink)\b(.*?)(?:(\/))?\]/s", $this->html, $shortcodes, PREG_PATTERN_ORDER ); |
| 352 | 352 | |
| 353 | 353 | foreach ( $shortcodes[0] as $short_key => $tag ) { |
| 354 | - $shortcode_atts = FrmShortcodeHelper::get_shortcode_attribute_array( $shortcodes[2][ $short_key ] ); |
|
| 354 | + $shortcode_atts = FrmShortcodeHelper::get_shortcode_attribute_array( $shortcodes[2][$short_key] ); |
|
| 355 | 355 | $tag = FrmShortcodeHelper::get_shortcode_tag( $shortcodes, $short_key ); |
| 356 | 356 | |
| 357 | 357 | $replace_with = ''; |
@@ -362,7 +362,7 @@ discard block |
||
| 362 | 362 | $replace_with = $this->replace_input_shortcode( $shortcode_atts ); |
| 363 | 363 | } |
| 364 | 364 | |
| 365 | - $this->html = str_replace( $shortcodes[0][ $short_key ], $replace_with, $this->html ); |
|
| 365 | + $this->html = str_replace( $shortcodes[0][$short_key], $replace_with, $this->html ); |
|
| 366 | 366 | } |
| 367 | 367 | } |
| 368 | 368 | |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | */ |
| 385 | 385 | private function prepare_input_shortcode_atts( $shortcode_atts ) { |
| 386 | 386 | if ( isset( $shortcode_atts['opt'] ) ) { |
| 387 | - --$shortcode_atts['opt']; |
|
| 387 | + -- $shortcode_atts['opt']; |
|
| 388 | 388 | } |
| 389 | 389 | |
| 390 | 390 | $field_class = isset( $shortcode_atts['class'] ) ? $shortcode_atts['class'] : ''; |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | */ |
| 449 | 449 | private function get_field_div_classes() { |
| 450 | 450 | // Add error class |
| 451 | - $classes = isset( $this->pass_args['errors'][ 'field' . $this->field_id ] ) ? ' frm_blank_field' : ''; |
|
| 451 | + $classes = isset( $this->pass_args['errors']['field' . $this->field_id] ) ? ' frm_blank_field' : ''; |
|
| 452 | 452 | |
| 453 | 453 | // Add label position class |
| 454 | 454 | $settings = $this->field_obj->display_field_settings(); |
@@ -527,7 +527,7 @@ discard block |
||
| 527 | 527 | } |
| 528 | 528 | |
| 529 | 529 | // Add 'aria-invalid' attribute to the group if there are errors. |
| 530 | - if ( isset( $this->pass_args['errors'][ 'field' . $this->field_id ] ) ) { |
|
| 530 | + if ( isset( $this->pass_args['errors']['field' . $this->field_id] ) ) { |
|
| 531 | 531 | $attributes['aria-invalid'] = 'true'; |
| 532 | 532 | } |
| 533 | 533 | |