Changeset 2443245
- Timestamp:
- 12/20/2020 03:24:15 PM (5 years ago)
- Location:
- import-spreadsheets-from-microsoft-excel
- Files:
-
- 38 added
- 3 edited
-
tags/10.1.1 (added)
-
tags/10.1.1/changelog.txt (added)
-
tags/10.1.1/css (added)
-
tags/10.1.1/css/admin_plugin.css (added)
-
tags/10.1.1/css/custom_plugin.css (added)
-
tags/10.1.1/css/style_plugin.css (added)
-
tags/10.1.1/debug.txt (added)
-
tags/10.1.1/examples (added)
-
tags/10.1.1/examples/1-upload (added)
-
tags/10.1.1/examples/1-upload/weekly-time-card.zip (added)
-
tags/10.1.1/examples/2-update (added)
-
tags/10.1.1/examples/2-update/weekly-time-card.zip (added)
-
tags/10.1.1/icon (added)
-
tags/10.1.1/icon/add_shortcode.png (added)
-
tags/10.1.1/icon/delete_shortcode.png (added)
-
tags/10.1.1/icon/icon-apple.png (added)
-
tags/10.1.1/icon/icon-color-picker.png (added)
-
tags/10.1.1/icon/icon-color.png (added)
-
tags/10.1.1/icon/icon-css.png (added)
-
tags/10.1.1/icon/icon-facebook.png (added)
-
tags/10.1.1/icon/icon-flickr.png (added)
-
tags/10.1.1/icon/icon-general-setting.png (added)
-
tags/10.1.1/icon/icon-googleplus.png (added)
-
tags/10.1.1/icon/icon-instagram.png (added)
-
tags/10.1.1/icon/icon-linkedin.png (added)
-
tags/10.1.1/icon/icon-map.png (added)
-
tags/10.1.1/icon/icon-socialsites.png (added)
-
tags/10.1.1/icon/icon-tracking.png (added)
-
tags/10.1.1/icon/icon-twitter.png (added)
-
tags/10.1.1/icon/icon-vimeo.png (added)
-
tags/10.1.1/icon/icon-youtube.png (added)
-
tags/10.1.1/icon/minus.png (added)
-
tags/10.1.1/icon/plus.png (added)
-
tags/10.1.1/import-spreadsheets-from-microsoft-excel.php (added)
-
tags/10.1.1/js (added)
-
tags/10.1.1/js/admin_plugin.js (added)
-
tags/10.1.1/js/plugin-shortcode-manager-scripts.js (added)
-
tags/10.1.1/readme.txt (added)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/import-spreadsheets-from-microsoft-excel.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
import-spreadsheets-from-microsoft-excel/trunk/changelog.txt
r2025154 r2443245 1 1 == Changelog == 2 3 = 10.1.1 = 4 * $row array issue fixes. 5 * zip file open/read issue fixed for PHP version 8. 6 * getting zip file name function changed. 2 7 3 8 = 10.1 = -
import-spreadsheets-from-microsoft-excel/trunk/import-spreadsheets-from-microsoft-excel.php
r2025155 r2443245 5 5 Plugin URI: https://www.spreadsheetconverter.com/support/online-help/help-wordpress-plugin-to-import-spreadsheets-from-microsoft-excel 6 6 Description: Import Spreadsheets from Microsoft Excel 7 Version: 10. 17 Version: 10.2 8 8 Author: SpreadsheetConverter 9 9 Author URI: http://www.spreadsheetconverter.com … … 306 306 $link = esc_url( get_post_meta( $post->ID,'wp_custom_attachment','true' ) ); 307 307 $zipFileName = ''; 308 $row = '';308 $row = []; 309 309 if ( !empty( $link ) ) { 310 310 … … 491 491 492 492 if ( $x === true ) { 493 $zipall = zip_open( $target_path ); 494 while ( ($zip_entry = zip_read($zipall)) ): 495 $pathall = zip_entry_name($zip_entry); 496 endwhile; 497 493 if (version_compare(phpversion(), '8.0.0', '<')) 494 { 495 // version 5-7 code 496 $zipall = zip_open( $target_path ); 497 while ( ($zip_entry = zip_read($zipall)) ): 498 $pathall = zip_entry_name($zip_entry); 499 endwhile; 500 } 501 else 502 { 503 // version 8 code 504 for($i = 0; $i < $zip->numFiles; $i++) 505 { 506 $pathall = $zip->getNameIndex( $i ); 507 } 508 } 509 498 510 $pathall = explode("/", $pathall); 499 511 if ( $pathall[0] == $folder_name ) { -
import-spreadsheets-from-microsoft-excel/trunk/readme.txt
r2393119 r2443245 5 5 Tags: excel, spreadsheet, xls, xlsx, embed, import, upload, form, calculator, viewer, chart, graph 6 6 Requires at least: 4.5 7 Tested up to: 5. 5.17 Tested up to: 5.6 8 8 Requires PHP: 5.2.4 9 Stable tag: 10.1 9 Stable tag: 10.1.1 10 10 11 11 Import live, calculating spreadsheets from Microsoft Excel to WordPress. The uploaded online spreadsheet is live, and looks and feels like in Excel. … … 356 356 == Changelog == 357 357 358 = 10.1.1 = 359 360 * Added support for PHP 8. 361 358 362 = 10.1 = 359 363
Note: See TracChangeset
for help on using the changeset viewer.