| Server IP : 5.129.245.98 / Your IP : 216.73.216.246 Web Server : Apache/2.4.66 (Debian) System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/wp-all-import-pro/views/admin/import/ |
Upload File : |
<?php if (!empty($variation_list_count)):?>
<div class="updated">
<p><?php printf(__('Current selection matches <span class="matches_count">%s</span> %s.', 'wp-all-import-pro'), $variation_list_count, _n('element', 'elements', $variation_list_count, 'wp-all-import-pro')) ?></p>
<?php if (PMXI_Plugin::getInstance()->getOption('highlight_limit') and $variation_list_count > PMXI_Plugin::getInstance()->getOption('highlight_limit')): ?>
<p><?php _e('<strong>Note</strong>: Highlighting is turned off since can be very slow on large sets of elements.', 'wp-all-import-pro') ?></p>
<?php endif ?>
</div>
<div id="current_xml">
<div class="variations_tag">
<input type="hidden" name="variations_tagno" value="<?php echo $tagno + 1 ?>" />
<div class="title">
<div class="navigation">
<?php if ($tagno > 0): ?><a href="#variation_prev" class="previous_element"> </a><?php else: ?><span class="previous_element"> </span><?php endif ?>
<?php printf(__('#<strong>%s</strong> out of <strong>%s</strong>', 'wp-all-import-pro'), $tagno + 1, $variation_list_count); ?>
<?php if ($tagno < $variation_list_count - 1): ?><a href="#variation_next" class="next_element"> </a><?php else: ?><span class="next_element"> </span><?php endif ?>
</div>
</div>
<div class="clear"></div>
<div class="xml resetable"> <?php if (!empty($variation_list_count)) PMXI_Render::render_xml_element($variation_elements->item($tagno), true); ?></div>
</div>
</div>
<?php endif; ?>
<script type="text/javascript">
(function($){
var paths = <?php echo json_encode($paths) ?>;
var $xml = $('#variations_xml');
$xml.html($('#current_xml').html()).css({'visibility':'visible'});
for (var i = 0; i < paths.length; i++) {
$xml.find('.xml-element[title="' + paths[i] + '"]').addClass('selected').parents('.xml-element').find('> .xml-content.collapsed').removeClass('collapsed').parent().find('> .xml-expander').html('-');
}
})(jQuery);
</script>