Changeset 3018550
- Timestamp:
- 01/08/2024 06:41:28 AM (2 years ago)
- Location:
- status-exporter
- Files:
-
- 5 added
- 3 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/screenshot-1.png (added)
-
tags/1.0.1/status-exporter-admin.php (added)
-
tags/1.0.1/status-exporter.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/status-exporter-admin.php (modified) (2 diffs)
-
trunk/status-exporter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
status-exporter/trunk/readme.txt
r2969953 r3018550 5 5 Requires at least: 3.6 6 6 Tested up to: 6.2 7 Stable Tag: 1.0 7 Stable Tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 2. Go to Plugins > click on Export Plugins status button. 40 40 41 = 1.0.1 = 42 43 * The CSV file format is changed. 44 * Compatible with new version of WordPress 45 41 46 = 1.0 = 42 47 43 * Firstrelease!48 * Initial release! -
status-exporter/trunk/status-exporter-admin.php
r2969953 r3018550 19 19 */ 20 20 21 public function status_export_csv_download( $array, $filename = 'export.csv', $delimiter = ' ;' ) {21 public function status_export_csv_download( $array, $filename = 'export.csv', $delimiter = ',' ) { 22 22 23 23 // tell the browser it's going to be a csv file … … 119 119 120 120 // Filter to change csv delimiter 121 $delimiter = apply_filters( 'status_export_csv_delimiter', ' ;' );121 $delimiter = apply_filters( 'status_export_csv_delimiter', ',' ); 122 122 123 123 // Export CSV 124 124 $this->status_export_csv_download( $data, $file_name, $delimiter ); 125 125 126 } 126 127 -
status-exporter/trunk/status-exporter.php
r2969953 r3018550 6 6 * Plugin Name: Status Exporter 7 7 * Description: Export/Download all installed Plugins status in CSV file record. 8 * Version: 1.0 8 * Version: 1.0.1 9 9 * Text Domain: status_exporter 10 10 * Author: Pooja Nagvadia 11 11 * Domain Path: languages 12 * Tested up to: 6. 312 * Tested up to: 6.4.2 13 13 */ 14 14 … … 26 26 27 27 if ( ! defined( 'STATUS_EXPORT_VERSION' ) ) { 28 define( 'STATUS_EXPORT_VERSION', '1.0 ' ); // Plugin Version28 define( 'STATUS_EXPORT_VERSION', '1.0.1' ); // Plugin Version 29 29 } 30 30
Note: See TracChangeset
for help on using the changeset viewer.