@@ -23,30 +23,30 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public static function import_xml( $file ) { |
| 26 | - $defaults = array( |
|
| 27 | - 'forms' => 0, 'fields' => 0, 'terms' => 0, |
|
| 28 | - 'posts' => 0, 'views' => 0, 'actions' => 0, |
|
| 29 | - 'styles' => 0, |
|
| 30 | - ); |
|
| 31 | - |
|
| 32 | - $imported = array( |
|
| 33 | - 'imported' => $defaults, |
|
| 26 | + $defaults = array( |
|
| 27 | + 'forms' => 0, 'fields' => 0, 'terms' => 0, |
|
| 28 | + 'posts' => 0, 'views' => 0, 'actions' => 0, |
|
| 29 | + 'styles' => 0, |
|
| 30 | + ); |
|
| 31 | + |
|
| 32 | + $imported = array( |
|
| 33 | + 'imported' => $defaults, |
|
| 34 | 34 | 'updated' => $defaults, |
| 35 | 35 | 'forms' => array(), |
| 36 | 36 | 'terms' => array(), |
| 37 | - ); |
|
| 37 | + ); |
|
| 38 | 38 | |
| 39 | - unset($defaults); |
|
| 39 | + unset($defaults); |
|
| 40 | 40 | |
| 41 | 41 | if ( ! defined( 'WP_IMPORTING' ) ) { |
| 42 | - define('WP_IMPORTING', true); |
|
| 43 | - } |
|
| 42 | + define('WP_IMPORTING', true); |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | 45 | if ( ! class_exists( 'DOMDocument' ) ) { |
| 46 | - return new WP_Error( 'SimpleXML_parse_error', __( 'Your server does not have XML enabled', 'formidable' ), libxml_get_errors() ); |
|
| 47 | - } |
|
| 46 | + return new WP_Error( 'SimpleXML_parse_error', __( 'Your server does not have XML enabled', 'formidable' ), libxml_get_errors() ); |
|
| 47 | + } |
|
| 48 | 48 | |
| 49 | - $dom = new DOMDocument; |
|
| 49 | + $dom = new DOMDocument; |
|
| 50 | 50 | $success = $dom->loadXML( file_get_contents( $file ) ); |
| 51 | 51 | if ( ! $success ) { |
| 52 | 52 | return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this XML file', 'formidable' ), libxml_get_errors() ); |
@@ -64,45 +64,45 @@ discard block |
||
| 64 | 64 | return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this XML file', 'formidable' ), libxml_get_errors() ); |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - // add terms, forms (form and field ids), posts (post ids), and entries to db, in that order |
|
| 67 | + // add terms, forms (form and field ids), posts (post ids), and entries to db, in that order |
|
| 68 | 68 | foreach ( array( 'term', 'form', 'view' ) as $item_type ) { |
| 69 | - // grab cats, tags, and terms, or forms or posts |
|
| 70 | - if ( isset($xml->{$item_type} ) ) { |
|
| 69 | + // grab cats, tags, and terms, or forms or posts |
|
| 70 | + if ( isset($xml->{$item_type} ) ) { |
|
| 71 | 71 | $function_name = 'import_xml_' . $item_type . 's'; |
| 72 | 72 | $imported = self::$function_name( $xml->{$item_type}, $imported ); |
| 73 | 73 | unset( $function_name, $xml->{$item_type} ); |
| 74 | - } |
|
| 75 | - } |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - $return = apply_filters('frm_importing_xml', $imported, $xml ); |
|
| 77 | + $return = apply_filters('frm_importing_xml', $imported, $xml ); |
|
| 78 | 78 | |
| 79 | - return $return; |
|
| 80 | - } |
|
| 79 | + return $return; |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | 82 | public static function import_xml_terms( $terms, $imported ) { |
| 83 | - foreach ( $terms as $t ) { |
|
| 83 | + foreach ( $terms as $t ) { |
|
| 84 | 84 | if ( term_exists( (string) $t->term_slug, (string) $t->term_taxonomy ) ) { |
| 85 | - continue; |
|
| 85 | + continue; |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | $parent = self::get_term_parent_id( $t ); |
| 89 | 89 | |
| 90 | 90 | $term = wp_insert_term( (string) $t->term_name, (string) $t->term_taxonomy, array( |
| 91 | - 'slug' => (string) $t->term_slug, |
|
| 92 | - 'description' => (string) $t->term_description, |
|
| 91 | + 'slug' => (string) $t->term_slug, |
|
| 92 | + 'description' => (string) $t->term_description, |
|
| 93 | 93 | 'parent' => empty( $parent ) ? 0 : $parent, |
| 94 | - )); |
|
| 94 | + )); |
|
| 95 | 95 | |
| 96 | 96 | if ( $term && is_array( $term ) ) { |
| 97 | - $imported['imported']['terms']++; |
|
| 97 | + $imported['imported']['terms']++; |
|
| 98 | 98 | $imported['terms'][ (int) $t->term_id ] = $term['term_id']; |
| 99 | - } |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | 101 | unset( $term, $t ); |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | return $imported; |
| 105 | - } |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | 107 | /** |
| 108 | 108 | * @since 2.0.8 |
@@ -127,11 +127,11 @@ discard block |
||
| 127 | 127 | self::put_child_forms_first( $forms ); |
| 128 | 128 | |
| 129 | 129 | foreach ( $forms as $item ) { |
| 130 | - $form = self::fill_form( $item ); |
|
| 130 | + $form = self::fill_form( $item ); |
|
| 131 | 131 | |
| 132 | 132 | self::update_custom_style_setting_on_import( $form ); |
| 133 | 133 | |
| 134 | - $this_form = self::maybe_get_form( $form ); |
|
| 134 | + $this_form = self::maybe_get_form( $form ); |
|
| 135 | 135 | |
| 136 | 136 | $old_id = false; |
| 137 | 137 | $form_fields = false; |
@@ -143,35 +143,35 @@ discard block |
||
| 143 | 143 | $form_fields = self::get_form_fields( $form_id ); |
| 144 | 144 | } else { |
| 145 | 145 | $form_id = FrmForm::create( $form ); |
| 146 | - if ( $form_id ) { |
|
| 147 | - $imported['imported']['forms']++; |
|
| 148 | - // Keep track of whether this specific form was updated or not |
|
| 146 | + if ( $form_id ) { |
|
| 147 | + $imported['imported']['forms']++; |
|
| 148 | + // Keep track of whether this specific form was updated or not |
|
| 149 | 149 | $imported['form_status'][ $form_id ] = 'imported'; |
| 150 | 150 | self::track_imported_child_forms( (int) $form_id, $form['parent_form_id'], $child_forms ); |
| 151 | - } |
|
| 151 | + } |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | self::import_xml_fields( $item->field, $form_id, $this_form, $form_fields, $imported ); |
| 155 | 155 | |
| 156 | 156 | self::delete_removed_fields( $form_fields ); |
| 157 | 157 | |
| 158 | - // Update field ids/keys to new ones |
|
| 158 | + // Update field ids/keys to new ones |
|
| 159 | 159 | do_action( 'frm_after_duplicate_form', $form_id, $form, array( 'old_id' => $old_id ) ); |
| 160 | 160 | |
| 161 | 161 | $imported['forms'][ (int) $item->id ] = $form_id; |
| 162 | 162 | |
| 163 | - // Send pre 2.0 form options through function that creates actions |
|
| 164 | - self::migrate_form_settings_to_actions( $form['options'], $form_id, $imported, true ); |
|
| 163 | + // Send pre 2.0 form options through function that creates actions |
|
| 164 | + self::migrate_form_settings_to_actions( $form['options'], $form_id, $imported, true ); |
|
| 165 | 165 | |
| 166 | 166 | do_action( 'frm_after_import_form', $form_id, $form ); |
| 167 | 167 | |
| 168 | - unset($form, $item); |
|
| 168 | + unset($form, $item); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | self::maybe_update_child_form_parent_id( $imported['forms'], $child_forms ); |
| 172 | 172 | |
| 173 | 173 | return $imported; |
| 174 | - } |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | 176 | private static function fill_form( $item ) { |
| 177 | 177 | $form = array( |
@@ -239,11 +239,11 @@ discard block |
||
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | /** |
| 242 | - * Put child forms first so they will be imported before parents |
|
| 243 | - * |
|
| 244 | - * @since 2.0.16 |
|
| 245 | - * @param array $forms |
|
| 246 | - */ |
|
| 242 | + * Put child forms first so they will be imported before parents |
|
| 243 | + * |
|
| 244 | + * @since 2.0.16 |
|
| 245 | + * @param array $forms |
|
| 246 | + */ |
|
| 247 | 247 | private static function put_child_forms_first( &$forms ) { |
| 248 | 248 | $child_forms = array(); |
| 249 | 249 | $regular_forms = array(); |
@@ -262,13 +262,13 @@ discard block |
||
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
| 265 | - * Keep track of all imported child forms |
|
| 266 | - * |
|
| 267 | - * @since 2.0.16 |
|
| 268 | - * @param int $form_id |
|
| 269 | - * @param int $parent_form_id |
|
| 270 | - * @param array $child_forms |
|
| 271 | - */ |
|
| 265 | + * Keep track of all imported child forms |
|
| 266 | + * |
|
| 267 | + * @since 2.0.16 |
|
| 268 | + * @param int $form_id |
|
| 269 | + * @param int $parent_form_id |
|
| 270 | + * @param array $child_forms |
|
| 271 | + */ |
|
| 272 | 272 | private static function track_imported_child_forms( $form_id, $parent_form_id, &$child_forms ) { |
| 273 | 273 | if ( $parent_form_id ) { |
| 274 | 274 | $child_forms[ $form_id ] = $parent_form_id; |
@@ -276,13 +276,13 @@ discard block |
||
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | /** |
| 279 | - * Update the parent_form_id on imported child forms |
|
| 280 | - * Child forms are imported first so their parent_form_id will need to be updated after the parent is imported |
|
| 281 | - * |
|
| 282 | - * @since 2.0.6 |
|
| 283 | - * @param array $imported_forms |
|
| 284 | - * @param array $child_forms |
|
| 285 | - */ |
|
| 279 | + * Update the parent_form_id on imported child forms |
|
| 280 | + * Child forms are imported first so their parent_form_id will need to be updated after the parent is imported |
|
| 281 | + * |
|
| 282 | + * @since 2.0.6 |
|
| 283 | + * @param array $imported_forms |
|
| 284 | + * @param array $child_forms |
|
| 285 | + */ |
|
| 286 | 286 | private static function maybe_update_child_form_parent_id( $imported_forms, $child_forms ) { |
| 287 | 287 | foreach ( $child_forms as $child_form_id => $old_parent_form_id ) { |
| 288 | 288 | |
@@ -296,28 +296,28 @@ discard block |
||
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | /** |
| 299 | - * Import all fields for a form |
|
| 300 | - * @since 2.0.13 |
|
| 301 | - * |
|
| 302 | - * TODO: Cut down on params |
|
| 303 | - */ |
|
| 299 | + * Import all fields for a form |
|
| 300 | + * @since 2.0.13 |
|
| 301 | + * |
|
| 302 | + * TODO: Cut down on params |
|
| 303 | + */ |
|
| 304 | 304 | private static function import_xml_fields( $xml_fields, $form_id, $this_form, &$form_fields, &$imported ) { |
| 305 | 305 | $in_section = 0; |
| 306 | 306 | |
| 307 | 307 | foreach ( $xml_fields as $field ) { |
| 308 | 308 | $f = self::fill_field( $field, $form_id ); |
| 309 | 309 | |
| 310 | - if ( is_array($f['default_value']) && in_array($f['type'], array( |
|
| 311 | - 'text', 'email', 'url', 'textarea', |
|
| 312 | - 'number','phone', 'date', |
|
| 313 | - 'hidden', 'password', 'tag', 'image', |
|
| 314 | - )) ) { |
|
| 315 | - if ( count($f['default_value']) === 1 ) { |
|
| 310 | + if ( is_array($f['default_value']) && in_array($f['type'], array( |
|
| 311 | + 'text', 'email', 'url', 'textarea', |
|
| 312 | + 'number','phone', 'date', |
|
| 313 | + 'hidden', 'password', 'tag', 'image', |
|
| 314 | + )) ) { |
|
| 315 | + if ( count($f['default_value']) === 1 ) { |
|
| 316 | 316 | $f['default_value'] = '[' . reset( $f['default_value'] ) . ']'; |
| 317 | - } else { |
|
| 318 | - $f['default_value'] = reset($f['default_value']); |
|
| 319 | - } |
|
| 320 | - } |
|
| 317 | + } else { |
|
| 318 | + $f['default_value'] = reset($f['default_value']); |
|
| 319 | + } |
|
| 320 | + } |
|
| 321 | 321 | |
| 322 | 322 | self::maybe_update_in_section_variable( $in_section, $f ); |
| 323 | 323 | self::maybe_update_form_select( $f, $imported ); |
@@ -396,12 +396,12 @@ discard block |
||
| 396 | 396 | } |
| 397 | 397 | |
| 398 | 398 | /** |
| 399 | - * Switch the form_select on a repeating field or embedded form if it needs to be switched |
|
| 400 | - * |
|
| 401 | - * @since 2.0.16 |
|
| 402 | - * @param array $f |
|
| 403 | - * @param array $imported |
|
| 404 | - */ |
|
| 399 | + * Switch the form_select on a repeating field or embedded form if it needs to be switched |
|
| 400 | + * |
|
| 401 | + * @since 2.0.16 |
|
| 402 | + * @param array $f |
|
| 403 | + * @param array $imported |
|
| 404 | + */ |
|
| 405 | 405 | private static function maybe_update_form_select( &$f, $imported ) { |
| 406 | 406 | if ( ! isset( $imported['forms'] ) ) { |
| 407 | 407 | return; |
@@ -453,13 +453,13 @@ discard block |
||
| 453 | 453 | } |
| 454 | 454 | |
| 455 | 455 | /** |
| 456 | - * Updates the custom style setting on import |
|
| 457 | - * Convert the post slug to an ID |
|
| 458 | - * |
|
| 459 | - * @since 2.0.19 |
|
| 460 | - * @param array $form |
|
| 461 | - * |
|
| 462 | - */ |
|
| 456 | + * Updates the custom style setting on import |
|
| 457 | + * Convert the post slug to an ID |
|
| 458 | + * |
|
| 459 | + * @since 2.0.19 |
|
| 460 | + * @param array $form |
|
| 461 | + * |
|
| 462 | + */ |
|
| 463 | 463 | private static function update_custom_style_setting_on_import( &$form ) { |
| 464 | 464 | if ( ! isset( $form['options']['custom_style'] ) ) { |
| 465 | 465 | return; |
@@ -513,16 +513,16 @@ discard block |
||
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | public static function import_xml_views( $views, $imported ) { |
| 516 | - $imported['posts'] = array(); |
|
| 517 | - $form_action_type = FrmFormActionsController::$action_post_type; |
|
| 516 | + $imported['posts'] = array(); |
|
| 517 | + $form_action_type = FrmFormActionsController::$action_post_type; |
|
| 518 | 518 | |
| 519 | - $post_types = array( |
|
| 520 | - 'frm_display' => 'views', |
|
| 521 | - $form_action_type => 'actions', |
|
| 522 | - 'frm_styles' => 'styles', |
|
| 523 | - ); |
|
| 519 | + $post_types = array( |
|
| 520 | + 'frm_display' => 'views', |
|
| 521 | + $form_action_type => 'actions', |
|
| 522 | + 'frm_styles' => 'styles', |
|
| 523 | + ); |
|
| 524 | 524 | |
| 525 | - foreach ( $views as $item ) { |
|
| 525 | + foreach ( $views as $item ) { |
|
| 526 | 526 | $post = array( |
| 527 | 527 | 'post_title' => (string) $item->title, |
| 528 | 528 | 'post_name' => (string) $item->post_name, |
@@ -541,52 +541,52 @@ discard block |
||
| 541 | 541 | 'post_date' => (string) $item->post_date, |
| 542 | 542 | 'post_date_gmt' => (string) $item->post_date_gmt, |
| 543 | 543 | 'ping_status' => (string) $item->ping_status, |
| 544 | - 'postmeta' => array(), |
|
| 545 | - 'tax_input' => array(), |
|
| 544 | + 'postmeta' => array(), |
|
| 545 | + 'tax_input' => array(), |
|
| 546 | 546 | ); |
| 547 | 547 | |
| 548 | - $old_id = $post['post_id']; |
|
| 549 | - self::populate_post($post, $item, $imported); |
|
| 548 | + $old_id = $post['post_id']; |
|
| 549 | + self::populate_post($post, $item, $imported); |
|
| 550 | 550 | |
| 551 | 551 | unset($item); |
| 552 | 552 | |
| 553 | 553 | $post_id = false; |
| 554 | - if ( $post['post_type'] == $form_action_type ) { |
|
| 555 | - $action_control = FrmFormActionsController::get_form_actions( $post['post_excerpt'] ); |
|
| 554 | + if ( $post['post_type'] == $form_action_type ) { |
|
| 555 | + $action_control = FrmFormActionsController::get_form_actions( $post['post_excerpt'] ); |
|
| 556 | 556 | if ( $action_control && is_object( $action_control ) ) { |
| 557 | 557 | $post_id = $action_control->maybe_create_action( $post, $imported['form_status'] ); |
| 558 | 558 | } |
| 559 | - unset($action_control); |
|
| 560 | - } else if ( $post['post_type'] == 'frm_styles' ) { |
|
| 561 | - // Properly encode post content before inserting the post |
|
| 562 | - $post['post_content'] = FrmAppHelper::maybe_json_decode( $post['post_content'] ); |
|
| 559 | + unset($action_control); |
|
| 560 | + } else if ( $post['post_type'] == 'frm_styles' ) { |
|
| 561 | + // Properly encode post content before inserting the post |
|
| 562 | + $post['post_content'] = FrmAppHelper::maybe_json_decode( $post['post_content'] ); |
|
| 563 | 563 | $custom_css = isset( $post['post_content']['custom_css'] ) ? $post['post_content']['custom_css'] : ''; |
| 564 | - $post['post_content'] = FrmAppHelper::prepare_and_encode( $post['post_content'] ); |
|
| 564 | + $post['post_content'] = FrmAppHelper::prepare_and_encode( $post['post_content'] ); |
|
| 565 | 565 | |
| 566 | - // Create/update post now |
|
| 567 | - $post_id = wp_insert_post( $post ); |
|
| 566 | + // Create/update post now |
|
| 567 | + $post_id = wp_insert_post( $post ); |
|
| 568 | 568 | self::maybe_update_custom_css( $custom_css ); |
| 569 | - } else { |
|
| 570 | - // Create/update post now |
|
| 571 | - $post_id = wp_insert_post( $post ); |
|
| 572 | - } |
|
| 569 | + } else { |
|
| 570 | + // Create/update post now |
|
| 571 | + $post_id = wp_insert_post( $post ); |
|
| 572 | + } |
|
| 573 | 573 | |
| 574 | - if ( ! is_numeric($post_id) ) { |
|
| 575 | - continue; |
|
| 576 | - } |
|
| 574 | + if ( ! is_numeric($post_id) ) { |
|
| 575 | + continue; |
|
| 576 | + } |
|
| 577 | 577 | |
| 578 | - self::update_postmeta($post, $post_id); |
|
| 578 | + self::update_postmeta($post, $post_id); |
|
| 579 | 579 | |
| 580 | - $this_type = 'posts'; |
|
| 580 | + $this_type = 'posts'; |
|
| 581 | 581 | if ( isset( $post_types[ $post['post_type'] ] ) ) { |
| 582 | 582 | $this_type = $post_types[ $post['post_type'] ]; |
| 583 | - } |
|
| 583 | + } |
|
| 584 | 584 | |
| 585 | - if ( isset($post['ID']) && $post_id == $post['ID'] ) { |
|
| 586 | - $imported['updated'][ $this_type ]++; |
|
| 587 | - } else { |
|
| 588 | - $imported['imported'][ $this_type ]++; |
|
| 589 | - } |
|
| 585 | + if ( isset($post['ID']) && $post_id == $post['ID'] ) { |
|
| 586 | + $imported['updated'][ $this_type ]++; |
|
| 587 | + } else { |
|
| 588 | + $imported['imported'][ $this_type ]++; |
|
| 589 | + } |
|
| 590 | 590 | |
| 591 | 591 | $imported['posts'][ (int) $old_id ] = $post_id; |
| 592 | 592 | |
@@ -598,16 +598,16 @@ discard block |
||
| 598 | 598 | self::maybe_update_stylesheet( $imported ); |
| 599 | 599 | |
| 600 | 600 | return $imported; |
| 601 | - } |
|
| 601 | + } |
|
| 602 | 602 | |
| 603 | - private static function populate_post( &$post, $item, $imported ) { |
|
| 603 | + private static function populate_post( &$post, $item, $imported ) { |
|
| 604 | 604 | if ( isset($item->attachment_url) ) { |
| 605 | 605 | $post['attachment_url'] = (string) $item->attachment_url; |
| 606 | 606 | } |
| 607 | 607 | |
| 608 | 608 | if ( $post['post_type'] == FrmFormActionsController::$action_post_type && isset( $imported['forms'][ (int) $post['menu_order'] ] ) ) { |
| 609 | - // update to new form id |
|
| 610 | - $post['menu_order'] = $imported['forms'][ (int) $post['menu_order'] ]; |
|
| 609 | + // update to new form id |
|
| 610 | + $post['menu_order'] = $imported['forms'][ (int) $post['menu_order'] ]; |
|
| 611 | 611 | } |
| 612 | 612 | |
| 613 | 613 | // Don't allow default styles to take over a site's default style |
@@ -616,144 +616,144 @@ discard block |
||
| 616 | 616 | } |
| 617 | 617 | |
| 618 | 618 | foreach ( $item->postmeta as $meta ) { |
| 619 | - self::populate_postmeta($post, $meta, $imported); |
|
| 619 | + self::populate_postmeta($post, $meta, $imported); |
|
| 620 | 620 | unset($meta); |
| 621 | 621 | } |
| 622 | 622 | |
| 623 | - self::populate_taxonomies($post, $item); |
|
| 623 | + self::populate_taxonomies($post, $item); |
|
| 624 | 624 | |
| 625 | - self::maybe_editing_post($post); |
|
| 626 | - } |
|
| 625 | + self::maybe_editing_post($post); |
|
| 626 | + } |
|
| 627 | 627 | |
| 628 | - private static function populate_postmeta( &$post, $meta, $imported ) { |
|
| 629 | - global $frm_duplicate_ids; |
|
| 628 | + private static function populate_postmeta( &$post, $meta, $imported ) { |
|
| 629 | + global $frm_duplicate_ids; |
|
| 630 | 630 | |
| 631 | - $m = array( |
|
| 631 | + $m = array( |
|
| 632 | 632 | 'key' => (string) $meta->meta_key, |
| 633 | 633 | 'value' => (string) $meta->meta_value, |
| 634 | 634 | ); |
| 635 | 635 | |
| 636 | 636 | //switch old form and field ids to new ones |
| 637 | 637 | if ( $m['key'] == 'frm_form_id' && isset($imported['forms'][ (int) $m['value'] ]) ) { |
| 638 | - $m['value'] = $imported['forms'][ (int) $m['value'] ]; |
|
| 638 | + $m['value'] = $imported['forms'][ (int) $m['value'] ]; |
|
| 639 | 639 | } else { |
| 640 | - $m['value'] = FrmAppHelper::maybe_json_decode($m['value']); |
|
| 640 | + $m['value'] = FrmAppHelper::maybe_json_decode($m['value']); |
|
| 641 | 641 | |
| 642 | - if ( ! empty($frm_duplicate_ids) ) { |
|
| 642 | + if ( ! empty($frm_duplicate_ids) ) { |
|
| 643 | 643 | |
| 644 | - if ( $m['key'] == 'frm_dyncontent' ) { |
|
| 645 | - $m['value'] = FrmFieldsHelper::switch_field_ids($m['value']); |
|
| 646 | - } else if ( $m['key'] == 'frm_options' ) { |
|
| 644 | + if ( $m['key'] == 'frm_dyncontent' ) { |
|
| 645 | + $m['value'] = FrmFieldsHelper::switch_field_ids($m['value']); |
|
| 646 | + } else if ( $m['key'] == 'frm_options' ) { |
|
| 647 | 647 | |
| 648 | 648 | foreach ( array( 'date_field_id', 'edate_field_id' ) as $setting_name ) { |
| 649 | 649 | if ( isset( $m['value'][ $setting_name ] ) && is_numeric( $m['value'][ $setting_name ] ) && isset( $frm_duplicate_ids[ $m['value'][ $setting_name ] ] ) ) { |
| 650 | 650 | $m['value'][ $setting_name ] = $frm_duplicate_ids[ $m['value'][ $setting_name ] ]; |
| 651 | - } |
|
| 652 | - } |
|
| 653 | - |
|
| 654 | - $check_dup_array = array(); |
|
| 655 | - if ( isset( $m['value']['order_by'] ) && ! empty( $m['value']['order_by'] ) ) { |
|
| 656 | - if ( is_numeric( $m['value']['order_by'] ) && isset( $frm_duplicate_ids[ $m['value']['order_by'] ] ) ) { |
|
| 657 | - $m['value']['order_by'] = $frm_duplicate_ids[ $m['value']['order_by'] ]; |
|
| 658 | - } else if ( is_array( $m['value']['order_by'] ) ) { |
|
| 659 | - $check_dup_array[] = 'order_by'; |
|
| 660 | - } |
|
| 661 | - } |
|
| 662 | - |
|
| 663 | - if ( isset( $m['value']['where'] ) && ! empty( $m['value']['where'] ) ) { |
|
| 664 | - $check_dup_array[] = 'where'; |
|
| 665 | - } |
|
| 666 | - |
|
| 667 | - foreach ( $check_dup_array as $check_k ) { |
|
| 651 | + } |
|
| 652 | + } |
|
| 653 | + |
|
| 654 | + $check_dup_array = array(); |
|
| 655 | + if ( isset( $m['value']['order_by'] ) && ! empty( $m['value']['order_by'] ) ) { |
|
| 656 | + if ( is_numeric( $m['value']['order_by'] ) && isset( $frm_duplicate_ids[ $m['value']['order_by'] ] ) ) { |
|
| 657 | + $m['value']['order_by'] = $frm_duplicate_ids[ $m['value']['order_by'] ]; |
|
| 658 | + } else if ( is_array( $m['value']['order_by'] ) ) { |
|
| 659 | + $check_dup_array[] = 'order_by'; |
|
| 660 | + } |
|
| 661 | + } |
|
| 662 | + |
|
| 663 | + if ( isset( $m['value']['where'] ) && ! empty( $m['value']['where'] ) ) { |
|
| 664 | + $check_dup_array[] = 'where'; |
|
| 665 | + } |
|
| 666 | + |
|
| 667 | + foreach ( $check_dup_array as $check_k ) { |
|
| 668 | 668 | foreach ( (array) $m['value'][ $check_k ] as $mk => $mv ) { |
| 669 | 669 | if ( isset( $frm_duplicate_ids[ $mv ] ) ) { |
| 670 | 670 | $m['value'][ $check_k ][ $mk ] = $frm_duplicate_ids[ $mv ]; |
| 671 | - } |
|
| 672 | - unset($mk, $mv); |
|
| 673 | - } |
|
| 674 | - } |
|
| 675 | - } |
|
| 676 | - } |
|
| 671 | + } |
|
| 672 | + unset($mk, $mv); |
|
| 673 | + } |
|
| 674 | + } |
|
| 675 | + } |
|
| 676 | + } |
|
| 677 | 677 | } |
| 678 | 678 | |
| 679 | 679 | if ( ! is_array($m['value']) ) { |
| 680 | - $m['value'] = FrmAppHelper::maybe_json_decode($m['value']); |
|
| 680 | + $m['value'] = FrmAppHelper::maybe_json_decode($m['value']); |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | $post['postmeta'][ (string) $meta->meta_key ] = $m['value']; |
| 684 | - } |
|
| 685 | - |
|
| 686 | - /** |
|
| 687 | - * Add terms to post |
|
| 688 | - * @param array $post by reference |
|
| 689 | - * @param object $item The XML object data |
|
| 690 | - */ |
|
| 691 | - private static function populate_taxonomies( &$post, $item ) { |
|
| 684 | + } |
|
| 685 | + |
|
| 686 | + /** |
|
| 687 | + * Add terms to post |
|
| 688 | + * @param array $post by reference |
|
| 689 | + * @param object $item The XML object data |
|
| 690 | + */ |
|
| 691 | + private static function populate_taxonomies( &$post, $item ) { |
|
| 692 | 692 | foreach ( $item->category as $c ) { |
| 693 | 693 | $att = $c->attributes(); |
| 694 | 694 | if ( ! isset( $att['nicename'] ) ) { |
| 695 | - continue; |
|
| 696 | - } |
|
| 697 | - |
|
| 698 | - $taxonomy = (string) $att['domain']; |
|
| 699 | - if ( is_taxonomy_hierarchical($taxonomy) ) { |
|
| 700 | - $name = (string) $att['nicename']; |
|
| 701 | - $h_term = get_term_by('slug', $name, $taxonomy); |
|
| 702 | - if ( $h_term ) { |
|
| 703 | - $name = $h_term->term_id; |
|
| 704 | - } |
|
| 705 | - unset($h_term); |
|
| 706 | - } else { |
|
| 707 | - $name = (string) $c; |
|
| 708 | - } |
|
| 695 | + continue; |
|
| 696 | + } |
|
| 697 | + |
|
| 698 | + $taxonomy = (string) $att['domain']; |
|
| 699 | + if ( is_taxonomy_hierarchical($taxonomy) ) { |
|
| 700 | + $name = (string) $att['nicename']; |
|
| 701 | + $h_term = get_term_by('slug', $name, $taxonomy); |
|
| 702 | + if ( $h_term ) { |
|
| 703 | + $name = $h_term->term_id; |
|
| 704 | + } |
|
| 705 | + unset($h_term); |
|
| 706 | + } else { |
|
| 707 | + $name = (string) $c; |
|
| 708 | + } |
|
| 709 | 709 | |
| 710 | 710 | if ( ! isset( $post['tax_input'][ $taxonomy ] ) ) { |
| 711 | 711 | $post['tax_input'][ $taxonomy ] = array(); |
| 712 | 712 | } |
| 713 | 713 | |
| 714 | 714 | $post['tax_input'][ $taxonomy ][] = $name; |
| 715 | - unset($name); |
|
| 715 | + unset($name); |
|
| 716 | 716 | } |
| 717 | - } |
|
| 717 | + } |
|
| 718 | 718 | |
| 719 | - /** |
|
| 720 | - * Edit post if the key and created time match |
|
| 721 | - */ |
|
| 722 | - private static function maybe_editing_post( &$post ) { |
|
| 719 | + /** |
|
| 720 | + * Edit post if the key and created time match |
|
| 721 | + */ |
|
| 722 | + private static function maybe_editing_post( &$post ) { |
|
| 723 | 723 | $match_by = array( |
| 724 | - 'post_type' => $post['post_type'], |
|
| 725 | - 'name' => $post['post_name'], |
|
| 726 | - 'post_status' => $post['post_status'], |
|
| 727 | - 'posts_per_page' => 1, |
|
| 724 | + 'post_type' => $post['post_type'], |
|
| 725 | + 'name' => $post['post_name'], |
|
| 726 | + 'post_status' => $post['post_status'], |
|
| 727 | + 'posts_per_page' => 1, |
|
| 728 | 728 | ); |
| 729 | 729 | |
| 730 | 730 | if ( in_array( $post['post_status'], array( 'trash', 'draft' ) ) ) { |
| 731 | - $match_by['include'] = $post['post_id']; |
|
| 732 | - unset($match_by['name']); |
|
| 731 | + $match_by['include'] = $post['post_id']; |
|
| 732 | + unset($match_by['name']); |
|
| 733 | 733 | } |
| 734 | 734 | |
| 735 | 735 | $editing = get_posts($match_by); |
| 736 | 736 | |
| 737 | - if ( ! empty($editing) && current($editing)->post_date == $post['post_date'] ) { |
|
| 738 | - // set the id of the post to edit |
|
| 739 | - $post['ID'] = current($editing)->ID; |
|
| 740 | - } |
|
| 741 | - } |
|
| 737 | + if ( ! empty($editing) && current($editing)->post_date == $post['post_date'] ) { |
|
| 738 | + // set the id of the post to edit |
|
| 739 | + $post['ID'] = current($editing)->ID; |
|
| 740 | + } |
|
| 741 | + } |
|
| 742 | 742 | |
| 743 | - private static function update_postmeta( &$post, $post_id ) { |
|
| 744 | - foreach ( $post['postmeta'] as $k => $v ) { |
|
| 745 | - if ( '_edit_last' == $k ) { |
|
| 746 | - $v = FrmAppHelper::get_user_id_param($v); |
|
| 747 | - } else if ( '_thumbnail_id' == $k && FrmAppHelper::pro_is_installed() ) { |
|
| 748 | - //change the attachment ID |
|
| 749 | - $v = FrmProXMLHelper::get_file_id($v); |
|
| 750 | - } |
|
| 743 | + private static function update_postmeta( &$post, $post_id ) { |
|
| 744 | + foreach ( $post['postmeta'] as $k => $v ) { |
|
| 745 | + if ( '_edit_last' == $k ) { |
|
| 746 | + $v = FrmAppHelper::get_user_id_param($v); |
|
| 747 | + } else if ( '_thumbnail_id' == $k && FrmAppHelper::pro_is_installed() ) { |
|
| 748 | + //change the attachment ID |
|
| 749 | + $v = FrmProXMLHelper::get_file_id($v); |
|
| 750 | + } |
|
| 751 | 751 | |
| 752 | - update_post_meta($post_id, $k, $v); |
|
| 752 | + update_post_meta($post_id, $k, $v); |
|
| 753 | 753 | |
| 754 | - unset($k, $v); |
|
| 755 | - } |
|
| 756 | - } |
|
| 754 | + unset($k, $v); |
|
| 755 | + } |
|
| 756 | + } |
|
| 757 | 757 | |
| 758 | 758 | /** |
| 759 | 759 | * If a template includes custom css, let's include it. |
@@ -786,72 +786,72 @@ discard block |
||
| 786 | 786 | } |
| 787 | 787 | } |
| 788 | 788 | |
| 789 | - /** |
|
| 790 | - * @param string $message |
|
| 791 | - */ |
|
| 789 | + /** |
|
| 790 | + * @param string $message |
|
| 791 | + */ |
|
| 792 | 792 | public static function parse_message( $result, &$message, &$errors ) { |
| 793 | - if ( is_wp_error($result) ) { |
|
| 794 | - $errors[] = $result->get_error_message(); |
|
| 795 | - } else if ( ! $result ) { |
|
| 796 | - return; |
|
| 797 | - } |
|
| 798 | - |
|
| 799 | - if ( ! is_array($result) ) { |
|
| 800 | - $message = is_string( $result ) ? $result : print_r( $result, 1 ); |
|
| 801 | - return; |
|
| 802 | - } |
|
| 803 | - |
|
| 804 | - $t_strings = array( |
|
| 805 | - 'imported' => __( 'Imported', 'formidable' ), |
|
| 806 | - 'updated' => __( 'Updated', 'formidable' ), |
|
| 807 | - ); |
|
| 808 | - |
|
| 809 | - $message = '<ul>'; |
|
| 810 | - foreach ( $result as $type => $results ) { |
|
| 793 | + if ( is_wp_error($result) ) { |
|
| 794 | + $errors[] = $result->get_error_message(); |
|
| 795 | + } else if ( ! $result ) { |
|
| 796 | + return; |
|
| 797 | + } |
|
| 798 | + |
|
| 799 | + if ( ! is_array($result) ) { |
|
| 800 | + $message = is_string( $result ) ? $result : print_r( $result, 1 ); |
|
| 801 | + return; |
|
| 802 | + } |
|
| 803 | + |
|
| 804 | + $t_strings = array( |
|
| 805 | + 'imported' => __( 'Imported', 'formidable' ), |
|
| 806 | + 'updated' => __( 'Updated', 'formidable' ), |
|
| 807 | + ); |
|
| 808 | + |
|
| 809 | + $message = '<ul>'; |
|
| 810 | + foreach ( $result as $type => $results ) { |
|
| 811 | 811 | if ( ! isset( $t_strings[ $type ] ) ) { |
| 812 | - // only print imported and updated |
|
| 813 | - continue; |
|
| 814 | - } |
|
| 812 | + // only print imported and updated |
|
| 813 | + continue; |
|
| 814 | + } |
|
| 815 | 815 | |
| 816 | - $s_message = array(); |
|
| 817 | - foreach ( $results as $k => $m ) { |
|
| 818 | - self::item_count_message($m, $k, $s_message); |
|
| 819 | - unset($k, $m); |
|
| 820 | - } |
|
| 816 | + $s_message = array(); |
|
| 817 | + foreach ( $results as $k => $m ) { |
|
| 818 | + self::item_count_message($m, $k, $s_message); |
|
| 819 | + unset($k, $m); |
|
| 820 | + } |
|
| 821 | 821 | |
| 822 | - if ( ! empty($s_message) ) { |
|
| 822 | + if ( ! empty($s_message) ) { |
|
| 823 | 823 | $message .= '<li><strong>' . $t_strings[ $type ] . ':</strong> '; |
| 824 | - $message .= implode(', ', $s_message); |
|
| 825 | - $message .= '</li>'; |
|
| 826 | - } |
|
| 827 | - } |
|
| 828 | - |
|
| 829 | - if ( $message == '<ul>' ) { |
|
| 830 | - $message = ''; |
|
| 831 | - $errors[] = __( 'Nothing was imported or updated', 'formidable' ); |
|
| 832 | - } else { |
|
| 833 | - $message .= '</ul>'; |
|
| 834 | - } |
|
| 835 | - } |
|
| 824 | + $message .= implode(', ', $s_message); |
|
| 825 | + $message .= '</li>'; |
|
| 826 | + } |
|
| 827 | + } |
|
| 828 | + |
|
| 829 | + if ( $message == '<ul>' ) { |
|
| 830 | + $message = ''; |
|
| 831 | + $errors[] = __( 'Nothing was imported or updated', 'formidable' ); |
|
| 832 | + } else { |
|
| 833 | + $message .= '</ul>'; |
|
| 834 | + } |
|
| 835 | + } |
|
| 836 | 836 | |
| 837 | 837 | public static function item_count_message( $m, $type, &$s_message ) { |
| 838 | - if ( ! $m ) { |
|
| 839 | - return; |
|
| 840 | - } |
|
| 841 | - |
|
| 842 | - $strings = array( |
|
| 843 | - 'forms' => sprintf( _n( '%1$s Form', '%1$s Forms', $m, 'formidable' ), $m ), |
|
| 844 | - 'fields' => sprintf( _n( '%1$s Field', '%1$s Fields', $m, 'formidable' ), $m ), |
|
| 845 | - 'items' => sprintf( _n( '%1$s Entry', '%1$s Entries', $m, 'formidable' ), $m ), |
|
| 846 | - 'views' => sprintf( _n( '%1$s View', '%1$s Views', $m, 'formidable' ), $m ), |
|
| 847 | - 'posts' => sprintf( _n( '%1$s Post', '%1$s Posts', $m, 'formidable' ), $m ), |
|
| 848 | - 'styles' => sprintf( _n( '%1$s Style', '%1$s Styles', $m, 'formidable' ), $m ), |
|
| 849 | - 'terms' => sprintf( _n( '%1$s Term', '%1$s Terms', $m, 'formidable' ), $m ), |
|
| 850 | - 'actions' => sprintf( _n( '%1$s Form Action', '%1$s Form Actions', $m, 'formidable' ), $m ), |
|
| 851 | - ); |
|
| 838 | + if ( ! $m ) { |
|
| 839 | + return; |
|
| 840 | + } |
|
| 841 | + |
|
| 842 | + $strings = array( |
|
| 843 | + 'forms' => sprintf( _n( '%1$s Form', '%1$s Forms', $m, 'formidable' ), $m ), |
|
| 844 | + 'fields' => sprintf( _n( '%1$s Field', '%1$s Fields', $m, 'formidable' ), $m ), |
|
| 845 | + 'items' => sprintf( _n( '%1$s Entry', '%1$s Entries', $m, 'formidable' ), $m ), |
|
| 846 | + 'views' => sprintf( _n( '%1$s View', '%1$s Views', $m, 'formidable' ), $m ), |
|
| 847 | + 'posts' => sprintf( _n( '%1$s Post', '%1$s Posts', $m, 'formidable' ), $m ), |
|
| 848 | + 'styles' => sprintf( _n( '%1$s Style', '%1$s Styles', $m, 'formidable' ), $m ), |
|
| 849 | + 'terms' => sprintf( _n( '%1$s Term', '%1$s Terms', $m, 'formidable' ), $m ), |
|
| 850 | + 'actions' => sprintf( _n( '%1$s Form Action', '%1$s Form Actions', $m, 'formidable' ), $m ), |
|
| 851 | + ); |
|
| 852 | 852 | |
| 853 | 853 | $s_message[] = isset( $strings[ $type ] ) ? $strings[ $type ] : ' ' . $m . ' ' . ucfirst( $type ); |
| 854 | - } |
|
| 854 | + } |
|
| 855 | 855 | |
| 856 | 856 | /** |
| 857 | 857 | * Prepare the form options for export |
@@ -882,16 +882,16 @@ discard block |
||
| 882 | 882 | } |
| 883 | 883 | |
| 884 | 884 | public static function cdata( $str ) { |
| 885 | - $str = maybe_unserialize($str); |
|
| 886 | - if ( is_array($str) ) { |
|
| 887 | - $str = json_encode($str); |
|
| 885 | + $str = maybe_unserialize($str); |
|
| 886 | + if ( is_array($str) ) { |
|
| 887 | + $str = json_encode($str); |
|
| 888 | 888 | } else if ( seems_utf8( $str ) == false ) { |
| 889 | 889 | $str = utf8_encode( $str ); |
| 890 | 890 | } |
| 891 | 891 | |
| 892 | - if ( is_numeric($str) ) { |
|
| 893 | - return $str; |
|
| 894 | - } |
|
| 892 | + if ( is_numeric($str) ) { |
|
| 893 | + return $str; |
|
| 894 | + } |
|
| 895 | 895 | |
| 896 | 896 | self::remove_invalid_characters_from_xml( $str ); |
| 897 | 897 | |
@@ -912,58 +912,58 @@ discard block |
||
| 912 | 912 | $str = str_replace( '\x1F', '', $str ); |
| 913 | 913 | } |
| 914 | 914 | |
| 915 | - public static function migrate_form_settings_to_actions( $form_options, $form_id, &$imported = array(), $switch = false ) { |
|
| 916 | - // Get post type |
|
| 917 | - $post_type = FrmFormActionsController::$action_post_type; |
|
| 918 | - |
|
| 919 | - // Set up imported index, if not set up yet |
|
| 920 | - if ( ! isset( $imported['imported']['actions'] ) ) { |
|
| 921 | - $imported['imported']['actions'] = 0; |
|
| 922 | - } |
|
| 923 | - |
|
| 924 | - // Migrate post settings to action |
|
| 925 | - self::migrate_post_settings_to_action( $form_options, $form_id, $post_type, $imported, $switch ); |
|
| 926 | - |
|
| 927 | - // Migrate email settings to action |
|
| 928 | - self::migrate_email_settings_to_action( $form_options, $form_id, $post_type, $imported, $switch ); |
|
| 929 | - } |
|
| 930 | - |
|
| 931 | - /** |
|
| 932 | - * Migrate post settings to form action |
|
| 933 | - * |
|
| 934 | - * @param string $post_type |
|
| 935 | - */ |
|
| 936 | - private static function migrate_post_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
|
| 937 | - if ( ! isset($form_options['create_post']) || ! $form_options['create_post'] ) { |
|
| 938 | - return; |
|
| 939 | - } |
|
| 940 | - |
|
| 941 | - $new_action = array( |
|
| 942 | - 'post_type' => $post_type, |
|
| 943 | - 'post_excerpt' => 'wppost', |
|
| 915 | + public static function migrate_form_settings_to_actions( $form_options, $form_id, &$imported = array(), $switch = false ) { |
|
| 916 | + // Get post type |
|
| 917 | + $post_type = FrmFormActionsController::$action_post_type; |
|
| 918 | + |
|
| 919 | + // Set up imported index, if not set up yet |
|
| 920 | + if ( ! isset( $imported['imported']['actions'] ) ) { |
|
| 921 | + $imported['imported']['actions'] = 0; |
|
| 922 | + } |
|
| 923 | + |
|
| 924 | + // Migrate post settings to action |
|
| 925 | + self::migrate_post_settings_to_action( $form_options, $form_id, $post_type, $imported, $switch ); |
|
| 926 | + |
|
| 927 | + // Migrate email settings to action |
|
| 928 | + self::migrate_email_settings_to_action( $form_options, $form_id, $post_type, $imported, $switch ); |
|
| 929 | + } |
|
| 930 | + |
|
| 931 | + /** |
|
| 932 | + * Migrate post settings to form action |
|
| 933 | + * |
|
| 934 | + * @param string $post_type |
|
| 935 | + */ |
|
| 936 | + private static function migrate_post_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
|
| 937 | + if ( ! isset($form_options['create_post']) || ! $form_options['create_post'] ) { |
|
| 938 | + return; |
|
| 939 | + } |
|
| 940 | + |
|
| 941 | + $new_action = array( |
|
| 942 | + 'post_type' => $post_type, |
|
| 943 | + 'post_excerpt' => 'wppost', |
|
| 944 | 944 | 'post_title' => __( 'Create Posts', 'formidable' ), |
| 945 | - 'menu_order' => $form_id, |
|
| 946 | - 'post_status' => 'publish', |
|
| 947 | - 'post_content' => array(), |
|
| 945 | + 'menu_order' => $form_id, |
|
| 946 | + 'post_status' => 'publish', |
|
| 947 | + 'post_content' => array(), |
|
| 948 | 948 | 'post_name' => $form_id . '_wppost_1', |
| 949 | - ); |
|
| 949 | + ); |
|
| 950 | 950 | |
| 951 | - $post_settings = array( |
|
| 952 | - 'post_type', 'post_category', 'post_content', |
|
| 953 | - 'post_excerpt', 'post_title', 'post_name', 'post_date', |
|
| 951 | + $post_settings = array( |
|
| 952 | + 'post_type', 'post_category', 'post_content', |
|
| 953 | + 'post_excerpt', 'post_title', 'post_name', 'post_date', |
|
| 954 | 954 | 'post_status', 'post_custom_fields', 'post_password', |
| 955 | - ); |
|
| 955 | + ); |
|
| 956 | 956 | |
| 957 | - foreach ( $post_settings as $post_setting ) { |
|
| 957 | + foreach ( $post_settings as $post_setting ) { |
|
| 958 | 958 | if ( isset( $form_options[ $post_setting ] ) ) { |
| 959 | 959 | $new_action['post_content'][ $post_setting ] = $form_options[ $post_setting ]; |
| 960 | - } |
|
| 961 | - unset($post_setting); |
|
| 962 | - } |
|
| 960 | + } |
|
| 961 | + unset($post_setting); |
|
| 962 | + } |
|
| 963 | 963 | |
| 964 | 964 | $new_action['event'] = array( 'create', 'update' ); |
| 965 | 965 | |
| 966 | - if ( $switch ) { |
|
| 966 | + if ( $switch ) { |
|
| 967 | 967 | // Fields with string or int saved |
| 968 | 968 | $basic_fields = array( 'post_title', 'post_content', 'post_excerpt', 'post_password', 'post_date', 'post_status' ); |
| 969 | 969 | |
@@ -971,22 +971,22 @@ discard block |
||
| 971 | 971 | $array_fields = array( 'post_category', 'post_custom_fields' ); |
| 972 | 972 | |
| 973 | 973 | $new_action['post_content'] = self::switch_action_field_ids( $new_action['post_content'], $basic_fields, $array_fields ); |
| 974 | - } |
|
| 975 | - $new_action['post_content'] = json_encode($new_action['post_content']); |
|
| 974 | + } |
|
| 975 | + $new_action['post_content'] = json_encode($new_action['post_content']); |
|
| 976 | 976 | |
| 977 | - $exists = get_posts( array( |
|
| 978 | - 'name' => $new_action['post_name'], |
|
| 979 | - 'post_type' => $new_action['post_type'], |
|
| 980 | - 'post_status' => $new_action['post_status'], |
|
| 981 | - 'numberposts' => 1, |
|
| 982 | - ) ); |
|
| 977 | + $exists = get_posts( array( |
|
| 978 | + 'name' => $new_action['post_name'], |
|
| 979 | + 'post_type' => $new_action['post_type'], |
|
| 980 | + 'post_status' => $new_action['post_status'], |
|
| 981 | + 'numberposts' => 1, |
|
| 982 | + ) ); |
|
| 983 | 983 | |
| 984 | - if ( ! $exists ) { |
|
| 984 | + if ( ! $exists ) { |
|
| 985 | 985 | // this isn't an email, but we need to use a class that will always be included |
| 986 | 986 | FrmAppHelper::save_json_post( $new_action ); |
| 987 | - $imported['imported']['actions']++; |
|
| 988 | - } |
|
| 989 | - } |
|
| 987 | + $imported['imported']['actions']++; |
|
| 988 | + } |
|
| 989 | + } |
|
| 990 | 990 | |
| 991 | 991 | /** |
| 992 | 992 | * Switch old field IDs for new field IDs in emails and post |
@@ -999,211 +999,211 @@ discard block |
||
| 999 | 999 | * @return string $post_content - new field IDs |
| 1000 | 1000 | */ |
| 1001 | 1001 | private static function switch_action_field_ids( $post_content, $basic_fields, $array_fields = array() ) { |
| 1002 | - global $frm_duplicate_ids; |
|
| 1002 | + global $frm_duplicate_ids; |
|
| 1003 | 1003 | |
| 1004 | - // If there aren't IDs that were switched, end now |
|
| 1005 | - if ( ! $frm_duplicate_ids ) { |
|
| 1006 | - return; |
|
| 1007 | - } |
|
| 1004 | + // If there aren't IDs that were switched, end now |
|
| 1005 | + if ( ! $frm_duplicate_ids ) { |
|
| 1006 | + return; |
|
| 1007 | + } |
|
| 1008 | 1008 | |
| 1009 | - // Get old IDs |
|
| 1010 | - $old = array_keys( $frm_duplicate_ids ); |
|
| 1009 | + // Get old IDs |
|
| 1010 | + $old = array_keys( $frm_duplicate_ids ); |
|
| 1011 | 1011 | |
| 1012 | - // Get new IDs |
|
| 1013 | - $new = array_values( $frm_duplicate_ids ); |
|
| 1012 | + // Get new IDs |
|
| 1013 | + $new = array_values( $frm_duplicate_ids ); |
|
| 1014 | 1014 | |
| 1015 | - // Do a str_replace with each item to set the new IDs |
|
| 1016 | - foreach ( $post_content as $key => $setting ) { |
|
| 1017 | - if ( ! is_array( $setting ) && in_array( $key, $basic_fields ) ) { |
|
| 1018 | - // Replace old IDs with new IDs |
|
| 1015 | + // Do a str_replace with each item to set the new IDs |
|
| 1016 | + foreach ( $post_content as $key => $setting ) { |
|
| 1017 | + if ( ! is_array( $setting ) && in_array( $key, $basic_fields ) ) { |
|
| 1018 | + // Replace old IDs with new IDs |
|
| 1019 | 1019 | $post_content[ $key ] = str_replace( $old, $new, $setting ); |
| 1020 | - } else if ( is_array( $setting ) && in_array( $key, $array_fields ) ) { |
|
| 1021 | - foreach ( $setting as $k => $val ) { |
|
| 1022 | - // Replace old IDs with new IDs |
|
| 1020 | + } else if ( is_array( $setting ) && in_array( $key, $array_fields ) ) { |
|
| 1021 | + foreach ( $setting as $k => $val ) { |
|
| 1022 | + // Replace old IDs with new IDs |
|
| 1023 | 1023 | $post_content[ $key ][ $k ] = str_replace( $old, $new, $val ); |
| 1024 | - } |
|
| 1025 | - } |
|
| 1026 | - unset( $key, $setting ); |
|
| 1027 | - } |
|
| 1028 | - return $post_content; |
|
| 1029 | - } |
|
| 1030 | - |
|
| 1031 | - private static function migrate_email_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
|
| 1032 | - // No old notifications or autoresponders to carry over |
|
| 1024 | + } |
|
| 1025 | + } |
|
| 1026 | + unset( $key, $setting ); |
|
| 1027 | + } |
|
| 1028 | + return $post_content; |
|
| 1029 | + } |
|
| 1030 | + |
|
| 1031 | + private static function migrate_email_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
|
| 1032 | + // No old notifications or autoresponders to carry over |
|
| 1033 | 1033 | if ( ! isset( $form_options['auto_responder'] ) && ! isset( $form_options['notification'] ) && ! isset( $form_options['email_to'] ) ) { |
| 1034 | - return; |
|
| 1035 | - } |
|
| 1034 | + return; |
|
| 1035 | + } |
|
| 1036 | 1036 | |
| 1037 | - // Initialize notifications array |
|
| 1038 | - $notifications = array(); |
|
| 1037 | + // Initialize notifications array |
|
| 1038 | + $notifications = array(); |
|
| 1039 | 1039 | |
| 1040 | - // Migrate regular notifications |
|
| 1041 | - self::migrate_notifications_to_action( $form_options, $form_id, $notifications ); |
|
| 1040 | + // Migrate regular notifications |
|
| 1041 | + self::migrate_notifications_to_action( $form_options, $form_id, $notifications ); |
|
| 1042 | 1042 | |
| 1043 | - // Migrate autoresponders |
|
| 1044 | - self::migrate_autoresponder_to_action( $form_options, $form_id, $notifications ); |
|
| 1043 | + // Migrate autoresponders |
|
| 1044 | + self::migrate_autoresponder_to_action( $form_options, $form_id, $notifications ); |
|
| 1045 | 1045 | |
| 1046 | - if ( empty( $notifications ) ) { |
|
| 1047 | - return; |
|
| 1048 | - } |
|
| 1046 | + if ( empty( $notifications ) ) { |
|
| 1047 | + return; |
|
| 1048 | + } |
|
| 1049 | 1049 | |
| 1050 | - foreach ( $notifications as $new_notification ) { |
|
| 1051 | - $new_notification['post_type'] = $post_type; |
|
| 1052 | - $new_notification['post_excerpt'] = 'email'; |
|
| 1050 | + foreach ( $notifications as $new_notification ) { |
|
| 1051 | + $new_notification['post_type'] = $post_type; |
|
| 1052 | + $new_notification['post_excerpt'] = 'email'; |
|
| 1053 | 1053 | $new_notification['post_title'] = __( 'Email Notification', 'formidable' ); |
| 1054 | - $new_notification['menu_order'] = $form_id; |
|
| 1055 | - $new_notification['post_status'] = 'publish'; |
|
| 1054 | + $new_notification['menu_order'] = $form_id; |
|
| 1055 | + $new_notification['post_status'] = 'publish'; |
|
| 1056 | 1056 | |
| 1057 | - // Switch field IDs and keys, if needed |
|
| 1058 | - if ( $switch ) { |
|
| 1057 | + // Switch field IDs and keys, if needed |
|
| 1058 | + if ( $switch ) { |
|
| 1059 | 1059 | |
| 1060 | 1060 | // Switch field IDs in email conditional logic |
| 1061 | 1061 | self::switch_email_contition_field_ids( $new_notification['post_content'] ); |
| 1062 | 1062 | |
| 1063 | 1063 | // Switch all other field IDs in email |
| 1064 | - $new_notification['post_content'] = FrmFieldsHelper::switch_field_ids( $new_notification['post_content'] ); |
|
| 1065 | - } |
|
| 1066 | - $new_notification['post_content'] = FrmAppHelper::prepare_and_encode( $new_notification['post_content'] ); |
|
| 1067 | - |
|
| 1068 | - $exists = get_posts( array( |
|
| 1069 | - 'name' => $new_notification['post_name'], |
|
| 1070 | - 'post_type' => $new_notification['post_type'], |
|
| 1071 | - 'post_status' => $new_notification['post_status'], |
|
| 1072 | - 'numberposts' => 1, |
|
| 1073 | - ) ); |
|
| 1074 | - |
|
| 1075 | - if ( empty($exists) ) { |
|
| 1064 | + $new_notification['post_content'] = FrmFieldsHelper::switch_field_ids( $new_notification['post_content'] ); |
|
| 1065 | + } |
|
| 1066 | + $new_notification['post_content'] = FrmAppHelper::prepare_and_encode( $new_notification['post_content'] ); |
|
| 1067 | + |
|
| 1068 | + $exists = get_posts( array( |
|
| 1069 | + 'name' => $new_notification['post_name'], |
|
| 1070 | + 'post_type' => $new_notification['post_type'], |
|
| 1071 | + 'post_status' => $new_notification['post_status'], |
|
| 1072 | + 'numberposts' => 1, |
|
| 1073 | + ) ); |
|
| 1074 | + |
|
| 1075 | + if ( empty($exists) ) { |
|
| 1076 | 1076 | FrmAppHelper::save_json_post( $new_notification ); |
| 1077 | - $imported['imported']['actions']++; |
|
| 1078 | - } |
|
| 1079 | - unset($new_notification); |
|
| 1080 | - } |
|
| 1081 | - } |
|
| 1082 | - |
|
| 1083 | - private static function migrate_notifications_to_action( $form_options, $form_id, &$notifications ) { |
|
| 1084 | - if ( ! isset( $form_options['notification'] ) && isset( $form_options['email_to'] ) && ! empty( $form_options['email_to'] ) ) { |
|
| 1085 | - // add old settings into notification array |
|
| 1077 | + $imported['imported']['actions']++; |
|
| 1078 | + } |
|
| 1079 | + unset($new_notification); |
|
| 1080 | + } |
|
| 1081 | + } |
|
| 1082 | + |
|
| 1083 | + private static function migrate_notifications_to_action( $form_options, $form_id, &$notifications ) { |
|
| 1084 | + if ( ! isset( $form_options['notification'] ) && isset( $form_options['email_to'] ) && ! empty( $form_options['email_to'] ) ) { |
|
| 1085 | + // add old settings into notification array |
|
| 1086 | 1086 | $form_options['notification'] = array( 0 => $form_options ); |
| 1087 | - } else if ( isset( $form_options['notification']['email_to'] ) ) { |
|
| 1088 | - // make sure it's in the correct format |
|
| 1087 | + } else if ( isset( $form_options['notification']['email_to'] ) ) { |
|
| 1088 | + // make sure it's in the correct format |
|
| 1089 | 1089 | $form_options['notification'] = array( 0 => $form_options['notification'] ); |
| 1090 | - } |
|
| 1090 | + } |
|
| 1091 | 1091 | |
| 1092 | - if ( isset( $form_options['notification'] ) && is_array($form_options['notification']) ) { |
|
| 1093 | - foreach ( $form_options['notification'] as $email_key => $notification ) { |
|
| 1092 | + if ( isset( $form_options['notification'] ) && is_array($form_options['notification']) ) { |
|
| 1093 | + foreach ( $form_options['notification'] as $email_key => $notification ) { |
|
| 1094 | 1094 | |
| 1095 | - $atts = array( 'email_to' => '', 'reply_to' => '', 'reply_to_name' => '', 'event' => '', 'form_id' => $form_id, 'email_key' => $email_key ); |
|
| 1095 | + $atts = array( 'email_to' => '', 'reply_to' => '', 'reply_to_name' => '', 'event' => '', 'form_id' => $form_id, 'email_key' => $email_key ); |
|
| 1096 | 1096 | |
| 1097 | - // Format the email data |
|
| 1098 | - self::format_email_data( $atts, $notification ); |
|
| 1097 | + // Format the email data |
|
| 1098 | + self::format_email_data( $atts, $notification ); |
|
| 1099 | 1099 | |
| 1100 | 1100 | if ( isset( $notification['twilio'] ) && $notification['twilio'] ) { |
| 1101 | 1101 | do_action( 'frm_create_twilio_action', $atts, $notification ); |
| 1102 | 1102 | } |
| 1103 | 1103 | |
| 1104 | - // Setup the new notification |
|
| 1105 | - $new_notification = array(); |
|
| 1106 | - self::setup_new_notification( $new_notification, $notification, $atts ); |
|
| 1104 | + // Setup the new notification |
|
| 1105 | + $new_notification = array(); |
|
| 1106 | + self::setup_new_notification( $new_notification, $notification, $atts ); |
|
| 1107 | 1107 | |
| 1108 | - $notifications[] = $new_notification; |
|
| 1109 | - } |
|
| 1110 | - } |
|
| 1111 | - } |
|
| 1108 | + $notifications[] = $new_notification; |
|
| 1109 | + } |
|
| 1110 | + } |
|
| 1111 | + } |
|
| 1112 | 1112 | |
| 1113 | - private static function format_email_data( &$atts, $notification ) { |
|
| 1114 | - // Format email_to |
|
| 1115 | - self::format_email_to_data( $atts, $notification ); |
|
| 1113 | + private static function format_email_data( &$atts, $notification ) { |
|
| 1114 | + // Format email_to |
|
| 1115 | + self::format_email_to_data( $atts, $notification ); |
|
| 1116 | 1116 | |
| 1117 | - // Format the reply to email and name |
|
| 1118 | - $reply_fields = array( 'reply_to' => '', 'reply_to_name' => '' ); |
|
| 1119 | - foreach ( $reply_fields as $f => $val ) { |
|
| 1117 | + // Format the reply to email and name |
|
| 1118 | + $reply_fields = array( 'reply_to' => '', 'reply_to_name' => '' ); |
|
| 1119 | + foreach ( $reply_fields as $f => $val ) { |
|
| 1120 | 1120 | if ( isset( $notification[ $f ] ) ) { |
| 1121 | 1121 | $atts[ $f ] = $notification[ $f ]; |
| 1122 | 1122 | if ( 'custom' == $notification[ $f ] ) { |
| 1123 | 1123 | $atts[ $f ] = $notification[ 'cust_' . $f ]; |
| 1124 | 1124 | } else if ( is_numeric( $atts[ $f ] ) && ! empty( $atts[ $f ] ) ) { |
| 1125 | 1125 | $atts[ $f ] = '[' . $atts[ $f ] . ']'; |
| 1126 | - } |
|
| 1127 | - } |
|
| 1128 | - unset( $f, $val ); |
|
| 1129 | - } |
|
| 1126 | + } |
|
| 1127 | + } |
|
| 1128 | + unset( $f, $val ); |
|
| 1129 | + } |
|
| 1130 | 1130 | |
| 1131 | - // Format event |
|
| 1131 | + // Format event |
|
| 1132 | 1132 | $atts['event'] = array( 'create' ); |
| 1133 | - if ( isset( $notification['update_email'] ) && 1 == $notification['update_email'] ) { |
|
| 1134 | - $atts['event'][] = 'update'; |
|
| 1135 | - } else if ( isset($notification['update_email']) && 2 == $notification['update_email'] ) { |
|
| 1133 | + if ( isset( $notification['update_email'] ) && 1 == $notification['update_email'] ) { |
|
| 1134 | + $atts['event'][] = 'update'; |
|
| 1135 | + } else if ( isset($notification['update_email']) && 2 == $notification['update_email'] ) { |
|
| 1136 | 1136 | $atts['event'] = array( 'update' ); |
| 1137 | - } |
|
| 1138 | - } |
|
| 1137 | + } |
|
| 1138 | + } |
|
| 1139 | 1139 | |
| 1140 | - private static function format_email_to_data( &$atts, $notification ) { |
|
| 1141 | - if ( isset( $notification['email_to'] ) ) { |
|
| 1140 | + private static function format_email_to_data( &$atts, $notification ) { |
|
| 1141 | + if ( isset( $notification['email_to'] ) ) { |
|
| 1142 | 1142 | $atts['email_to'] = preg_split( '/ (,|;) /', $notification['email_to'] ); |
| 1143 | - } else { |
|
| 1144 | - $atts['email_to'] = array(); |
|
| 1145 | - } |
|
| 1143 | + } else { |
|
| 1144 | + $atts['email_to'] = array(); |
|
| 1145 | + } |
|
| 1146 | 1146 | |
| 1147 | - if ( isset( $notification['also_email_to'] ) ) { |
|
| 1148 | - $email_fields = (array) $notification['also_email_to']; |
|
| 1149 | - $atts['email_to'] = array_merge( $email_fields, $atts['email_to'] ); |
|
| 1150 | - unset( $email_fields ); |
|
| 1151 | - } |
|
| 1147 | + if ( isset( $notification['also_email_to'] ) ) { |
|
| 1148 | + $email_fields = (array) $notification['also_email_to']; |
|
| 1149 | + $atts['email_to'] = array_merge( $email_fields, $atts['email_to'] ); |
|
| 1150 | + unset( $email_fields ); |
|
| 1151 | + } |
|
| 1152 | 1152 | |
| 1153 | - foreach ( $atts['email_to'] as $key => $email_field ) { |
|
| 1153 | + foreach ( $atts['email_to'] as $key => $email_field ) { |
|
| 1154 | 1154 | |
| 1155 | - if ( is_numeric( $email_field ) ) { |
|
| 1155 | + if ( is_numeric( $email_field ) ) { |
|
| 1156 | 1156 | $atts['email_to'][ $key ] = '[' . $email_field . ']'; |
| 1157 | - } |
|
| 1157 | + } |
|
| 1158 | 1158 | |
| 1159 | - if ( strpos( $email_field, '|') ) { |
|
| 1160 | - $email_opt = explode( '|', $email_field ); |
|
| 1161 | - if ( isset( $email_opt[0] ) ) { |
|
| 1159 | + if ( strpos( $email_field, '|') ) { |
|
| 1160 | + $email_opt = explode( '|', $email_field ); |
|
| 1161 | + if ( isset( $email_opt[0] ) ) { |
|
| 1162 | 1162 | $atts['email_to'][ $key ] = '[' . $email_opt[0] . ' show=' . $email_opt[1] . ']'; |
| 1163 | - } |
|
| 1164 | - unset( $email_opt ); |
|
| 1165 | - } |
|
| 1166 | - } |
|
| 1167 | - $atts['email_to'] = implode(', ', $atts['email_to']); |
|
| 1168 | - } |
|
| 1169 | - |
|
| 1170 | - private static function setup_new_notification( &$new_notification, $notification, $atts ) { |
|
| 1171 | - // Set up new notification |
|
| 1172 | - $new_notification = array( |
|
| 1173 | - 'post_content' => array( |
|
| 1174 | - 'email_to' => $atts['email_to'], |
|
| 1175 | - 'event' => $atts['event'], |
|
| 1176 | - ), |
|
| 1163 | + } |
|
| 1164 | + unset( $email_opt ); |
|
| 1165 | + } |
|
| 1166 | + } |
|
| 1167 | + $atts['email_to'] = implode(', ', $atts['email_to']); |
|
| 1168 | + } |
|
| 1169 | + |
|
| 1170 | + private static function setup_new_notification( &$new_notification, $notification, $atts ) { |
|
| 1171 | + // Set up new notification |
|
| 1172 | + $new_notification = array( |
|
| 1173 | + 'post_content' => array( |
|
| 1174 | + 'email_to' => $atts['email_to'], |
|
| 1175 | + 'event' => $atts['event'], |
|
| 1176 | + ), |
|
| 1177 | 1177 | 'post_name' => $atts['form_id'] . '_email_' . $atts['email_key'], |
| 1178 | - ); |
|
| 1178 | + ); |
|
| 1179 | 1179 | |
| 1180 | - // Add more fields to the new notification |
|
| 1181 | - $add_fields = array( 'email_message', 'email_subject', 'plain_text', 'inc_user_info', 'conditions' ); |
|
| 1182 | - foreach ( $add_fields as $add_field ) { |
|
| 1180 | + // Add more fields to the new notification |
|
| 1181 | + $add_fields = array( 'email_message', 'email_subject', 'plain_text', 'inc_user_info', 'conditions' ); |
|
| 1182 | + foreach ( $add_fields as $add_field ) { |
|
| 1183 | 1183 | if ( isset( $notification[ $add_field ] ) ) { |
| 1184 | 1184 | $new_notification['post_content'][ $add_field ] = $notification[ $add_field ]; |
| 1185 | - } else if ( in_array( $add_field, array( 'plain_text', 'inc_user_info' ) ) ) { |
|
| 1185 | + } else if ( in_array( $add_field, array( 'plain_text', 'inc_user_info' ) ) ) { |
|
| 1186 | 1186 | $new_notification['post_content'][ $add_field ] = 0; |
| 1187 | - } else { |
|
| 1187 | + } else { |
|
| 1188 | 1188 | $new_notification['post_content'][ $add_field ] = ''; |
| 1189 | - } |
|
| 1190 | - unset( $add_field ); |
|
| 1191 | - } |
|
| 1189 | + } |
|
| 1190 | + unset( $add_field ); |
|
| 1191 | + } |
|
| 1192 | 1192 | |
| 1193 | 1193 | // Set reply to |
| 1194 | 1194 | $new_notification['post_content']['reply_to'] = $atts['reply_to']; |
| 1195 | 1195 | |
| 1196 | - // Set from |
|
| 1196 | + // Set from |
|
| 1197 | 1197 | if ( ! empty( $atts['reply_to'] ) || ! empty( $atts['reply_to_name'] ) ) { |
| 1198 | 1198 | $new_notification['post_content']['from'] = ( empty( $atts['reply_to_name'] ) ? '[sitename]' : $atts['reply_to_name'] ) . ' <' . ( empty( $atts['reply_to'] ) ? '[admin_email]' : $atts['reply_to'] ) . '>'; |
| 1199 | - } |
|
| 1200 | - } |
|
| 1199 | + } |
|
| 1200 | + } |
|
| 1201 | 1201 | |
| 1202 | 1202 | /** |
| 1203 | - * Switch field IDs in pre-2.0 email conditional logic |
|
| 1204 | - * |
|
| 1205 | - * @param $post_content array, pass by reference |
|
| 1206 | - */ |
|
| 1203 | + * Switch field IDs in pre-2.0 email conditional logic |
|
| 1204 | + * |
|
| 1205 | + * @param $post_content array, pass by reference |
|
| 1206 | + */ |
|
| 1207 | 1207 | private static function switch_email_contition_field_ids( &$post_content ) { |
| 1208 | 1208 | // Switch field IDs in conditional logic |
| 1209 | 1209 | if ( isset( $post_content['conditions'] ) && is_array( $post_content['conditions'] ) ) { |
@@ -1216,36 +1216,36 @@ discard block |
||
| 1216 | 1216 | } |
| 1217 | 1217 | } |
| 1218 | 1218 | |
| 1219 | - private static function migrate_autoresponder_to_action( $form_options, $form_id, &$notifications ) { |
|
| 1220 | - if ( isset($form_options['auto_responder']) && $form_options['auto_responder'] && isset($form_options['ar_email_message']) && $form_options['ar_email_message'] ) { |
|
| 1221 | - // migrate autoresponder |
|
| 1222 | - |
|
| 1223 | - $email_field = isset($form_options['ar_email_to']) ? $form_options['ar_email_to'] : 0; |
|
| 1224 | - if ( strpos($email_field, '|') ) { |
|
| 1225 | - // data from entries field |
|
| 1226 | - $email_field = explode('|', $email_field); |
|
| 1227 | - if ( isset($email_field[1]) ) { |
|
| 1228 | - $email_field = $email_field[1]; |
|
| 1229 | - } |
|
| 1230 | - } |
|
| 1231 | - if ( is_numeric($email_field) && ! empty($email_field) ) { |
|
| 1219 | + private static function migrate_autoresponder_to_action( $form_options, $form_id, &$notifications ) { |
|
| 1220 | + if ( isset($form_options['auto_responder']) && $form_options['auto_responder'] && isset($form_options['ar_email_message']) && $form_options['ar_email_message'] ) { |
|
| 1221 | + // migrate autoresponder |
|
| 1222 | + |
|
| 1223 | + $email_field = isset($form_options['ar_email_to']) ? $form_options['ar_email_to'] : 0; |
|
| 1224 | + if ( strpos($email_field, '|') ) { |
|
| 1225 | + // data from entries field |
|
| 1226 | + $email_field = explode('|', $email_field); |
|
| 1227 | + if ( isset($email_field[1]) ) { |
|
| 1228 | + $email_field = $email_field[1]; |
|
| 1229 | + } |
|
| 1230 | + } |
|
| 1231 | + if ( is_numeric($email_field) && ! empty($email_field) ) { |
|
| 1232 | 1232 | $email_field = '[' . $email_field . ']'; |
| 1233 | - } |
|
| 1234 | - |
|
| 1235 | - $notification = $form_options; |
|
| 1236 | - $new_notification2 = array( |
|
| 1237 | - 'post_content' => array( |
|
| 1238 | - 'email_message' => $notification['ar_email_message'], |
|
| 1239 | - 'email_subject' => isset($notification['ar_email_subject']) ? $notification['ar_email_subject'] : '', |
|
| 1240 | - 'email_to' => $email_field, |
|
| 1241 | - 'plain_text' => isset($notification['ar_plain_text']) ? $notification['ar_plain_text'] : 0, |
|
| 1242 | - 'inc_user_info' => 0, |
|
| 1243 | - ), |
|
| 1233 | + } |
|
| 1234 | + |
|
| 1235 | + $notification = $form_options; |
|
| 1236 | + $new_notification2 = array( |
|
| 1237 | + 'post_content' => array( |
|
| 1238 | + 'email_message' => $notification['ar_email_message'], |
|
| 1239 | + 'email_subject' => isset($notification['ar_email_subject']) ? $notification['ar_email_subject'] : '', |
|
| 1240 | + 'email_to' => $email_field, |
|
| 1241 | + 'plain_text' => isset($notification['ar_plain_text']) ? $notification['ar_plain_text'] : 0, |
|
| 1242 | + 'inc_user_info' => 0, |
|
| 1243 | + ), |
|
| 1244 | 1244 | 'post_name' => $form_id . '_email_' . count( $notifications ), |
| 1245 | - ); |
|
| 1245 | + ); |
|
| 1246 | 1246 | |
| 1247 | - $reply_to = isset($notification['ar_reply_to']) ? $notification['ar_reply_to'] : ''; |
|
| 1248 | - $reply_to_name = isset($notification['ar_reply_to_name']) ? $notification['ar_reply_to_name'] : ''; |
|
| 1247 | + $reply_to = isset($notification['ar_reply_to']) ? $notification['ar_reply_to'] : ''; |
|
| 1248 | + $reply_to_name = isset($notification['ar_reply_to_name']) ? $notification['ar_reply_to_name'] : ''; |
|
| 1249 | 1249 | |
| 1250 | 1250 | if ( ! empty( $reply_to ) ) { |
| 1251 | 1251 | $new_notification2['post_content']['reply_to'] = $reply_to; |
@@ -1255,9 +1255,9 @@ discard block |
||
| 1255 | 1255 | $new_notification2['post_content']['from'] = ( empty( $reply_to_name ) ? '[sitename]' : $reply_to_name ) . ' <' . ( empty( $reply_to ) ? '[admin_email]' : $reply_to ) . '>'; |
| 1256 | 1256 | } |
| 1257 | 1257 | |
| 1258 | - $notifications[] = $new_notification2; |
|
| 1259 | - unset( $new_notification2 ); |
|
| 1260 | - } |
|
| 1261 | - } |
|
| 1258 | + $notifications[] = $new_notification2; |
|
| 1259 | + unset( $new_notification2 ); |
|
| 1260 | + } |
|
| 1261 | + } |
|
| 1262 | 1262 | } |
| 1263 | 1263 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined('ABSPATH') ) { |
|
| 2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
| 3 | 3 | die( 'You are not allowed to call this page directly.' ); |
| 4 | 4 | } |
| 5 | 5 | |
@@ -36,10 +36,10 @@ discard block |
||
| 36 | 36 | 'terms' => array(), |
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | - unset($defaults); |
|
| 39 | + unset( $defaults ); |
|
| 40 | 40 | |
| 41 | 41 | if ( ! defined( 'WP_IMPORTING' ) ) { |
| 42 | - define('WP_IMPORTING', true); |
|
| 42 | + define( 'WP_IMPORTING', true ); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | if ( ! class_exists( 'DOMDocument' ) ) { |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this XML file', 'formidable' ), libxml_get_errors() ); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - if ( ! function_exists('simplexml_import_dom') ) { |
|
| 55 | + if ( ! function_exists( 'simplexml_import_dom' ) ) { |
|
| 56 | 56 | return new WP_Error( 'SimpleXML_parse_error', __( 'Your server is missing the simplexml_import_dom function', 'formidable' ), libxml_get_errors() ); |
| 57 | 57 | } |
| 58 | 58 | |
@@ -67,14 +67,14 @@ discard block |
||
| 67 | 67 | // add terms, forms (form and field ids), posts (post ids), and entries to db, in that order |
| 68 | 68 | foreach ( array( 'term', 'form', 'view' ) as $item_type ) { |
| 69 | 69 | // grab cats, tags, and terms, or forms or posts |
| 70 | - if ( isset($xml->{$item_type} ) ) { |
|
| 70 | + if ( isset( $xml->{$item_type} ) ) { |
|
| 71 | 71 | $function_name = 'import_xml_' . $item_type . 's'; |
| 72 | 72 | $imported = self::$function_name( $xml->{$item_type}, $imported ); |
| 73 | 73 | unset( $function_name, $xml->{$item_type} ); |
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - $return = apply_filters('frm_importing_xml', $imported, $xml ); |
|
| 77 | + $return = apply_filters( 'frm_importing_xml', $imported, $xml ); |
|
| 78 | 78 | |
| 79 | 79 | return $return; |
| 80 | 80 | } |
@@ -91,11 +91,11 @@ discard block |
||
| 91 | 91 | 'slug' => (string) $t->term_slug, |
| 92 | 92 | 'description' => (string) $t->term_description, |
| 93 | 93 | 'parent' => empty( $parent ) ? 0 : $parent, |
| 94 | - )); |
|
| 94 | + ) ); |
|
| 95 | 95 | |
| 96 | 96 | if ( $term && is_array( $term ) ) { |
| 97 | - $imported['imported']['terms']++; |
|
| 98 | - $imported['terms'][ (int) $t->term_id ] = $term['term_id']; |
|
| 97 | + $imported['imported']['terms'] ++; |
|
| 98 | + $imported['terms'][(int) $t->term_id] = $term['term_id']; |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | unset( $term, $t ); |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | } else { |
| 145 | 145 | $form_id = FrmForm::create( $form ); |
| 146 | 146 | if ( $form_id ) { |
| 147 | - $imported['imported']['forms']++; |
|
| 147 | + $imported['imported']['forms'] ++; |
|
| 148 | 148 | // Keep track of whether this specific form was updated or not |
| 149 | - $imported['form_status'][ $form_id ] = 'imported'; |
|
| 149 | + $imported['form_status'][$form_id] = 'imported'; |
|
| 150 | 150 | self::track_imported_child_forms( (int) $form_id, $form['parent_form_id'], $child_forms ); |
| 151 | 151 | } |
| 152 | 152 | } |
@@ -158,14 +158,14 @@ discard block |
||
| 158 | 158 | // Update field ids/keys to new ones |
| 159 | 159 | do_action( 'frm_after_duplicate_form', $form_id, $form, array( 'old_id' => $old_id ) ); |
| 160 | 160 | |
| 161 | - $imported['forms'][ (int) $item->id ] = $form_id; |
|
| 161 | + $imported['forms'][(int) $item->id] = $form_id; |
|
| 162 | 162 | |
| 163 | 163 | // Send pre 2.0 form options through function that creates actions |
| 164 | 164 | self::migrate_form_settings_to_actions( $form['options'], $form_id, $imported, true ); |
| 165 | 165 | |
| 166 | 166 | do_action( 'frm_after_import_form', $form_id, $form ); |
| 167 | 167 | |
| 168 | - unset($form, $item); |
|
| 168 | + unset( $form, $item ); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | self::maybe_update_child_form_parent_id( $imported['forms'], $child_forms ); |
@@ -207,18 +207,18 @@ discard block |
||
| 207 | 207 | private static function update_form( $this_form, $form, &$imported ) { |
| 208 | 208 | $form_id = $this_form->id; |
| 209 | 209 | FrmForm::update( $form_id, $form ); |
| 210 | - $imported['updated']['forms']++; |
|
| 210 | + $imported['updated']['forms'] ++; |
|
| 211 | 211 | // Keep track of whether this specific form was updated or not |
| 212 | - $imported['form_status'][ $form_id ] = 'updated'; |
|
| 212 | + $imported['form_status'][$form_id] = 'updated'; |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | private static function get_form_fields( $form_id ) { |
| 216 | 216 | $form_fields = FrmField::get_all_for_form( $form_id, '', 'exclude', 'exclude' ); |
| 217 | 217 | $old_fields = array(); |
| 218 | 218 | foreach ( $form_fields as $f ) { |
| 219 | - $old_fields[ $f->id ] = $f; |
|
| 220 | - $old_fields[ $f->field_key ] = $f->id; |
|
| 221 | - unset($f); |
|
| 219 | + $old_fields[$f->id] = $f; |
|
| 220 | + $old_fields[$f->field_key] = $f->id; |
|
| 221 | + unset( $f ); |
|
| 222 | 222 | } |
| 223 | 223 | $form_fields = $old_fields; |
| 224 | 224 | return $form_fields; |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | $regular_forms = array(); |
| 250 | 250 | |
| 251 | 251 | foreach ( $forms as $form ) { |
| 252 | - $parent_form_id = isset( $form->parent_form_id) ? (int) $form->parent_form_id : 0; |
|
| 252 | + $parent_form_id = isset( $form->parent_form_id ) ? (int) $form->parent_form_id : 0; |
|
| 253 | 253 | |
| 254 | 254 | if ( $parent_form_id ) { |
| 255 | 255 | $child_forms[] = $form; |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | */ |
| 272 | 272 | private static function track_imported_child_forms( $form_id, $parent_form_id, &$child_forms ) { |
| 273 | 273 | if ( $parent_form_id ) { |
| 274 | - $child_forms[ $form_id ] = $parent_form_id; |
|
| 274 | + $child_forms[$form_id] = $parent_form_id; |
|
| 275 | 275 | } |
| 276 | 276 | } |
| 277 | 277 | |
@@ -286,9 +286,9 @@ discard block |
||
| 286 | 286 | private static function maybe_update_child_form_parent_id( $imported_forms, $child_forms ) { |
| 287 | 287 | foreach ( $child_forms as $child_form_id => $old_parent_form_id ) { |
| 288 | 288 | |
| 289 | - if ( isset( $imported_forms[ $old_parent_form_id ] ) && $imported_forms[ $old_parent_form_id ] != $old_parent_form_id ) { |
|
| 289 | + if ( isset( $imported_forms[$old_parent_form_id] ) && $imported_forms[$old_parent_form_id] != $old_parent_form_id ) { |
|
| 290 | 290 | // Update all children with this old parent_form_id |
| 291 | - $new_parent_form_id = (int) $imported_forms[ $old_parent_form_id ]; |
|
| 291 | + $new_parent_form_id = (int) $imported_forms[$old_parent_form_id]; |
|
| 292 | 292 | |
| 293 | 293 | FrmForm::update( $child_form_id, array( 'parent_form_id' => $new_parent_form_id ) ); |
| 294 | 294 | } |
@@ -307,15 +307,15 @@ discard block |
||
| 307 | 307 | foreach ( $xml_fields as $field ) { |
| 308 | 308 | $f = self::fill_field( $field, $form_id ); |
| 309 | 309 | |
| 310 | - if ( is_array($f['default_value']) && in_array($f['type'], array( |
|
| 310 | + if ( is_array( $f['default_value'] ) && in_array( $f['type'], array( |
|
| 311 | 311 | 'text', 'email', 'url', 'textarea', |
| 312 | - 'number','phone', 'date', |
|
| 312 | + 'number', 'phone', 'date', |
|
| 313 | 313 | 'hidden', 'password', 'tag', 'image', |
| 314 | - )) ) { |
|
| 315 | - if ( count($f['default_value']) === 1 ) { |
|
| 314 | + ) ) ) { |
|
| 315 | + if ( count( $f['default_value'] ) === 1 ) { |
|
| 316 | 316 | $f['default_value'] = '[' . reset( $f['default_value'] ) . ']'; |
| 317 | 317 | } else { |
| 318 | - $f['default_value'] = reset($f['default_value']); |
|
| 318 | + $f['default_value'] = reset( $f['default_value'] ); |
|
| 319 | 319 | } |
| 320 | 320 | } |
| 321 | 321 | |
@@ -323,27 +323,27 @@ discard block |
||
| 323 | 323 | self::maybe_update_form_select( $f, $imported ); |
| 324 | 324 | self::maybe_update_get_values_form_setting( $imported, $f ); |
| 325 | 325 | |
| 326 | - if ( ! empty($this_form) ) { |
|
| 326 | + if ( ! empty( $this_form ) ) { |
|
| 327 | 327 | // check for field to edit by field id |
| 328 | - if ( isset( $form_fields[ $f['id'] ] ) ) { |
|
| 328 | + if ( isset( $form_fields[$f['id']] ) ) { |
|
| 329 | 329 | FrmField::update( $f['id'], $f ); |
| 330 | - $imported['updated']['fields']++; |
|
| 330 | + $imported['updated']['fields'] ++; |
|
| 331 | 331 | |
| 332 | - unset( $form_fields[ $f['id'] ] ); |
|
| 332 | + unset( $form_fields[$f['id']] ); |
|
| 333 | 333 | |
| 334 | 334 | //unset old field key |
| 335 | - if ( isset( $form_fields[ $f['field_key'] ] ) ) { |
|
| 336 | - unset( $form_fields[ $f['field_key'] ] ); |
|
| 335 | + if ( isset( $form_fields[$f['field_key']] ) ) { |
|
| 336 | + unset( $form_fields[$f['field_key']] ); |
|
| 337 | 337 | } |
| 338 | - } else if ( isset( $form_fields[ $f['field_key'] ] ) ) { |
|
| 338 | + } else if ( isset( $form_fields[$f['field_key']] ) ) { |
|
| 339 | 339 | // check for field to edit by field key |
| 340 | - unset($f['id']); |
|
| 340 | + unset( $f['id'] ); |
|
| 341 | 341 | |
| 342 | - FrmField::update( $form_fields[ $f['field_key'] ], $f ); |
|
| 343 | - $imported['updated']['fields']++; |
|
| 342 | + FrmField::update( $form_fields[$f['field_key']], $f ); |
|
| 343 | + $imported['updated']['fields'] ++; |
|
| 344 | 344 | |
| 345 | - unset( $form_fields[ $form_fields[ $f['field_key'] ] ] ); //unset old field id |
|
| 346 | - unset( $form_fields[ $f['field_key'] ] ); //unset old field key |
|
| 345 | + unset( $form_fields[$form_fields[$f['field_key']]] ); //unset old field id |
|
| 346 | + unset( $form_fields[$f['field_key']] ); //unset old field key |
|
| 347 | 347 | } else { |
| 348 | 348 | // if no matching field id or key in this form, create the field |
| 349 | 349 | self::create_imported_field( $f, $imported ); |
@@ -362,11 +362,11 @@ discard block |
||
| 362 | 362 | 'name' => (string) $field->name, |
| 363 | 363 | 'description' => (string) $field->description, |
| 364 | 364 | 'type' => (string) $field->type, |
| 365 | - 'default_value' => FrmAppHelper::maybe_json_decode( (string) $field->default_value), |
|
| 365 | + 'default_value' => FrmAppHelper::maybe_json_decode( (string) $field->default_value ), |
|
| 366 | 366 | 'field_order' => (int) $field->field_order, |
| 367 | 367 | 'form_id' => (int) $form_id, |
| 368 | 368 | 'required' => (int) $field->required, |
| 369 | - 'options' => FrmAppHelper::maybe_json_decode( (string) $field->options), |
|
| 369 | + 'options' => FrmAppHelper::maybe_json_decode( (string) $field->options ), |
|
| 370 | 370 | 'field_options' => FrmAppHelper::maybe_json_decode( (string) $field->field_options ), |
| 371 | 371 | ); |
| 372 | 372 | } |
@@ -410,8 +410,8 @@ discard block |
||
| 410 | 410 | if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
| 411 | 411 | if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
| 412 | 412 | $form_select = $f['field_options']['form_select']; |
| 413 | - if ( isset( $imported['forms'][ $form_select ] ) ) { |
|
| 414 | - $f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
|
| 413 | + if ( isset( $imported['forms'][$form_select] ) ) { |
|
| 414 | + $f['field_options']['form_select'] = $imported['forms'][$form_select]; |
|
| 415 | 415 | } |
| 416 | 416 | } |
| 417 | 417 | } |
@@ -431,8 +431,8 @@ discard block |
||
| 431 | 431 | |
| 432 | 432 | if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
| 433 | 433 | $old_form = $f['field_options']['get_values_form']; |
| 434 | - if ( isset( $imported['forms'][ $old_form ] ) ) { |
|
| 435 | - $f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
|
| 434 | + if ( isset( $imported['forms'][$old_form] ) ) { |
|
| 435 | + $f['field_options']['get_values_form'] = $imported['forms'][$old_form]; |
|
| 436 | 436 | } |
| 437 | 437 | } |
| 438 | 438 | } |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | private static function create_imported_field( $f, &$imported ) { |
| 448 | 448 | $new_id = FrmField::create( $f ); |
| 449 | 449 | if ( $new_id != false ) { |
| 450 | - $imported['imported']['fields']++; |
|
| 450 | + $imported['imported']['fields'] ++; |
|
| 451 | 451 | do_action( 'frm_after_field_is_imported', $f, $new_id ); |
| 452 | 452 | } |
| 453 | 453 | } |
@@ -546,9 +546,9 @@ discard block |
||
| 546 | 546 | ); |
| 547 | 547 | |
| 548 | 548 | $old_id = $post['post_id']; |
| 549 | - self::populate_post($post, $item, $imported); |
|
| 549 | + self::populate_post( $post, $item, $imported ); |
|
| 550 | 550 | |
| 551 | - unset($item); |
|
| 551 | + unset( $item ); |
|
| 552 | 552 | |
| 553 | 553 | $post_id = false; |
| 554 | 554 | if ( $post['post_type'] == $form_action_type ) { |
@@ -556,7 +556,7 @@ discard block |
||
| 556 | 556 | if ( $action_control && is_object( $action_control ) ) { |
| 557 | 557 | $post_id = $action_control->maybe_create_action( $post, $imported['form_status'] ); |
| 558 | 558 | } |
| 559 | - unset($action_control); |
|
| 559 | + unset( $action_control ); |
|
| 560 | 560 | } else if ( $post['post_type'] == 'frm_styles' ) { |
| 561 | 561 | // Properly encode post content before inserting the post |
| 562 | 562 | $post['post_content'] = FrmAppHelper::maybe_json_decode( $post['post_content'] ); |
@@ -571,24 +571,24 @@ discard block |
||
| 571 | 571 | $post_id = wp_insert_post( $post ); |
| 572 | 572 | } |
| 573 | 573 | |
| 574 | - if ( ! is_numeric($post_id) ) { |
|
| 574 | + if ( ! is_numeric( $post_id ) ) { |
|
| 575 | 575 | continue; |
| 576 | 576 | } |
| 577 | 577 | |
| 578 | - self::update_postmeta($post, $post_id); |
|
| 578 | + self::update_postmeta( $post, $post_id ); |
|
| 579 | 579 | |
| 580 | 580 | $this_type = 'posts'; |
| 581 | - if ( isset( $post_types[ $post['post_type'] ] ) ) { |
|
| 582 | - $this_type = $post_types[ $post['post_type'] ]; |
|
| 581 | + if ( isset( $post_types[$post['post_type']] ) ) { |
|
| 582 | + $this_type = $post_types[$post['post_type']]; |
|
| 583 | 583 | } |
| 584 | 584 | |
| 585 | - if ( isset($post['ID']) && $post_id == $post['ID'] ) { |
|
| 586 | - $imported['updated'][ $this_type ]++; |
|
| 585 | + if ( isset( $post['ID'] ) && $post_id == $post['ID'] ) { |
|
| 586 | + $imported['updated'][$this_type] ++; |
|
| 587 | 587 | } else { |
| 588 | - $imported['imported'][ $this_type ]++; |
|
| 588 | + $imported['imported'][$this_type] ++; |
|
| 589 | 589 | } |
| 590 | 590 | |
| 591 | - $imported['posts'][ (int) $old_id ] = $post_id; |
|
| 591 | + $imported['posts'][(int) $old_id] = $post_id; |
|
| 592 | 592 | |
| 593 | 593 | do_action( 'frm_after_import_view', $post_id, $post ); |
| 594 | 594 | |
@@ -601,13 +601,13 @@ discard block |
||
| 601 | 601 | } |
| 602 | 602 | |
| 603 | 603 | private static function populate_post( &$post, $item, $imported ) { |
| 604 | - if ( isset($item->attachment_url) ) { |
|
| 604 | + if ( isset( $item->attachment_url ) ) { |
|
| 605 | 605 | $post['attachment_url'] = (string) $item->attachment_url; |
| 606 | 606 | } |
| 607 | 607 | |
| 608 | - if ( $post['post_type'] == FrmFormActionsController::$action_post_type && isset( $imported['forms'][ (int) $post['menu_order'] ] ) ) { |
|
| 608 | + if ( $post['post_type'] == FrmFormActionsController::$action_post_type && isset( $imported['forms'][(int) $post['menu_order']] ) ) { |
|
| 609 | 609 | // update to new form id |
| 610 | - $post['menu_order'] = $imported['forms'][ (int) $post['menu_order'] ]; |
|
| 610 | + $post['menu_order'] = $imported['forms'][(int) $post['menu_order']]; |
|
| 611 | 611 | } |
| 612 | 612 | |
| 613 | 613 | // Don't allow default styles to take over a site's default style |
@@ -616,13 +616,13 @@ discard block |
||
| 616 | 616 | } |
| 617 | 617 | |
| 618 | 618 | foreach ( $item->postmeta as $meta ) { |
| 619 | - self::populate_postmeta($post, $meta, $imported); |
|
| 620 | - unset($meta); |
|
| 619 | + self::populate_postmeta( $post, $meta, $imported ); |
|
| 620 | + unset( $meta ); |
|
| 621 | 621 | } |
| 622 | 622 | |
| 623 | - self::populate_taxonomies($post, $item); |
|
| 623 | + self::populate_taxonomies( $post, $item ); |
|
| 624 | 624 | |
| 625 | - self::maybe_editing_post($post); |
|
| 625 | + self::maybe_editing_post( $post ); |
|
| 626 | 626 | } |
| 627 | 627 | |
| 628 | 628 | private static function populate_postmeta( &$post, $meta, $imported ) { |
@@ -634,27 +634,27 @@ discard block |
||
| 634 | 634 | ); |
| 635 | 635 | |
| 636 | 636 | //switch old form and field ids to new ones |
| 637 | - if ( $m['key'] == 'frm_form_id' && isset($imported['forms'][ (int) $m['value'] ]) ) { |
|
| 638 | - $m['value'] = $imported['forms'][ (int) $m['value'] ]; |
|
| 637 | + if ( $m['key'] == 'frm_form_id' && isset( $imported['forms'][(int) $m['value']] ) ) { |
|
| 638 | + $m['value'] = $imported['forms'][(int) $m['value']]; |
|
| 639 | 639 | } else { |
| 640 | - $m['value'] = FrmAppHelper::maybe_json_decode($m['value']); |
|
| 640 | + $m['value'] = FrmAppHelper::maybe_json_decode( $m['value'] ); |
|
| 641 | 641 | |
| 642 | - if ( ! empty($frm_duplicate_ids) ) { |
|
| 642 | + if ( ! empty( $frm_duplicate_ids ) ) { |
|
| 643 | 643 | |
| 644 | 644 | if ( $m['key'] == 'frm_dyncontent' ) { |
| 645 | - $m['value'] = FrmFieldsHelper::switch_field_ids($m['value']); |
|
| 645 | + $m['value'] = FrmFieldsHelper::switch_field_ids( $m['value'] ); |
|
| 646 | 646 | } else if ( $m['key'] == 'frm_options' ) { |
| 647 | 647 | |
| 648 | 648 | foreach ( array( 'date_field_id', 'edate_field_id' ) as $setting_name ) { |
| 649 | - if ( isset( $m['value'][ $setting_name ] ) && is_numeric( $m['value'][ $setting_name ] ) && isset( $frm_duplicate_ids[ $m['value'][ $setting_name ] ] ) ) { |
|
| 650 | - $m['value'][ $setting_name ] = $frm_duplicate_ids[ $m['value'][ $setting_name ] ]; |
|
| 649 | + if ( isset( $m['value'][$setting_name] ) && is_numeric( $m['value'][$setting_name] ) && isset( $frm_duplicate_ids[$m['value'][$setting_name]] ) ) { |
|
| 650 | + $m['value'][$setting_name] = $frm_duplicate_ids[$m['value'][$setting_name]]; |
|
| 651 | 651 | } |
| 652 | 652 | } |
| 653 | 653 | |
| 654 | 654 | $check_dup_array = array(); |
| 655 | 655 | if ( isset( $m['value']['order_by'] ) && ! empty( $m['value']['order_by'] ) ) { |
| 656 | - if ( is_numeric( $m['value']['order_by'] ) && isset( $frm_duplicate_ids[ $m['value']['order_by'] ] ) ) { |
|
| 657 | - $m['value']['order_by'] = $frm_duplicate_ids[ $m['value']['order_by'] ]; |
|
| 656 | + if ( is_numeric( $m['value']['order_by'] ) && isset( $frm_duplicate_ids[$m['value']['order_by']] ) ) { |
|
| 657 | + $m['value']['order_by'] = $frm_duplicate_ids[$m['value']['order_by']]; |
|
| 658 | 658 | } else if ( is_array( $m['value']['order_by'] ) ) { |
| 659 | 659 | $check_dup_array[] = 'order_by'; |
| 660 | 660 | } |
@@ -665,22 +665,22 @@ discard block |
||
| 665 | 665 | } |
| 666 | 666 | |
| 667 | 667 | foreach ( $check_dup_array as $check_k ) { |
| 668 | - foreach ( (array) $m['value'][ $check_k ] as $mk => $mv ) { |
|
| 669 | - if ( isset( $frm_duplicate_ids[ $mv ] ) ) { |
|
| 670 | - $m['value'][ $check_k ][ $mk ] = $frm_duplicate_ids[ $mv ]; |
|
| 668 | + foreach ( (array) $m['value'][$check_k] as $mk => $mv ) { |
|
| 669 | + if ( isset( $frm_duplicate_ids[$mv] ) ) { |
|
| 670 | + $m['value'][$check_k][$mk] = $frm_duplicate_ids[$mv]; |
|
| 671 | 671 | } |
| 672 | - unset($mk, $mv); |
|
| 672 | + unset( $mk, $mv ); |
|
| 673 | 673 | } |
| 674 | 674 | } |
| 675 | 675 | } |
| 676 | 676 | } |
| 677 | 677 | } |
| 678 | 678 | |
| 679 | - if ( ! is_array($m['value']) ) { |
|
| 680 | - $m['value'] = FrmAppHelper::maybe_json_decode($m['value']); |
|
| 679 | + if ( ! is_array( $m['value'] ) ) { |
|
| 680 | + $m['value'] = FrmAppHelper::maybe_json_decode( $m['value'] ); |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | - $post['postmeta'][ (string) $meta->meta_key ] = $m['value']; |
|
| 683 | + $post['postmeta'][(string) $meta->meta_key] = $m['value']; |
|
| 684 | 684 | } |
| 685 | 685 | |
| 686 | 686 | /** |
@@ -696,23 +696,23 @@ discard block |
||
| 696 | 696 | } |
| 697 | 697 | |
| 698 | 698 | $taxonomy = (string) $att['domain']; |
| 699 | - if ( is_taxonomy_hierarchical($taxonomy) ) { |
|
| 699 | + if ( is_taxonomy_hierarchical( $taxonomy ) ) { |
|
| 700 | 700 | $name = (string) $att['nicename']; |
| 701 | - $h_term = get_term_by('slug', $name, $taxonomy); |
|
| 701 | + $h_term = get_term_by( 'slug', $name, $taxonomy ); |
|
| 702 | 702 | if ( $h_term ) { |
| 703 | 703 | $name = $h_term->term_id; |
| 704 | 704 | } |
| 705 | - unset($h_term); |
|
| 705 | + unset( $h_term ); |
|
| 706 | 706 | } else { |
| 707 | 707 | $name = (string) $c; |
| 708 | 708 | } |
| 709 | 709 | |
| 710 | - if ( ! isset( $post['tax_input'][ $taxonomy ] ) ) { |
|
| 711 | - $post['tax_input'][ $taxonomy ] = array(); |
|
| 710 | + if ( ! isset( $post['tax_input'][$taxonomy] ) ) { |
|
| 711 | + $post['tax_input'][$taxonomy] = array(); |
|
| 712 | 712 | } |
| 713 | 713 | |
| 714 | - $post['tax_input'][ $taxonomy ][] = $name; |
|
| 715 | - unset($name); |
|
| 714 | + $post['tax_input'][$taxonomy][] = $name; |
|
| 715 | + unset( $name ); |
|
| 716 | 716 | } |
| 717 | 717 | } |
| 718 | 718 | |
@@ -729,29 +729,29 @@ discard block |
||
| 729 | 729 | |
| 730 | 730 | if ( in_array( $post['post_status'], array( 'trash', 'draft' ) ) ) { |
| 731 | 731 | $match_by['include'] = $post['post_id']; |
| 732 | - unset($match_by['name']); |
|
| 732 | + unset( $match_by['name'] ); |
|
| 733 | 733 | } |
| 734 | 734 | |
| 735 | - $editing = get_posts($match_by); |
|
| 735 | + $editing = get_posts( $match_by ); |
|
| 736 | 736 | |
| 737 | - if ( ! empty($editing) && current($editing)->post_date == $post['post_date'] ) { |
|
| 737 | + if ( ! empty( $editing ) && current( $editing )->post_date == $post['post_date'] ) { |
|
| 738 | 738 | // set the id of the post to edit |
| 739 | - $post['ID'] = current($editing)->ID; |
|
| 739 | + $post['ID'] = current( $editing )->ID; |
|
| 740 | 740 | } |
| 741 | 741 | } |
| 742 | 742 | |
| 743 | 743 | private static function update_postmeta( &$post, $post_id ) { |
| 744 | 744 | foreach ( $post['postmeta'] as $k => $v ) { |
| 745 | 745 | if ( '_edit_last' == $k ) { |
| 746 | - $v = FrmAppHelper::get_user_id_param($v); |
|
| 746 | + $v = FrmAppHelper::get_user_id_param( $v ); |
|
| 747 | 747 | } else if ( '_thumbnail_id' == $k && FrmAppHelper::pro_is_installed() ) { |
| 748 | 748 | //change the attachment ID |
| 749 | - $v = FrmProXMLHelper::get_file_id($v); |
|
| 749 | + $v = FrmProXMLHelper::get_file_id( $v ); |
|
| 750 | 750 | } |
| 751 | 751 | |
| 752 | - update_post_meta($post_id, $k, $v); |
|
| 752 | + update_post_meta( $post_id, $k, $v ); |
|
| 753 | 753 | |
| 754 | - unset($k, $v); |
|
| 754 | + unset( $k, $v ); |
|
| 755 | 755 | } |
| 756 | 756 | } |
| 757 | 757 | |
@@ -790,13 +790,13 @@ discard block |
||
| 790 | 790 | * @param string $message |
| 791 | 791 | */ |
| 792 | 792 | public static function parse_message( $result, &$message, &$errors ) { |
| 793 | - if ( is_wp_error($result) ) { |
|
| 793 | + if ( is_wp_error( $result ) ) { |
|
| 794 | 794 | $errors[] = $result->get_error_message(); |
| 795 | 795 | } else if ( ! $result ) { |
| 796 | 796 | return; |
| 797 | 797 | } |
| 798 | 798 | |
| 799 | - if ( ! is_array($result) ) { |
|
| 799 | + if ( ! is_array( $result ) ) { |
|
| 800 | 800 | $message = is_string( $result ) ? $result : print_r( $result, 1 ); |
| 801 | 801 | return; |
| 802 | 802 | } |
@@ -808,20 +808,20 @@ discard block |
||
| 808 | 808 | |
| 809 | 809 | $message = '<ul>'; |
| 810 | 810 | foreach ( $result as $type => $results ) { |
| 811 | - if ( ! isset( $t_strings[ $type ] ) ) { |
|
| 811 | + if ( ! isset( $t_strings[$type] ) ) { |
|
| 812 | 812 | // only print imported and updated |
| 813 | 813 | continue; |
| 814 | 814 | } |
| 815 | 815 | |
| 816 | 816 | $s_message = array(); |
| 817 | 817 | foreach ( $results as $k => $m ) { |
| 818 | - self::item_count_message($m, $k, $s_message); |
|
| 819 | - unset($k, $m); |
|
| 818 | + self::item_count_message( $m, $k, $s_message ); |
|
| 819 | + unset( $k, $m ); |
|
| 820 | 820 | } |
| 821 | 821 | |
| 822 | - if ( ! empty($s_message) ) { |
|
| 823 | - $message .= '<li><strong>' . $t_strings[ $type ] . ':</strong> '; |
|
| 824 | - $message .= implode(', ', $s_message); |
|
| 822 | + if ( ! empty( $s_message ) ) { |
|
| 823 | + $message .= '<li><strong>' . $t_strings[$type] . ':</strong> '; |
|
| 824 | + $message .= implode( ', ', $s_message ); |
|
| 825 | 825 | $message .= '</li>'; |
| 826 | 826 | } |
| 827 | 827 | } |
@@ -850,7 +850,7 @@ discard block |
||
| 850 | 850 | 'actions' => sprintf( _n( '%1$s Form Action', '%1$s Form Actions', $m, 'formidable' ), $m ), |
| 851 | 851 | ); |
| 852 | 852 | |
| 853 | - $s_message[] = isset( $strings[ $type ] ) ? $strings[ $type ] : ' ' . $m . ' ' . ucfirst( $type ); |
|
| 853 | + $s_message[] = isset( $strings[$type] ) ? $strings[$type] : ' ' . $m . ' ' . ucfirst( $type ); |
|
| 854 | 854 | } |
| 855 | 855 | |
| 856 | 856 | /** |
@@ -882,14 +882,14 @@ discard block |
||
| 882 | 882 | } |
| 883 | 883 | |
| 884 | 884 | public static function cdata( $str ) { |
| 885 | - $str = maybe_unserialize($str); |
|
| 886 | - if ( is_array($str) ) { |
|
| 887 | - $str = json_encode($str); |
|
| 885 | + $str = maybe_unserialize( $str ); |
|
| 886 | + if ( is_array( $str ) ) { |
|
| 887 | + $str = json_encode( $str ); |
|
| 888 | 888 | } else if ( seems_utf8( $str ) == false ) { |
| 889 | 889 | $str = utf8_encode( $str ); |
| 890 | 890 | } |
| 891 | 891 | |
| 892 | - if ( is_numeric($str) ) { |
|
| 892 | + if ( is_numeric( $str ) ) { |
|
| 893 | 893 | return $str; |
| 894 | 894 | } |
| 895 | 895 | |
@@ -934,7 +934,7 @@ discard block |
||
| 934 | 934 | * @param string $post_type |
| 935 | 935 | */ |
| 936 | 936 | private static function migrate_post_settings_to_action( $form_options, $form_id, $post_type, &$imported, $switch ) { |
| 937 | - if ( ! isset($form_options['create_post']) || ! $form_options['create_post'] ) { |
|
| 937 | + if ( ! isset( $form_options['create_post'] ) || ! $form_options['create_post'] ) { |
|
| 938 | 938 | return; |
| 939 | 939 | } |
| 940 | 940 | |
@@ -955,10 +955,10 @@ discard block |
||
| 955 | 955 | ); |
| 956 | 956 | |
| 957 | 957 | foreach ( $post_settings as $post_setting ) { |
| 958 | - if ( isset( $form_options[ $post_setting ] ) ) { |
|
| 959 | - $new_action['post_content'][ $post_setting ] = $form_options[ $post_setting ]; |
|
| 958 | + if ( isset( $form_options[$post_setting] ) ) { |
|
| 959 | + $new_action['post_content'][$post_setting] = $form_options[$post_setting]; |
|
| 960 | 960 | } |
| 961 | - unset($post_setting); |
|
| 961 | + unset( $post_setting ); |
|
| 962 | 962 | } |
| 963 | 963 | |
| 964 | 964 | $new_action['event'] = array( 'create', 'update' ); |
@@ -972,7 +972,7 @@ discard block |
||
| 972 | 972 | |
| 973 | 973 | $new_action['post_content'] = self::switch_action_field_ids( $new_action['post_content'], $basic_fields, $array_fields ); |
| 974 | 974 | } |
| 975 | - $new_action['post_content'] = json_encode($new_action['post_content']); |
|
| 975 | + $new_action['post_content'] = json_encode( $new_action['post_content'] ); |
|
| 976 | 976 | |
| 977 | 977 | $exists = get_posts( array( |
| 978 | 978 | 'name' => $new_action['post_name'], |
@@ -984,7 +984,7 @@ discard block |
||
| 984 | 984 | if ( ! $exists ) { |
| 985 | 985 | // this isn't an email, but we need to use a class that will always be included |
| 986 | 986 | FrmAppHelper::save_json_post( $new_action ); |
| 987 | - $imported['imported']['actions']++; |
|
| 987 | + $imported['imported']['actions'] ++; |
|
| 988 | 988 | } |
| 989 | 989 | } |
| 990 | 990 | |
@@ -1016,11 +1016,11 @@ discard block |
||
| 1016 | 1016 | foreach ( $post_content as $key => $setting ) { |
| 1017 | 1017 | if ( ! is_array( $setting ) && in_array( $key, $basic_fields ) ) { |
| 1018 | 1018 | // Replace old IDs with new IDs |
| 1019 | - $post_content[ $key ] = str_replace( $old, $new, $setting ); |
|
| 1019 | + $post_content[$key] = str_replace( $old, $new, $setting ); |
|
| 1020 | 1020 | } else if ( is_array( $setting ) && in_array( $key, $array_fields ) ) { |
| 1021 | 1021 | foreach ( $setting as $k => $val ) { |
| 1022 | 1022 | // Replace old IDs with new IDs |
| 1023 | - $post_content[ $key ][ $k ] = str_replace( $old, $new, $val ); |
|
| 1023 | + $post_content[$key][$k] = str_replace( $old, $new, $val ); |
|
| 1024 | 1024 | } |
| 1025 | 1025 | } |
| 1026 | 1026 | unset( $key, $setting ); |
@@ -1050,7 +1050,7 @@ discard block |
||
| 1050 | 1050 | foreach ( $notifications as $new_notification ) { |
| 1051 | 1051 | $new_notification['post_type'] = $post_type; |
| 1052 | 1052 | $new_notification['post_excerpt'] = 'email'; |
| 1053 | - $new_notification['post_title'] = __( 'Email Notification', 'formidable' ); |
|
| 1053 | + $new_notification['post_title'] = __( 'Email Notification', 'formidable' ); |
|
| 1054 | 1054 | $new_notification['menu_order'] = $form_id; |
| 1055 | 1055 | $new_notification['post_status'] = 'publish'; |
| 1056 | 1056 | |
@@ -1063,7 +1063,7 @@ discard block |
||
| 1063 | 1063 | // Switch all other field IDs in email |
| 1064 | 1064 | $new_notification['post_content'] = FrmFieldsHelper::switch_field_ids( $new_notification['post_content'] ); |
| 1065 | 1065 | } |
| 1066 | - $new_notification['post_content'] = FrmAppHelper::prepare_and_encode( $new_notification['post_content'] ); |
|
| 1066 | + $new_notification['post_content'] = FrmAppHelper::prepare_and_encode( $new_notification['post_content'] ); |
|
| 1067 | 1067 | |
| 1068 | 1068 | $exists = get_posts( array( |
| 1069 | 1069 | 'name' => $new_notification['post_name'], |
@@ -1072,11 +1072,11 @@ discard block |
||
| 1072 | 1072 | 'numberposts' => 1, |
| 1073 | 1073 | ) ); |
| 1074 | 1074 | |
| 1075 | - if ( empty($exists) ) { |
|
| 1075 | + if ( empty( $exists ) ) { |
|
| 1076 | 1076 | FrmAppHelper::save_json_post( $new_notification ); |
| 1077 | - $imported['imported']['actions']++; |
|
| 1077 | + $imported['imported']['actions'] ++; |
|
| 1078 | 1078 | } |
| 1079 | - unset($new_notification); |
|
| 1079 | + unset( $new_notification ); |
|
| 1080 | 1080 | } |
| 1081 | 1081 | } |
| 1082 | 1082 | |
@@ -1089,7 +1089,7 @@ discard block |
||
| 1089 | 1089 | $form_options['notification'] = array( 0 => $form_options['notification'] ); |
| 1090 | 1090 | } |
| 1091 | 1091 | |
| 1092 | - if ( isset( $form_options['notification'] ) && is_array($form_options['notification']) ) { |
|
| 1092 | + if ( isset( $form_options['notification'] ) && is_array( $form_options['notification'] ) ) { |
|
| 1093 | 1093 | foreach ( $form_options['notification'] as $email_key => $notification ) { |
| 1094 | 1094 | |
| 1095 | 1095 | $atts = array( 'email_to' => '', 'reply_to' => '', 'reply_to_name' => '', 'event' => '', 'form_id' => $form_id, 'email_key' => $email_key ); |
@@ -1117,12 +1117,12 @@ discard block |
||
| 1117 | 1117 | // Format the reply to email and name |
| 1118 | 1118 | $reply_fields = array( 'reply_to' => '', 'reply_to_name' => '' ); |
| 1119 | 1119 | foreach ( $reply_fields as $f => $val ) { |
| 1120 | - if ( isset( $notification[ $f ] ) ) { |
|
| 1121 | - $atts[ $f ] = $notification[ $f ]; |
|
| 1122 | - if ( 'custom' == $notification[ $f ] ) { |
|
| 1123 | - $atts[ $f ] = $notification[ 'cust_' . $f ]; |
|
| 1124 | - } else if ( is_numeric( $atts[ $f ] ) && ! empty( $atts[ $f ] ) ) { |
|
| 1125 | - $atts[ $f ] = '[' . $atts[ $f ] . ']'; |
|
| 1120 | + if ( isset( $notification[$f] ) ) { |
|
| 1121 | + $atts[$f] = $notification[$f]; |
|
| 1122 | + if ( 'custom' == $notification[$f] ) { |
|
| 1123 | + $atts[$f] = $notification['cust_' . $f]; |
|
| 1124 | + } else if ( is_numeric( $atts[$f] ) && ! empty( $atts[$f] ) ) { |
|
| 1125 | + $atts[$f] = '[' . $atts[$f] . ']'; |
|
| 1126 | 1126 | } |
| 1127 | 1127 | } |
| 1128 | 1128 | unset( $f, $val ); |
@@ -1132,7 +1132,7 @@ discard block |
||
| 1132 | 1132 | $atts['event'] = array( 'create' ); |
| 1133 | 1133 | if ( isset( $notification['update_email'] ) && 1 == $notification['update_email'] ) { |
| 1134 | 1134 | $atts['event'][] = 'update'; |
| 1135 | - } else if ( isset($notification['update_email']) && 2 == $notification['update_email'] ) { |
|
| 1135 | + } else if ( isset( $notification['update_email'] ) && 2 == $notification['update_email'] ) { |
|
| 1136 | 1136 | $atts['event'] = array( 'update' ); |
| 1137 | 1137 | } |
| 1138 | 1138 | } |
@@ -1153,18 +1153,18 @@ discard block |
||
| 1153 | 1153 | foreach ( $atts['email_to'] as $key => $email_field ) { |
| 1154 | 1154 | |
| 1155 | 1155 | if ( is_numeric( $email_field ) ) { |
| 1156 | - $atts['email_to'][ $key ] = '[' . $email_field . ']'; |
|
| 1156 | + $atts['email_to'][$key] = '[' . $email_field . ']'; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | |
| 1159 | - if ( strpos( $email_field, '|') ) { |
|
| 1159 | + if ( strpos( $email_field, '|' ) ) { |
|
| 1160 | 1160 | $email_opt = explode( '|', $email_field ); |
| 1161 | 1161 | if ( isset( $email_opt[0] ) ) { |
| 1162 | - $atts['email_to'][ $key ] = '[' . $email_opt[0] . ' show=' . $email_opt[1] . ']'; |
|
| 1162 | + $atts['email_to'][$key] = '[' . $email_opt[0] . ' show=' . $email_opt[1] . ']'; |
|
| 1163 | 1163 | } |
| 1164 | 1164 | unset( $email_opt ); |
| 1165 | 1165 | } |
| 1166 | 1166 | } |
| 1167 | - $atts['email_to'] = implode(', ', $atts['email_to']); |
|
| 1167 | + $atts['email_to'] = implode( ', ', $atts['email_to'] ); |
|
| 1168 | 1168 | } |
| 1169 | 1169 | |
| 1170 | 1170 | private static function setup_new_notification( &$new_notification, $notification, $atts ) { |
@@ -1180,12 +1180,12 @@ discard block |
||
| 1180 | 1180 | // Add more fields to the new notification |
| 1181 | 1181 | $add_fields = array( 'email_message', 'email_subject', 'plain_text', 'inc_user_info', 'conditions' ); |
| 1182 | 1182 | foreach ( $add_fields as $add_field ) { |
| 1183 | - if ( isset( $notification[ $add_field ] ) ) { |
|
| 1184 | - $new_notification['post_content'][ $add_field ] = $notification[ $add_field ]; |
|
| 1183 | + if ( isset( $notification[$add_field] ) ) { |
|
| 1184 | + $new_notification['post_content'][$add_field] = $notification[$add_field]; |
|
| 1185 | 1185 | } else if ( in_array( $add_field, array( 'plain_text', 'inc_user_info' ) ) ) { |
| 1186 | - $new_notification['post_content'][ $add_field ] = 0; |
|
| 1186 | + $new_notification['post_content'][$add_field] = 0; |
|
| 1187 | 1187 | } else { |
| 1188 | - $new_notification['post_content'][ $add_field ] = ''; |
|
| 1188 | + $new_notification['post_content'][$add_field] = ''; |
|
| 1189 | 1189 | } |
| 1190 | 1190 | unset( $add_field ); |
| 1191 | 1191 | } |
@@ -1209,26 +1209,26 @@ discard block |
||
| 1209 | 1209 | if ( isset( $post_content['conditions'] ) && is_array( $post_content['conditions'] ) ) { |
| 1210 | 1210 | foreach ( $post_content['conditions'] as $email_key => $val ) { |
| 1211 | 1211 | if ( is_numeric( $email_key ) ) { |
| 1212 | - $post_content['conditions'][ $email_key ] = self::switch_action_field_ids( $val, array( 'hide_field' ) ); |
|
| 1212 | + $post_content['conditions'][$email_key] = self::switch_action_field_ids( $val, array( 'hide_field' ) ); |
|
| 1213 | 1213 | } |
| 1214 | - unset( $email_key, $val); |
|
| 1214 | + unset( $email_key, $val ); |
|
| 1215 | 1215 | } |
| 1216 | 1216 | } |
| 1217 | 1217 | } |
| 1218 | 1218 | |
| 1219 | 1219 | private static function migrate_autoresponder_to_action( $form_options, $form_id, &$notifications ) { |
| 1220 | - if ( isset($form_options['auto_responder']) && $form_options['auto_responder'] && isset($form_options['ar_email_message']) && $form_options['ar_email_message'] ) { |
|
| 1220 | + if ( isset( $form_options['auto_responder'] ) && $form_options['auto_responder'] && isset( $form_options['ar_email_message'] ) && $form_options['ar_email_message'] ) { |
|
| 1221 | 1221 | // migrate autoresponder |
| 1222 | 1222 | |
| 1223 | - $email_field = isset($form_options['ar_email_to']) ? $form_options['ar_email_to'] : 0; |
|
| 1224 | - if ( strpos($email_field, '|') ) { |
|
| 1223 | + $email_field = isset( $form_options['ar_email_to'] ) ? $form_options['ar_email_to'] : 0; |
|
| 1224 | + if ( strpos( $email_field, '|' ) ) { |
|
| 1225 | 1225 | // data from entries field |
| 1226 | - $email_field = explode('|', $email_field); |
|
| 1227 | - if ( isset($email_field[1]) ) { |
|
| 1226 | + $email_field = explode( '|', $email_field ); |
|
| 1227 | + if ( isset( $email_field[1] ) ) { |
|
| 1228 | 1228 | $email_field = $email_field[1]; |
| 1229 | 1229 | } |
| 1230 | 1230 | } |
| 1231 | - if ( is_numeric($email_field) && ! empty($email_field) ) { |
|
| 1231 | + if ( is_numeric( $email_field ) && ! empty( $email_field ) ) { |
|
| 1232 | 1232 | $email_field = '[' . $email_field . ']'; |
| 1233 | 1233 | } |
| 1234 | 1234 | |
@@ -1236,16 +1236,16 @@ discard block |
||
| 1236 | 1236 | $new_notification2 = array( |
| 1237 | 1237 | 'post_content' => array( |
| 1238 | 1238 | 'email_message' => $notification['ar_email_message'], |
| 1239 | - 'email_subject' => isset($notification['ar_email_subject']) ? $notification['ar_email_subject'] : '', |
|
| 1239 | + 'email_subject' => isset( $notification['ar_email_subject'] ) ? $notification['ar_email_subject'] : '', |
|
| 1240 | 1240 | 'email_to' => $email_field, |
| 1241 | - 'plain_text' => isset($notification['ar_plain_text']) ? $notification['ar_plain_text'] : 0, |
|
| 1241 | + 'plain_text' => isset( $notification['ar_plain_text'] ) ? $notification['ar_plain_text'] : 0, |
|
| 1242 | 1242 | 'inc_user_info' => 0, |
| 1243 | 1243 | ), |
| 1244 | 1244 | 'post_name' => $form_id . '_email_' . count( $notifications ), |
| 1245 | 1245 | ); |
| 1246 | 1246 | |
| 1247 | - $reply_to = isset($notification['ar_reply_to']) ? $notification['ar_reply_to'] : ''; |
|
| 1248 | - $reply_to_name = isset($notification['ar_reply_to_name']) ? $notification['ar_reply_to_name'] : ''; |
|
| 1247 | + $reply_to = isset( $notification['ar_reply_to'] ) ? $notification['ar_reply_to'] : ''; |
|
| 1248 | + $reply_to_name = isset( $notification['ar_reply_to_name'] ) ? $notification['ar_reply_to_name'] : ''; |
|
| 1249 | 1249 | |
| 1250 | 1250 | if ( ! empty( $reply_to ) ) { |
| 1251 | 1251 | $new_notification2['post_content']['reply_to'] = $reply_to; |