@@ -562,6 +562,7 @@ discard block |
||
| 562 | 562 | * Also called during database migration in FrmMigrate. |
| 563 | 563 | * |
| 564 | 564 | * @since 4.0 |
| 565 | + * @param string $type |
|
| 565 | 566 | * @return array |
| 566 | 567 | */ |
| 567 | 568 | public static function migrate_field_placeholder( $field, $type ) { |
@@ -1217,6 +1218,7 @@ discard block |
||
| 1217 | 1218 | * The line endings may prevent html from being equal when it should |
| 1218 | 1219 | * |
| 1219 | 1220 | * @since 3.06 |
| 1221 | + * @param string $html_name |
|
| 1220 | 1222 | */ |
| 1221 | 1223 | private static function remove_default_html( $html_name, $defaults, &$options ) { |
| 1222 | 1224 | if ( ! isset( $options[ $html_name ] ) || ! isset( $defaults[ $html_name ] ) ) { |
@@ -1290,6 +1292,7 @@ discard block |
||
| 1290 | 1292 | * Migrate post settings to form action |
| 1291 | 1293 | * |
| 1292 | 1294 | * @param string $post_type |
| 1295 | + * @param boolean $switch |
|
| 1293 | 1296 | */ |
| 1294 | 1297 | private static function migrate_post_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
| 1295 | 1298 | if ( ! isset( $form_options['create_post'] ) || ! $form_options['create_post'] ) { |
@@ -1368,8 +1371,8 @@ discard block |
||
| 1368 | 1371 | * @since 2.0 |
| 1369 | 1372 | * |
| 1370 | 1373 | * @param array $post_content - check for old field IDs |
| 1371 | - * @param array $basic_fields - fields with string or int saved |
|
| 1372 | - * @param array $array_fields - fields with arrays saved |
|
| 1374 | + * @param string[] $basic_fields - fields with string or int saved |
|
| 1375 | + * @param string[] $array_fields - fields with arrays saved |
|
| 1373 | 1376 | * |
| 1374 | 1377 | * @return string $post_content - new field IDs |
| 1375 | 1378 | */ |
@@ -1404,6 +1407,10 @@ discard block |
||
| 1404 | 1407 | return $post_content; |
| 1405 | 1408 | } |
| 1406 | 1409 | |
| 1410 | + /** |
|
| 1411 | + * @param string $post_type |
|
| 1412 | + * @param boolean $switch |
|
| 1413 | + */ |
|
| 1407 | 1414 | private static function migrate_email_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
| 1408 | 1415 | // No old notifications or autoresponders to carry over |
| 1409 | 1416 | if ( ! isset( $form_options['auto_responder'] ) && ! isset( $form_options['notification'] ) && ! isset( $form_options['email_to'] ) ) { |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | |
| 130 | 130 | if ( $term && is_array( $term ) ) { |
| 131 | 131 | $imported['imported']['terms'] ++; |
| 132 | - $imported['terms'][ (int) $t->term_id ] = $term['term_id']; |
|
| 132 | + $imported['terms'][(int) $t->term_id] = $term['term_id']; |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | unset( $term, $t ); |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | // Keep track of whether this specific form was updated or not. |
| 188 | - $imported['form_status'][ $form_id ] = 'imported'; |
|
| 188 | + $imported['form_status'][$form_id] = 'imported'; |
|
| 189 | 189 | self::track_imported_child_forms( (int) $form_id, $form['parent_form_id'], $child_forms ); |
| 190 | 190 | } |
| 191 | 191 | } |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | // Update field ids/keys to new ones. |
| 198 | 198 | do_action( 'frm_after_duplicate_form', $form_id, $form, array( 'old_id' => $old_id ) ); |
| 199 | 199 | |
| 200 | - $imported['forms'][ (int) $item->id ] = $form_id; |
|
| 200 | + $imported['forms'][(int) $item->id] = $form_id; |
|
| 201 | 201 | |
| 202 | 202 | // Send pre 2.0 form options through function that creates actions. |
| 203 | 203 | self::migrate_form_settings_to_actions( $form['options'], $form_id, $imported, true ); |
@@ -260,15 +260,15 @@ discard block |
||
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | // Keep track of whether this specific form was updated or not |
| 263 | - $imported['form_status'][ $form_id ] = 'updated'; |
|
| 263 | + $imported['form_status'][$form_id] = 'updated'; |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | 266 | private static function get_form_fields( $form_id ) { |
| 267 | 267 | $form_fields = FrmField::get_all_for_form( $form_id, '', 'exclude', 'exclude' ); |
| 268 | 268 | $old_fields = array(); |
| 269 | 269 | foreach ( $form_fields as $f ) { |
| 270 | - $old_fields[ $f->id ] = $f; |
|
| 271 | - $old_fields[ $f->field_key ] = $f->id; |
|
| 270 | + $old_fields[$f->id] = $f; |
|
| 271 | + $old_fields[$f->field_key] = $f->id; |
|
| 272 | 272 | unset( $f ); |
| 273 | 273 | } |
| 274 | 274 | $form_fields = $old_fields; |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | */ |
| 326 | 326 | private static function track_imported_child_forms( $form_id, $parent_form_id, &$child_forms ) { |
| 327 | 327 | if ( $parent_form_id ) { |
| 328 | - $child_forms[ $form_id ] = $parent_form_id; |
|
| 328 | + $child_forms[$form_id] = $parent_form_id; |
|
| 329 | 329 | } |
| 330 | 330 | } |
| 331 | 331 | |
@@ -341,9 +341,9 @@ discard block |
||
| 341 | 341 | private static function maybe_update_child_form_parent_id( $imported_forms, $child_forms ) { |
| 342 | 342 | foreach ( $child_forms as $child_form_id => $old_parent_form_id ) { |
| 343 | 343 | |
| 344 | - if ( isset( $imported_forms[ $old_parent_form_id ] ) && $imported_forms[ $old_parent_form_id ] != $old_parent_form_id ) { |
|
| 344 | + if ( isset( $imported_forms[$old_parent_form_id] ) && $imported_forms[$old_parent_form_id] != $old_parent_form_id ) { |
|
| 345 | 345 | // Update all children with this old parent_form_id |
| 346 | - $new_parent_form_id = (int) $imported_forms[ $old_parent_form_id ]; |
|
| 346 | + $new_parent_form_id = (int) $imported_forms[$old_parent_form_id]; |
|
| 347 | 347 | |
| 348 | 348 | FrmForm::update( $child_form_id, array( 'parent_form_id' => $new_parent_form_id ) ); |
| 349 | 349 | } |
@@ -374,27 +374,27 @@ discard block |
||
| 374 | 374 | |
| 375 | 375 | if ( ! empty( $this_form ) ) { |
| 376 | 376 | // check for field to edit by field id |
| 377 | - if ( isset( $form_fields[ $f['id'] ] ) ) { |
|
| 377 | + if ( isset( $form_fields[$f['id']] ) ) { |
|
| 378 | 378 | FrmField::update( $f['id'], $f ); |
| 379 | 379 | $imported['updated']['fields'] ++; |
| 380 | 380 | |
| 381 | - unset( $form_fields[ $f['id'] ] ); |
|
| 381 | + unset( $form_fields[$f['id']] ); |
|
| 382 | 382 | |
| 383 | 383 | //unset old field key |
| 384 | - if ( isset( $form_fields[ $f['field_key'] ] ) ) { |
|
| 385 | - unset( $form_fields[ $f['field_key'] ] ); |
|
| 384 | + if ( isset( $form_fields[$f['field_key']] ) ) { |
|
| 385 | + unset( $form_fields[$f['field_key']] ); |
|
| 386 | 386 | } |
| 387 | - } elseif ( isset( $form_fields[ $f['field_key'] ] ) ) { |
|
| 388 | - $keys_by_original_field_id[ $f['id'] ] = $f['field_key']; |
|
| 387 | + } elseif ( isset( $form_fields[$f['field_key']] ) ) { |
|
| 388 | + $keys_by_original_field_id[$f['id']] = $f['field_key']; |
|
| 389 | 389 | |
| 390 | 390 | // check for field to edit by field key |
| 391 | 391 | unset( $f['id'] ); |
| 392 | 392 | |
| 393 | - FrmField::update( $form_fields[ $f['field_key'] ], $f ); |
|
| 393 | + FrmField::update( $form_fields[$f['field_key']], $f ); |
|
| 394 | 394 | $imported['updated']['fields'] ++; |
| 395 | 395 | |
| 396 | - unset( $form_fields[ $form_fields[ $f['field_key'] ] ] ); //unset old field id |
|
| 397 | - unset( $form_fields[ $f['field_key'] ] ); //unset old field key |
|
| 396 | + unset( $form_fields[$form_fields[$f['field_key']]] ); //unset old field id |
|
| 397 | + unset( $form_fields[$f['field_key']] ); //unset old field key |
|
| 398 | 398 | } else { |
| 399 | 399 | // if no matching field id or key in this form, create the field |
| 400 | 400 | self::create_imported_field( $f, $imported ); |
@@ -504,8 +504,8 @@ discard block |
||
| 504 | 504 | if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
| 505 | 505 | if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
| 506 | 506 | $form_select = (int) $f['field_options']['form_select']; |
| 507 | - if ( isset( $imported['forms'][ $form_select ] ) ) { |
|
| 508 | - $f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
|
| 507 | + if ( isset( $imported['forms'][$form_select] ) ) { |
|
| 508 | + $f['field_options']['form_select'] = $imported['forms'][$form_select]; |
|
| 509 | 509 | } |
| 510 | 510 | } |
| 511 | 511 | } |
@@ -526,8 +526,8 @@ discard block |
||
| 526 | 526 | |
| 527 | 527 | if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
| 528 | 528 | $old_form = $f['field_options']['get_values_form']; |
| 529 | - if ( isset( $imported['forms'][ $old_form ] ) ) { |
|
| 530 | - $f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
|
| 529 | + if ( isset( $imported['forms'][$old_form] ) ) { |
|
| 530 | + $f['field_options']['get_values_form'] = $imported['forms'][$old_form]; |
|
| 531 | 531 | } |
| 532 | 532 | } |
| 533 | 533 | } |
@@ -548,12 +548,12 @@ discard block |
||
| 548 | 548 | private static function migrate_placeholders( &$f ) { |
| 549 | 549 | $update_values = self::migrate_field_placeholder( $f, 'clear_on_focus' ); |
| 550 | 550 | foreach ( $update_values as $k => $v ) { |
| 551 | - $f[ $k ] = $v; |
|
| 551 | + $f[$k] = $v; |
|
| 552 | 552 | } |
| 553 | 553 | |
| 554 | 554 | $update_values = self::migrate_field_placeholder( $f, 'default_blank' ); |
| 555 | 555 | foreach ( $update_values as $k => $v ) { |
| 556 | - $f[ $k ] = $v; |
|
| 556 | + $f[$k] = $v; |
|
| 557 | 557 | } |
| 558 | 558 | } |
| 559 | 559 | |
@@ -567,7 +567,7 @@ discard block |
||
| 567 | 567 | public static function migrate_field_placeholder( $field, $type ) { |
| 568 | 568 | $field = (array) $field; |
| 569 | 569 | $field_options = $field['field_options']; |
| 570 | - if ( empty( $field_options[ $type ] ) || empty( $field['default_value'] ) ) { |
|
| 570 | + if ( empty( $field_options[$type] ) || empty( $field['default_value'] ) ) { |
|
| 571 | 571 | return array(); |
| 572 | 572 | } |
| 573 | 573 | |
@@ -593,7 +593,7 @@ discard block |
||
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | if ( $opt == $default_value ) { |
| 596 | - unset( $options[ $opt_key ] ); |
|
| 596 | + unset( $options[$opt_key] ); |
|
| 597 | 597 | break; |
| 598 | 598 | } |
| 599 | 599 | } |
@@ -788,17 +788,17 @@ discard block |
||
| 788 | 788 | self::update_postmeta( $post, $post_id ); |
| 789 | 789 | |
| 790 | 790 | $this_type = 'posts'; |
| 791 | - if ( isset( $post_types[ $post['post_type'] ] ) ) { |
|
| 792 | - $this_type = $post_types[ $post['post_type'] ]; |
|
| 791 | + if ( isset( $post_types[$post['post_type']] ) ) { |
|
| 792 | + $this_type = $post_types[$post['post_type']]; |
|
| 793 | 793 | } |
| 794 | 794 | |
| 795 | 795 | if ( isset( $post['ID'] ) && $post_id == $post['ID'] ) { |
| 796 | - $imported['updated'][ $this_type ] ++; |
|
| 796 | + $imported['updated'][$this_type] ++; |
|
| 797 | 797 | } else { |
| 798 | - $imported['imported'][ $this_type ] ++; |
|
| 798 | + $imported['imported'][$this_type] ++; |
|
| 799 | 799 | } |
| 800 | 800 | |
| 801 | - $imported['posts'][ (int) $old_id ] = $post_id; |
|
| 801 | + $imported['posts'][(int) $old_id] = $post_id; |
|
| 802 | 802 | |
| 803 | 803 | do_action( 'frm_after_import_view', $post_id, $post ); |
| 804 | 804 | |
@@ -815,9 +815,9 @@ discard block |
||
| 815 | 815 | $post['attachment_url'] = (string) $item->attachment_url; |
| 816 | 816 | } |
| 817 | 817 | |
| 818 | - if ( $post['post_type'] == FrmFormActionsController::$action_post_type && isset( $imported['forms'][ (int) $post['menu_order'] ] ) ) { |
|
| 818 | + if ( $post['post_type'] == FrmFormActionsController::$action_post_type && isset( $imported['forms'][(int) $post['menu_order']] ) ) { |
|
| 819 | 819 | // update to new form id |
| 820 | - $post['menu_order'] = $imported['forms'][ (int) $post['menu_order'] ]; |
|
| 820 | + $post['menu_order'] = $imported['forms'][(int) $post['menu_order']]; |
|
| 821 | 821 | } |
| 822 | 822 | |
| 823 | 823 | // Don't allow default styles to take over a site's default style |
@@ -844,8 +844,8 @@ discard block |
||
| 844 | 844 | ); |
| 845 | 845 | |
| 846 | 846 | //switch old form and field ids to new ones |
| 847 | - if ( $m['key'] == 'frm_form_id' && isset( $imported['forms'][ (int) $m['value'] ] ) ) { |
|
| 848 | - $m['value'] = $imported['forms'][ (int) $m['value'] ]; |
|
| 847 | + if ( $m['key'] == 'frm_form_id' && isset( $imported['forms'][(int) $m['value']] ) ) { |
|
| 848 | + $m['value'] = $imported['forms'][(int) $m['value']]; |
|
| 849 | 849 | } else { |
| 850 | 850 | $m['value'] = FrmAppHelper::maybe_json_decode( $m['value'] ); |
| 851 | 851 | |
@@ -856,15 +856,15 @@ discard block |
||
| 856 | 856 | } elseif ( $m['key'] == 'frm_options' ) { |
| 857 | 857 | |
| 858 | 858 | foreach ( array( 'date_field_id', 'edate_field_id' ) as $setting_name ) { |
| 859 | - if ( isset( $m['value'][ $setting_name ] ) && is_numeric( $m['value'][ $setting_name ] ) && isset( $frm_duplicate_ids[ $m['value'][ $setting_name ] ] ) ) { |
|
| 860 | - $m['value'][ $setting_name ] = $frm_duplicate_ids[ $m['value'][ $setting_name ] ]; |
|
| 859 | + if ( isset( $m['value'][$setting_name] ) && is_numeric( $m['value'][$setting_name] ) && isset( $frm_duplicate_ids[$m['value'][$setting_name]] ) ) { |
|
| 860 | + $m['value'][$setting_name] = $frm_duplicate_ids[$m['value'][$setting_name]]; |
|
| 861 | 861 | } |
| 862 | 862 | } |
| 863 | 863 | |
| 864 | 864 | $check_dup_array = array(); |
| 865 | 865 | if ( isset( $m['value']['order_by'] ) && ! empty( $m['value']['order_by'] ) ) { |
| 866 | - if ( is_numeric( $m['value']['order_by'] ) && isset( $frm_duplicate_ids[ $m['value']['order_by'] ] ) ) { |
|
| 867 | - $m['value']['order_by'] = $frm_duplicate_ids[ $m['value']['order_by'] ]; |
|
| 866 | + if ( is_numeric( $m['value']['order_by'] ) && isset( $frm_duplicate_ids[$m['value']['order_by']] ) ) { |
|
| 867 | + $m['value']['order_by'] = $frm_duplicate_ids[$m['value']['order_by']]; |
|
| 868 | 868 | } elseif ( is_array( $m['value']['order_by'] ) ) { |
| 869 | 869 | $check_dup_array[] = 'order_by'; |
| 870 | 870 | } |
@@ -875,9 +875,9 @@ discard block |
||
| 875 | 875 | } |
| 876 | 876 | |
| 877 | 877 | foreach ( $check_dup_array as $check_k ) { |
| 878 | - foreach ( (array) $m['value'][ $check_k ] as $mk => $mv ) { |
|
| 879 | - if ( isset( $frm_duplicate_ids[ $mv ] ) ) { |
|
| 880 | - $m['value'][ $check_k ][ $mk ] = $frm_duplicate_ids[ $mv ]; |
|
| 878 | + foreach ( (array) $m['value'][$check_k] as $mk => $mv ) { |
|
| 879 | + if ( isset( $frm_duplicate_ids[$mv] ) ) { |
|
| 880 | + $m['value'][$check_k][$mk] = $frm_duplicate_ids[$mv]; |
|
| 881 | 881 | } |
| 882 | 882 | unset( $mk, $mv ); |
| 883 | 883 | } |
@@ -890,7 +890,7 @@ discard block |
||
| 890 | 890 | $m['value'] = FrmAppHelper::maybe_json_decode( $m['value'] ); |
| 891 | 891 | } |
| 892 | 892 | |
| 893 | - $post['postmeta'][ (string) $meta->meta_key ] = $m['value']; |
|
| 893 | + $post['postmeta'][(string) $meta->meta_key] = $m['value']; |
|
| 894 | 894 | } |
| 895 | 895 | |
| 896 | 896 | /** |
@@ -918,11 +918,11 @@ discard block |
||
| 918 | 918 | $name = (string) $c; |
| 919 | 919 | } |
| 920 | 920 | |
| 921 | - if ( ! isset( $post['tax_input'][ $taxonomy ] ) ) { |
|
| 922 | - $post['tax_input'][ $taxonomy ] = array(); |
|
| 921 | + if ( ! isset( $post['tax_input'][$taxonomy] ) ) { |
|
| 922 | + $post['tax_input'][$taxonomy] = array(); |
|
| 923 | 923 | } |
| 924 | 924 | |
| 925 | - $post['tax_input'][ $taxonomy ][] = $name; |
|
| 925 | + $post['tax_input'][$taxonomy][] = $name; |
|
| 926 | 926 | unset( $name ); |
| 927 | 927 | } |
| 928 | 928 | } |
@@ -1021,7 +1021,7 @@ discard block |
||
| 1021 | 1021 | |
| 1022 | 1022 | $message = '<ul>'; |
| 1023 | 1023 | foreach ( $result as $type => $results ) { |
| 1024 | - if ( ! isset( $t_strings[ $type ] ) ) { |
|
| 1024 | + if ( ! isset( $t_strings[$type] ) ) { |
|
| 1025 | 1025 | // only print imported and updated |
| 1026 | 1026 | continue; |
| 1027 | 1027 | } |
@@ -1033,7 +1033,7 @@ discard block |
||
| 1033 | 1033 | } |
| 1034 | 1034 | |
| 1035 | 1035 | if ( ! empty( $s_message ) ) { |
| 1036 | - $message .= '<li><strong>' . $t_strings[ $type ] . ':</strong> '; |
|
| 1036 | + $message .= '<li><strong>' . $t_strings[$type] . ':</strong> '; |
|
| 1037 | 1037 | $message .= implode( ', ', $s_message ); |
| 1038 | 1038 | $message .= '</li>'; |
| 1039 | 1039 | } |
@@ -1073,7 +1073,7 @@ discard block |
||
| 1073 | 1073 | 'actions' => sprintf( _n( '%1$s Form Action', '%1$s Form Actions', $m, 'formidable' ), $m ), |
| 1074 | 1074 | ); |
| 1075 | 1075 | |
| 1076 | - $s_message[] = isset( $strings[ $type ] ) ? $strings[ $type ] : ' ' . $m . ' ' . ucfirst( $type ); |
|
| 1076 | + $s_message[] = isset( $strings[$type] ) ? $strings[$type] : ' ' . $m . ' ' . ucfirst( $type ); |
|
| 1077 | 1077 | } |
| 1078 | 1078 | |
| 1079 | 1079 | /** |
@@ -1205,10 +1205,10 @@ discard block |
||
| 1205 | 1205 | $array_defaults = array_filter( $defaults, 'is_array' ); |
| 1206 | 1206 | foreach ( $array_defaults as $d => $default ) { |
| 1207 | 1207 | // compare array defaults |
| 1208 | - if ( $default == $saved[ $d ] ) { |
|
| 1209 | - unset( $saved[ $d ] ); |
|
| 1208 | + if ( $default == $saved[$d] ) { |
|
| 1209 | + unset( $saved[$d] ); |
|
| 1210 | 1210 | } |
| 1211 | - unset( $defaults[ $d ] ); |
|
| 1211 | + unset( $defaults[$d] ); |
|
| 1212 | 1212 | } |
| 1213 | 1213 | $saved = array_diff_assoc( (array) $saved, $defaults ); |
| 1214 | 1214 | } |
@@ -1219,14 +1219,14 @@ discard block |
||
| 1219 | 1219 | * @since 3.06 |
| 1220 | 1220 | */ |
| 1221 | 1221 | private static function remove_default_html( $html_name, $defaults, &$options ) { |
| 1222 | - if ( ! isset( $options[ $html_name ] ) || ! isset( $defaults[ $html_name ] ) ) { |
|
| 1222 | + if ( ! isset( $options[$html_name] ) || ! isset( $defaults[$html_name] ) ) { |
|
| 1223 | 1223 | return; |
| 1224 | 1224 | } |
| 1225 | 1225 | |
| 1226 | - $old_html = str_replace( "\r\n", "\n", $options[ $html_name ] ); |
|
| 1227 | - $default_html = $defaults[ $html_name ]; |
|
| 1226 | + $old_html = str_replace( "\r\n", "\n", $options[$html_name] ); |
|
| 1227 | + $default_html = $defaults[$html_name]; |
|
| 1228 | 1228 | if ( $old_html == $default_html ) { |
| 1229 | - unset( $options[ $html_name ] ); |
|
| 1229 | + unset( $options[$html_name] ); |
|
| 1230 | 1230 | |
| 1231 | 1231 | return; |
| 1232 | 1232 | } |
@@ -1234,7 +1234,7 @@ discard block |
||
| 1234 | 1234 | // Account for some of the older field default HTML. |
| 1235 | 1235 | $default_html = str_replace( ' id="frm_desc_field_[key]"', '', $default_html ); |
| 1236 | 1236 | if ( $old_html == $default_html ) { |
| 1237 | - unset( $options[ $html_name ] ); |
|
| 1237 | + unset( $options[$html_name] ); |
|
| 1238 | 1238 | } |
| 1239 | 1239 | } |
| 1240 | 1240 | |
@@ -1320,8 +1320,8 @@ discard block |
||
| 1320 | 1320 | ); |
| 1321 | 1321 | |
| 1322 | 1322 | foreach ( $post_settings as $post_setting ) { |
| 1323 | - if ( isset( $form_options[ $post_setting ] ) ) { |
|
| 1324 | - $new_action['post_content'][ $post_setting ] = $form_options[ $post_setting ]; |
|
| 1323 | + if ( isset( $form_options[$post_setting] ) ) { |
|
| 1324 | + $new_action['post_content'][$post_setting] = $form_options[$post_setting]; |
|
| 1325 | 1325 | } |
| 1326 | 1326 | unset( $post_setting ); |
| 1327 | 1327 | } |
@@ -1391,11 +1391,11 @@ discard block |
||
| 1391 | 1391 | foreach ( $post_content as $key => $setting ) { |
| 1392 | 1392 | if ( ! is_array( $setting ) && in_array( $key, $basic_fields ) ) { |
| 1393 | 1393 | // Replace old IDs with new IDs |
| 1394 | - $post_content[ $key ] = str_replace( $old, $new, $setting ); |
|
| 1394 | + $post_content[$key] = str_replace( $old, $new, $setting ); |
|
| 1395 | 1395 | } elseif ( is_array( $setting ) && in_array( $key, $array_fields ) ) { |
| 1396 | 1396 | foreach ( $setting as $k => $val ) { |
| 1397 | 1397 | // Replace old IDs with new IDs |
| 1398 | - $post_content[ $key ][ $k ] = str_replace( $old, $new, $val ); |
|
| 1398 | + $post_content[$key][$k] = str_replace( $old, $new, $val ); |
|
| 1399 | 1399 | } |
| 1400 | 1400 | } |
| 1401 | 1401 | unset( $key, $setting ); |
@@ -1471,8 +1471,8 @@ discard block |
||
| 1471 | 1471 | private static function remove_deprecated_notification_settings( $form_id, $form_options ) { |
| 1472 | 1472 | $delete_settings = array( 'notification', 'autoresponder', 'email_to' ); |
| 1473 | 1473 | foreach ( $delete_settings as $index ) { |
| 1474 | - if ( isset( $form_options[ $index ] ) ) { |
|
| 1475 | - unset( $form_options[ $index ] ); |
|
| 1474 | + if ( isset( $form_options[$index] ) ) { |
|
| 1475 | + unset( $form_options[$index] ); |
|
| 1476 | 1476 | } |
| 1477 | 1477 | } |
| 1478 | 1478 | FrmForm::update( $form_id, array( 'options' => $form_options ) ); |
@@ -1525,12 +1525,12 @@ discard block |
||
| 1525 | 1525 | 'reply_to_name' => '', |
| 1526 | 1526 | ); |
| 1527 | 1527 | foreach ( $reply_fields as $f => $val ) { |
| 1528 | - if ( isset( $notification[ $f ] ) ) { |
|
| 1529 | - $atts[ $f ] = $notification[ $f ]; |
|
| 1530 | - if ( 'custom' == $notification[ $f ] ) { |
|
| 1531 | - $atts[ $f ] = $notification[ 'cust_' . $f ]; |
|
| 1532 | - } elseif ( is_numeric( $atts[ $f ] ) && ! empty( $atts[ $f ] ) ) { |
|
| 1533 | - $atts[ $f ] = '[' . $atts[ $f ] . ']'; |
|
| 1528 | + if ( isset( $notification[$f] ) ) { |
|
| 1529 | + $atts[$f] = $notification[$f]; |
|
| 1530 | + if ( 'custom' == $notification[$f] ) { |
|
| 1531 | + $atts[$f] = $notification['cust_' . $f]; |
|
| 1532 | + } elseif ( is_numeric( $atts[$f] ) && ! empty( $atts[$f] ) ) { |
|
| 1533 | + $atts[$f] = '[' . $atts[$f] . ']'; |
|
| 1534 | 1534 | } |
| 1535 | 1535 | } |
| 1536 | 1536 | unset( $f, $val ); |
@@ -1561,13 +1561,13 @@ discard block |
||
| 1561 | 1561 | foreach ( $atts['email_to'] as $key => $email_field ) { |
| 1562 | 1562 | |
| 1563 | 1563 | if ( is_numeric( $email_field ) ) { |
| 1564 | - $atts['email_to'][ $key ] = '[' . $email_field . ']'; |
|
| 1564 | + $atts['email_to'][$key] = '[' . $email_field . ']'; |
|
| 1565 | 1565 | } |
| 1566 | 1566 | |
| 1567 | 1567 | if ( strpos( $email_field, '|' ) ) { |
| 1568 | 1568 | $email_opt = explode( '|', $email_field ); |
| 1569 | 1569 | if ( isset( $email_opt[0] ) ) { |
| 1570 | - $atts['email_to'][ $key ] = '[' . $email_opt[0] . ' show=' . $email_opt[1] . ']'; |
|
| 1570 | + $atts['email_to'][$key] = '[' . $email_opt[0] . ' show=' . $email_opt[1] . ']'; |
|
| 1571 | 1571 | } |
| 1572 | 1572 | unset( $email_opt ); |
| 1573 | 1573 | } |
@@ -1588,12 +1588,12 @@ discard block |
||
| 1588 | 1588 | // Add more fields to the new notification |
| 1589 | 1589 | $add_fields = array( 'email_message', 'email_subject', 'plain_text', 'inc_user_info', 'conditions' ); |
| 1590 | 1590 | foreach ( $add_fields as $add_field ) { |
| 1591 | - if ( isset( $notification[ $add_field ] ) ) { |
|
| 1592 | - $new_notification['post_content'][ $add_field ] = $notification[ $add_field ]; |
|
| 1591 | + if ( isset( $notification[$add_field] ) ) { |
|
| 1592 | + $new_notification['post_content'][$add_field] = $notification[$add_field]; |
|
| 1593 | 1593 | } elseif ( in_array( $add_field, array( 'plain_text', 'inc_user_info' ) ) ) { |
| 1594 | - $new_notification['post_content'][ $add_field ] = 0; |
|
| 1594 | + $new_notification['post_content'][$add_field] = 0; |
|
| 1595 | 1595 | } else { |
| 1596 | - $new_notification['post_content'][ $add_field ] = ''; |
|
| 1596 | + $new_notification['post_content'][$add_field] = ''; |
|
| 1597 | 1597 | } |
| 1598 | 1598 | unset( $add_field ); |
| 1599 | 1599 | } |
@@ -1617,7 +1617,7 @@ discard block |
||
| 1617 | 1617 | if ( isset( $post_content['conditions'] ) && is_array( $post_content['conditions'] ) ) { |
| 1618 | 1618 | foreach ( $post_content['conditions'] as $email_key => $val ) { |
| 1619 | 1619 | if ( is_numeric( $email_key ) ) { |
| 1620 | - $post_content['conditions'][ $email_key ] = self::switch_action_field_ids( $val, array( 'hide_field' ) ); |
|
| 1620 | + $post_content['conditions'][$email_key] = self::switch_action_field_ids( $val, array( 'hide_field' ) ); |
|
| 1621 | 1621 | } |
| 1622 | 1622 | unset( $email_key, $val ); |
| 1623 | 1623 | } |