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
preview.php
26 lines
| 1 | <div id="post-preview" class="wpallimport-preview"> |
| 2 | |
| 3 | <div class="title"> |
| 4 | <div class="navigation"> |
| 5 | <?php if ($tagno > 1): ?><a href="#prev" class="previous_element"> </a><?php else: ?><span class="previous_element"> </span><?php endif ?> |
| 6 | <?php printf(__('<strong><input type="text" value="%s" name="tagno" class="tagno"/></strong><span class="out_of"> of <strong class="pmxi_count">%s</strong></span>', 'pmxi_plugin'), $tagno, PMXI_Plugin::$session->count); ?> |
| 7 | <?php if ($tagno < PMXI_Plugin::$session->count): ?><a href="#next" class="next_element"> </a><?php else: ?><span class="next_element"> </span><?php endif ?> |
| 8 | </div> |
| 9 | </div> |
| 10 | |
| 11 | <div class="wpallimport-preview-content"> |
| 12 | |
| 13 | <?php if ($this->errors->get_error_codes()): ?> |
| 14 | <?php $this->error() ?> |
| 15 | <?php endif ?> |
| 16 | |
| 17 | <?php if (isset($title)): ?> |
| 18 | <h2 class="title"><?php echo $title ?></h2> |
| 19 | <?php endif ?> |
| 20 | <?php if (isset($content)): ?> |
| 21 | <?php echo apply_filters('the_content', $content) ?> |
| 22 | <?php endif ?> |
| 23 | |
| 24 | </div> |
| 25 | |
| 26 | </div> |