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 / export / options.php
wp-all-export / views / admin / export Last commit date
blocks 6 years ago options 5 years ago template 6 years ago google.php 9 years ago index.php 6 years ago options.php 7 years ago process.php 7 years ago success_page.php 5 years ago template.php 5 years ago variation_options.php 9 years ago variation_options_common.php 9 years ago
options.php
141 lines
1 <?php
2
3 $l10n = array(
4 'confirm_and_run' => __('Confirm & Run Export', 'wp_all_export_plugin'),
5 'save_configuration' => __('Save Export Configuration', 'wp_all_export_plugin')
6 );
7 ?>
8 <script type="text/javascript">
9 var wp_all_export_L10n = <?php echo json_encode($l10n); ?>;
10 </script>
11
12 <div class="wpallexport-step-4 wpallexport-export-options">
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', $this->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 <?php if ($this->isWizard): ?>
50 <form class="confirm <?php echo ! $this->isWizard ? 'edit' : '' ?>" method="post" style="float:right;">
51 <div style="position: relative;" class="wpae-scheduling-status">
52
53 <div class="easing-spinner" style="position: absolute; top: 7px; left: 35px; display: none;">
54 <div class="double-bounce1"></div>
55 <div class="double-bounce2"></div>
56 </div>
57
58 <svg width="30" height="30" viewBox="0 0 1792 1792"
59 xmlns="http://www.w3.org/2000/svg"
60 style="fill: white; position: absolute; top: 14px; left: 15px; display: none;">
61 <path
62 d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z"
63 fill="white"/>
64 </svg>
65 </div>
66 <?php wp_nonce_field('options', '_wpnonce_options') ?>
67 <input type="hidden" name="is_submitted" value="1" />
68 <input type="hidden" name="record-count" class="wpae-record-count" value="0" />
69
70 <input style="padding:20px 50px 20px 50px;" type="submit" class="rad10 wp_all_export_confirm_and_run" value="<?php _e('Confirm & Run Export', 'wp_all_export_plugin') ?>" />
71 </form>
72 <?php endif; ?>
73 </div>
74
75 <div class="clear"></div>
76
77 <form class="<?php echo ! $this->isWizard ? 'edit' : 'options' ?> choose-export-options" method="post" enctype="multipart/form-data" autocomplete="off" <?php echo ! $this->isWizard ? 'style="overflow:visible;"' : '' ?> id="wpae-options-form">
78
79 <input type="hidden" class="hierarhy-output" name="filter_rules_hierarhy" value="<?php echo esc_html($post['filter_rules_hierarhy']);?>"/>
80
81 <?php
82 $addons = new \Wpae\App\Service\Addons\AddonService();
83 $selected_post_type = '';
84 if ($addons->isUserAddonActive() && XmlExportUser::$is_active):
85 $selected_post_type = empty($post['cpt'][0]) ? 'users' : $post['cpt'][0];
86 endif;
87 if (XmlExportComment::$is_active):
88 $selected_post_type = 'comments';
89 endif;
90 if (empty($selected_post_type) and ! empty($post['cpt'][0]))
91 {
92 $selected_post_type = $post['cpt'][0];
93 }
94 ?>
95
96 <input type="hidden" name="selected_post_type" value="<?php echo $selected_post_type; ?>"/>
97 <input type="hidden" name="export_type" value="<?php echo $post['export_type']; ?>"/>
98 <input type="hidden" name="taxonomy_to_export" value="<?php echo $post['taxonomy_to_export'];?>">
99 <input type="hidden" name="wpml_lang" value="<?php echo empty(PMXE_Plugin::$session->wpml_lang) ? $post['wpml_lang'] : PMXE_Plugin::$session->wpml_lang;?>" />
100 <input type="hidden" id="export_variations" name="export_variations" value="<?php echo XmlExportEngine::getProductVariationMode();?>" />
101 <input type="hidden" name="record-count" class="wpae-record-count" value="0" />
102
103 <?php //\Wpae\Pro\Filtering\FilteringFactory::render_filtering_block( $engine, $this->isWizard, $post ); ?>
104
105 <?php include(__DIR__ . "/../../../src/Scheduling/views/SchedulingOptions.php"); ?>
106
107 <?php include_once 'options/settings.php'; ?>
108
109
110 <?php wp_nonce_field('options', '_wpnonce_options') ?>
111 <input type="hidden" name="is_submitted" value="1" />
112 <div style="color: #425F9A; font-size: 14px; font-weight: bold; margin: 0 0 15px; line-height: 25px; text-align: center;">
113 <div id="no-subscription" style="display: none;">
114 <?php echo _e("Looks like you're trying out Automatic Scheduling!");?><br/>
115 <?php echo _e("Your Automatic Scheduling settings won't be saved without a subscription.");?>
116 </div>
117 </div>
118 <div class="wpallexport-submit-buttons" style="text-align: center; <?php if ($this->isWizard) { ?> height: 60px; <?php } ?> ">
119
120 <?php if ($this->isWizard): ?>
121 <a href="<?php echo apply_filters('pmxi_options_back_link', add_query_arg('action', 'template', $this->baseUrl), $this->isWizard); ?>" class="back rad3"><?php _e('Back', 'wp_all_export_plugin') ?></a>
122 <?php include(__DIR__ . "/../../../src/Scheduling/views/SaveSchedulingButton.php"); ?>
123 <?php else: ?>
124 <a href="<?php echo apply_filters('pmxi_options_back_link', remove_query_arg('id', remove_query_arg('action', $this->baseUrl)), $this->isWizard); ?>" class="back rad3"><?php _e('Back to Manage Exports', 'wp_all_export_plugin') ?></a>
125 <?php include(__DIR__ . "/../../../src/Scheduling/views/SaveSchedulingButton.php"); ?>
126 <?php endif ?>
127 </div>
128
129
130 </form>
131
132 <a href="http://soflyy.com/" target="_blank" class="wpallexport-created-by"><?php _e('Created by', 'wp_all_export_plugin'); ?> <span></span></a>
133
134 </td>
135 </tr>
136 </table>
137
138 </div>
139
140 <div class="wpallexport-overlay"></div>
141