PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
wyz-toolkit
/
wp-csv
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <script src="//code.jquery.com/jquery-1.9.1.js"></script> <script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"></script> <script type="text/javascript"> jQuery.extend({ getParams : function(str) { return (str || document.location.search).replace(/(^\?)/,'').split("&").map(function(n){return n = n.split("="),this[n[0]] = n[1],this}.bind({}))[0]; } }); jQuery( function( ) { jQuery( '#progressbar' ).progressbar( { value: 0 } ); var retpercent = 0; var progress = 0; var base_url = '<?php echo site_url( ); ?>'; var export_id = '<?php echo $export_id; ?>'; function getProgress( progress, retpercent, export_id ) { jQuery.ajax({ url: base_url + '/wp-admin/admin-ajax.php?action=process_export', type: "GET", data: 'start=' + progress + '&progress=' + retpercent + '&export_id=' + export_id, dataType : 'json', success: function( data ) { var percentage = parseFloat( data.percentagecomplete ); if ( percentage < 0 ) { jQuery( '#progressbar' ).addClass( 'ui-widget-content' ).removeClass( 'stripes' ); jQuery( '#nothing-to-export' ).show( ); jQuery( '#export_wrapper' ).hide( ); jQuery( '#download_link' ).hide( ); } else if ( percentage < 100 ) { jQuery( '#progressbar' ).progressbar( "value", percentage ); jQuery( '#percent' ).text( '(' + percentage + '%)' ); getProgress( data.position, data.percentagecomplete, export_id ); } else { jQuery( '#progressbar' ).progressbar( "value", percentage ); jQuery( '#percent' ).text( '(' + percentage + '%)' ); jQuery( '#download_link' ).show( ); window.clearInterval( interval_id ); } }, error: function( data ) { alert( 'Export failed due to a server error. Check the error log.' ); jQuery( '#cpk_wpcsv_left' ).empty( ); heading = '<h2>The following error was generated by your server:</h2>'; ajax_response = '<p>' + data.responseText + '</p>'; ajax_status = '<p>' + data.textStatus + '</p>'; ajax_error = '<p>' + data.error + '</p>'; jQuery( '#cpk_wpcsv_left' ).html( heading + ajax_status + ajax_error + ajax_response ); jQuery( '#cpk_wpcsv_left' ).append( "<p><strong>Please report this error <a href='https://wordpress.org/support/plugin/wp-csv'>here</a>.</strong></p>" ); jQuery( '#export_wrapper' ).show( ); jQuery( '#download_link' ).hide( ); jQuery( '#progressbar' ).progressbar( "value", 0 ); jQuery( '#progressbar' ).addClass( 'ui-widget-content' ).removeClass( 'stripes' ); window.clearInterval( interval_id ); jQuery( '#timer' ).text( '00:00:00' ); jQuery( '#percent' ).text( '(0%)' ); return; } }); } jQuery( '#start_export' ).on( 'click', function( ) { interval_id = window.setInterval( function() { jQuery("#timer").timer(); }, 1000); jQuery( '#export_wrapper' ).hide( ); jQuery( '#download_link' ).hide( ); jQuery( '#progressbar' ).progressbar( "value", 0 ); jQuery( '#progressbar' ).removeClass( 'ui-widget-content' ).addClass( 'stripes' ); getProgress( 0, 0, export_id ); }); String.prototype.toHHMMSS = function () { var sec_num = parseInt(this, 10); // don't forget the second param var hours = Math.floor(sec_num / 3600); var minutes = Math.floor((sec_num - (hours * 3600)) / 60); var seconds = sec_num - (hours * 3600) - (minutes * 60); if (hours < 10) {hours = "0"+hours;} if (minutes < 10) {minutes = "0"+minutes;} if (seconds < 10) {seconds = "0"+seconds;} var time = hours+':'+minutes+':'+seconds; return time; } var seconds = 0; var interval_id; jQuery.fn.timer = function() { seconds++; jQuery( this ).text( seconds.toString( ).toHHMMSS( ) ); } // timer function end }); </script> <table class='widefat'> <thead> <tr><th colspan='2'><strong><?php _e( 'Export To CSV', 'wyzi-business-finder' ); ?></strong></th></tr> </thead> <tbody> <tr><th><?php _e( 'Progress', 'wyzi-business-finder' ); ?></th><td><div id="progressbar_holder"><div id="progressbar"></div></div><span id='percent'>(0%)</span> <div id="download_link"> <a href='<?php echo $export_link; ?>'><?php _e( 'Download CSV File', 'wyzi-business-finder' ); ?></a> <?php if ( $debug ): ?> <p> Debug Active: <a href='<?php echo $debug_link; ?>'><?php _e( 'Download Debug File', 'wyzi-business-finder' ); ?></a> </p> <?php endif; ?> </div> <p id='nothing-to-export'><?php _e( 'You seem to have nothing to export. Add a post or page and try again.', 'wyzi-business-finder' ); ?></p> </td></tr> <tr><th><?php _e( 'Elapsed Time', 'wyzi-business-finder' ); ?>:</th><td><p id="timer">00:00:00</p></td></tr> </tbody> </table> <br /> <div id="export_wrapper"> <div id="start_button_wrapper"> <input type='button' id='start_export' value='Export' /> </div> </div>
[+]
..
[+]
css
[-] export_view.php
[edit]
[-] CPK_WPCSV_Log_Model.php
[edit]
[-] shortcode_view.php
[edit]
[-] CPK_WPCSV_Export_Queue_Model.php
[edit]
[-] readme.txt
[edit]
[-] report_view.php
[edit]
[-] import_view.php
[edit]
[-] CPK_WPCSV_File_Utility.php
[edit]
[-] sidebar.php
[edit]
[-] CPK_WPCSV_View.php
[edit]
[+]
lang
[-] gpl-2.0.txt
[edit]
[-] CPK_WPCSV_Engine.php
[edit]
[-] CPK_WPCSV_Debug_Log.php
[edit]
[-] CPK_WPCSV_CSV.php
[edit]
[-] layout.php
[edit]
[-] wp-csv.php
[edit]
[+]
js
[-] CPK_WPCSV_Posts_Model.php
[edit]
[-] settings_view.php
[edit]
[-] CPK_WPCSV_Html_Components.php
[edit]