options
11 years ago
template
11 years ago
confirm.php
11 years ago
element.php
11 years ago
error.php
11 years ago
evaluate.php
11 years ago
evaluate_variations.php
11 years ago
index.php
11 years ago
options.php
11 years ago
preview.php
11 years ago
preview_images.php
11 years ago
preview_prices.php
11 years ago
preview_taxonomies.php
11 years ago
process-complete.php
11 years ago
process.php
11 years ago
tag.php
11 years ago
template.php
11 years ago
warning.php
11 years ago
options.php
114 lines
| 1 | <?php |
| 2 | $isWizard = $this->isWizard; |
| 3 | $baseUrl = $this->baseUrl; |
| 4 | ?> |
| 5 | |
| 6 | <input type="hidden" id="selected_post_type" value="<?php echo (!empty($post['custom_type'])) ? $post['custom_type'] : '';?>"> |
| 7 | <input type="hidden" id="selected_type" value="<?php echo (!empty($post['type'])) ? $post['type'] : '';?>"> |
| 8 | |
| 9 | <div class="wpallimport-step-4"> |
| 10 | |
| 11 | <h2 class="wpallimport-wp-notices"></h2> |
| 12 | |
| 13 | <div class="wpallimport-wrapper"> |
| 14 | <h2 class="wpallimport-wp-notices"></h2> |
| 15 | <div class="wpallimport-header"> |
| 16 | <div class="wpallimport-logo"></div> |
| 17 | <div class="wpallimport-title"> |
| 18 | <p><?php _e('WP All Import', 'pmxi_plugin'); ?></p> |
| 19 | <h2><?php _e('Import XML / CSV', 'pmxi_plugin'); ?></h2> |
| 20 | </div> |
| 21 | <div class="wpallimport-links"> |
| 22 | <a href="http://www.wpallimport.com/support/" target="_blank"><?php _e('Support', 'pmxi_plugin'); ?></a> | <a href="http://www.wpallimport.com/documentation/" target="_blank"><?php _e('Documentation', 'pmxi_plugin'); ?></a> |
| 23 | </div> |
| 24 | </div> |
| 25 | <div class="clear"></div> |
| 26 | </div> |
| 27 | |
| 28 | <?php $visible_sections = apply_filters('pmxi_visible_options_sections', array('reimport', 'settings'), $post['custom_type']); ?> |
| 29 | |
| 30 | <table class="wpallimport-layout"> |
| 31 | <tr> |
| 32 | <td class="left"> |
| 33 | |
| 34 | <?php do_action('pmxi_options_header', $isWizard, $post); ?> |
| 35 | |
| 36 | <div class="ajax-console"> |
| 37 | <?php if ($this->errors->get_error_codes()): ?> |
| 38 | <?php $this->error() ?> |
| 39 | <?php endif ?> |
| 40 | <?php if ($this->warnings->get_error_codes()): ?> |
| 41 | <?php $this->warning() ?> |
| 42 | <?php endif ?> |
| 43 | </div> |
| 44 | |
| 45 | <form class="<?php echo ! $isWizard ? 'edit' : 'options' ?>" method="post" enctype="multipart/form-data" autocomplete="off" <?php echo ! $isWizard ? 'style="overflow:visible;"' : '' ?>> |
| 46 | |
| 47 | <?php $post_type = $post['custom_type']; ?> |
| 48 | |
| 49 | <?php if ( ! $this->isWizard): ?> |
| 50 | |
| 51 | <?php include( 'options/_import_file.php' ); ?> |
| 52 | |
| 53 | <?php endif; ?> |
| 54 | |
| 55 | <div class="options"> |
| 56 | <?php |
| 57 | |
| 58 | if ( in_array('reimport', $visible_sections)) include( 'options/_reimport_template.php' ); |
| 59 | do_action('pmxi_options_tab', $isWizard, $post); |
| 60 | if ( in_array('settings', $visible_sections)) include( 'options/_settings_template.php' ); |
| 61 | |
| 62 | include( 'options/_buttons_template.php' ); |
| 63 | |
| 64 | ?> |
| 65 | </div> |
| 66 | |
| 67 | </form> |
| 68 | |
| 69 | <a href="http://soflyy.com/" target="_blank" class="wpallimport-created-by"><?php _e('Created by', 'pmxi_plugin'); ?> <span></span></a> |
| 70 | |
| 71 | </td> |
| 72 | <td class="right template-sidebar "> |
| 73 | <div style="position:relative;"> |
| 74 | <?php $this->tag( false ); ?> |
| 75 | </div> |
| 76 | </td> |
| 77 | </tr> |
| 78 | </table> |
| 79 | |
| 80 | </div> |
| 81 | |
| 82 | <div id="record_matching_pointer" style="display:none;"> |
| 83 | |
| 84 | <h3><?php _e("Record Matching", "pmxi_plugin");?></h3> |
| 85 | |
| 86 | <p> |
| 87 | <b><?php _e("Record Matching is how WP All Import matches records in your file with posts that already exist WordPress.","pmxi_plugin");?></b> |
| 88 | </p> |
| 89 | |
| 90 | <p> |
| 91 | <?php _e("Record Matching is most commonly used to tell WP All Import how to match up records in your file with posts WP All Import has already created on your site, so that if your file is updated with new data, WP All Import can update your posts accordingly.","pmxi_plugin");?> |
| 92 | </p> |
| 93 | |
| 94 | <hr /> |
| 95 | |
| 96 | <p><?php _e("AUTOMATIC RECORD MATCHING","pmxi_plugin");?></p> |
| 97 | |
| 98 | <p> |
| 99 | <?php _e("Automatic Record Matching allows WP All Import to update records that were imported or updated during the last run of this same import.","pmxi_plugin");?> |
| 100 | </p> |
| 101 | |
| 102 | <p> |
| 103 | <?php _e("Your unique key must be UNIQUE for each record in your feed. Make sure you get it right - you can't change it later. You'll have to re-create your import.","pmxi_plugin");?> |
| 104 | </p> |
| 105 | |
| 106 | <hr /> |
| 107 | |
| 108 | <p><?php _e("MANUAL RECORD MATCHING", "pmxi_plugin");?></p> |
| 109 | |
| 110 | <p> |
| 111 | <?php _e("Manual record matching allows WP All Import to update any records, even records that were not imported with WP All Import, or are part of a different import.","pmxi_plugin");?> |
| 112 | </p> |
| 113 | |
| 114 | </div> |