PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / 1.2.9
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel v1.2.9
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / views / admin / manage / update.php
wp-all-export / views / admin / manage Last commit date
bulk.php 11 years ago delete.php 11 years ago index.php 7 years ago scheduling.php 5 years ago templates.php 11 years ago update.php 7 years ago
update.php
116 lines
1 <?php
2 $l10n = array(
3 'confirm_and_run' => __('Confirm & Run Export', 'wp_all_export_plugin'),
4 'save_configuration' => __('Save Export Configuration', 'wp_all_export_plugin')
5 );
6 ?>
7 <script type="text/javascript">
8 var wp_all_export_L10n = <?php echo json_encode($l10n); ?>;
9 </script>
10
11
12 <div class="wpallexport-step-4 wpallexport-export-options wpallexport-re-run-export">
13
14 <h2 class="wpallexport-wp-notices"></h2>
15
16 <div class="wpallexport-wrapper">
17 <h2 class="wpallexport-wp-notices"></h2>
18 <div class="wpallexport-header">
19 <div class="wpallexport-logo"></div>
20 <div class="wpallexport-title">
21 <p><?php _e('WP All Export', 'wp_all_export_plugin'); ?></p>
22 <h2><?php _e('Export to XML / CSV', 'wp_all_export_plugin'); ?></h2>
23 </div>
24 <div class="wpallexport-links">
25 <a href="http://www.wpallimport.com/support/?utm_source=export-plugin-free&utm_medium=help&utm_campaign=premium-support" target="_blank"><?php _e('Support', 'wp_all_export_plugin'); ?></a> | <a href="http://www.wpallimport.com/documentation/?utm_source=export-plugin-free&utm_medium=help&utm_campaign=docs" target="_blank"><?php _e('Documentation', 'wp_all_export_plugin'); ?></a>
26 </div>
27 </div>
28 <div class="clear"></div>
29 </div>
30
31 <table class="wpallexport-layout">
32 <tr>
33 <td class="left" style="width: 100%;">
34
35 <?php do_action('pmxe_options_header', $isWizard, $post); ?>
36
37 <div class="ajax-console">
38 <?php if ($this->errors->get_error_codes()): ?>
39 <?php $this->error() ?>
40 <?php endif ?>
41 </div>
42
43 <div class="wpallexport-content-section" style="padding: 0 30px 0 0; overflow: hidden; margin-bottom: 0;">
44
45 <div id="filtering_result" class="wpallexport-ready-to-go">
46 <h3> &nbsp; </h3>
47 <div class="wp_all_export_preloader"></div>
48 </div>
49
50 <form class="confirm <?php echo ! $isWizard ? 'edit' : '' ?>" method="post" style="float:right;">
51
52 <?php wp_nonce_field('update-export', '_wpnonce_update-export') ?>
53 <input type="hidden" name="is_confirmed" value="1" />
54 <input type="hidden" name="record-count" class="wpae-record-count" value="0" />
55
56
57 <input type="submit" class="rad10 wp_all_export_confirm_and_run" value="<?php _e('Confirm & Run Export', 'wp_all_export_plugin') ?>" <?php if (empty(PMXE_Plugin::$session->found_posts)):?>style="display:none;"<?php endif;?>/>
58 </form>
59
60 </div>
61
62 <div class="clear"></div>
63
64 <form class="<?php echo ! $isWizard ? 'edit' : 'options' ?> choose-export-options" method="post" enctype="multipart/form-data" autocomplete="off" <?php echo ! $isWizard ? 'style="overflow:visible;"' : '' ?>>
65
66 <?php
67 $addons = new \Wpae\App\Service\Addons\AddonService();
68 $selected_post_type = '';
69 if ($addons->isUserAddonActive() && XmlExportUser::$is_active):
70 $selected_post_type = empty($post['cpt'][0]) ? 'users' : $post['cpt'][0];
71 endif;
72 if (XmlExportComment::$is_active):
73 $selected_post_type = 'comments';
74 endif;
75 if (empty($selected_post_type) and ! empty($post['cpt'][0]))
76 {
77 $selected_post_type = $post['cpt'][0];
78 }
79 ?>
80
81 <input type="hidden" name="selected_post_type" value="<?php echo $selected_post_type; ?>"/>
82 <input type="hidden" name="export_type" value="<?php echo $post['export_type']; ?>"/>
83 <input type="hidden" name="taxonomy_to_export" value="<?php echo $post['taxonomy_to_export'];?>">
84 <input type="hidden" name="wpml_lang" value="<?php echo $post['wpml_lang'];?>" />
85 <input type="hidden" id="export_variations" name="export_variations" value="<?php echo XmlExportEngine::getProductVariationMode();?>" />
86 <input type="hidden" name="record-count" class="wpae-record-count" value="0" />
87
88 <?php XmlExportFiltering::render_filtering_block( $engine, $isWizard, $post ); ?>
89
90 <?php include_once PMXE_ROOT_DIR . '/views/admin/export/options/settings.php'; ?>
91
92 <p class="wpallexport-submit-buttons" style="text-align: center;">
93 <?php wp_nonce_field('update-export', '_wpnonce_update-export') ?>
94 <input type="hidden" name="is_confirmed" value="1" />
95
96 <a href="<?php echo apply_filters('pmxi_options_back_link', add_query_arg('id', $item->id, add_query_arg('action', 'template', $this->baseUrl)), $isWizard); ?>" class="back rad3"><?php _e('Edit Template', 'wp_all_export_plugin') ?></a>
97 <?php if (empty(PMXE_Plugin::$session->found_posts)):?>
98 <input type="submit" class="button button-primary button-hero wpallexport-large-button confirm_and_run_bottom" value="<?php _e('Save Export Configuration', 'wp_all_export_plugin') ?>" />
99 <?php else:?>
100 <input type="submit" class="button button-primary button-hero wpallexport-large-button confirm_and_run_bottom" value="<?php _e('Confirm & Run Export', 'wp_all_export_plugin') ?>" />
101 <?php endif;?>
102 </p>
103
104
105 </form>
106
107 <a href="http://soflyy.com/" target="_blank" class="wpallexport-created-by"><?php _e('Created by', 'wp_all_export_plugin'); ?> <span></span></a>
108
109 </td>
110 </tr>
111 </table>
112
113 </div>
114
115 <div class="wpallexport-overlay"></div>
116