PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / 1.3.6
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel v1.3.6
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 / template / functions_editor.php
wp-all-export / views / admin / export / template Last commit date
add_new_field.php 4 years ago advanced_field_options.php 4 years ago custom_xml_help.php 4 years ago functions_editor.php 4 years ago
functions_editor.php
33 lines
1 <style type="text/css">
2 .wpae-collapser {
3 float: right;
4 height: 20px;
5 width: 20px;
6 background: url('<?php echo PMXE_ROOT_URL . '/static/img/collapser.png'?>') 0 0;
7 margin-right: 10px;
8 background-size: cover;
9 }
10
11 .closed .wpae-collapser{
12 background: url('<?php echo PMXE_ROOT_URL . '/static/img/collapser.png'?>') 0 20px;
13 background-size: cover;
14 }
15 </style>
16 <div class="wpallexport-collapsed wpallexport-section wpallexport-file-options functions-editor closed" style="margin-top: 0px;">
17 <div class="wpallexport-content-section" style="padding-bottom: 0; margin-bottom: 10px;">
18 <div class="wpallexport-collapsed-header edit-functions-collapsed-header" style="padding-left: 25px; background: none;">
19 <div class="wpae-collapser"></div>
20 <h3 style="font-size: 14px; line-height: normal; margin-top: 11px; color: #464646;"><?php esc_html_e('Function Editor', 'wp_all_export_plugin');?><a href="#help" class="wpallexport-help" title="<?php printf(esc_html__("Add functions here for use during your export. You can access this file at %s", "wp_all_export_plugin"), preg_replace("%.*wp-content%", "wp-content", esc_html($functions)));?>" style="top: -1px;">?</a></h3>
21 </div>
22 <div class="wpallexport-collapsed-content" style="padding: 0; overflow: hidden; height: auto; display: none;">
23 <div class="wpallexport-collapsed-content-inner" style="padding-top:0;">
24 <textarea id="wp_all_export_code" name="wp_all_export_code"><?php echo (empty($functions_content)) ? "<?php\n\n?>": esc_textarea($functions_content);?></textarea>
25 <div class="wpallexport-free-edition-notice php-functions-upgrade" style="margin: 15px 0; display: none;">
26 <a class="upgrade_link" target="_blank" href="https://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=2707173&edd_options%5Bprice_id%5D=1&utm_source=export-plugin-free&utm_medium=upgrade-notice&utm_campaign=custom-php" style="font-size: 1.3em;"><?php esc_html_e('Upgrade to Pro to use Custom PHP Functions','wp_all_export_plugin');?></a>
27 <p><?php esc_html_e('If you already own it, remove the free edition and install the Pro edition.','wp_all_export_plugin');?></p>
28 </div>
29 </div>
30 </div>
31 </div>
32 </div>
33