|
@@ 432-437 (lines=6) @@
|
| 429 |
|
} |
| 430 |
|
|
| 431 |
|
if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
| 432 |
|
if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
| 433 |
|
$form_select = (int) $f['field_options']['form_select']; |
| 434 |
|
if ( isset( $imported['forms'][ $form_select ] ) ) { |
| 435 |
|
$f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
| 436 |
|
} |
| 437 |
|
} |
| 438 |
|
} |
| 439 |
|
} |
| 440 |
|
|
|
@@ 453-458 (lines=6) @@
|
| 450 |
|
return; |
| 451 |
|
} |
| 452 |
|
|
| 453 |
|
if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
| 454 |
|
$old_form = $f['field_options']['get_values_form']; |
| 455 |
|
if ( isset( $imported['forms'][ $old_form ] ) ) { |
| 456 |
|
$f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
| 457 |
|
} |
| 458 |
|
} |
| 459 |
|
} |
| 460 |
|
|
| 461 |
|
/** |