Plugin Directory

Changeset 3018550


Ignore:
Timestamp:
01/08/2024 06:41:28 AM (2 years ago)
Author:
Pooja N
Message:

Changed CSV file Format,
Compatible with WordPress new version

Location:
status-exporter
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • status-exporter/trunk/readme.txt

    r2969953 r3018550  
    55Requires at least: 3.6
    66Tested up to: 6.2
    7 Stable Tag: 1.0
     7Stable Tag: 1.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    39392. Go to Plugins > click on Export Plugins status button.
    4040
     41= 1.0.1 =
     42
     43* The CSV file format is changed.
     44* Compatible with new version of WordPress
     45
    4146= 1.0 =
    4247
    43 * First release!
     48* Initial release!
  • status-exporter/trunk/status-exporter-admin.php

    r2969953 r3018550  
    1919     */
    2020
    21     public function status_export_csv_download( $array, $filename = 'export.csv', $delimiter = ';' ) {
     21    public function status_export_csv_download( $array, $filename = 'export.csv', $delimiter = ',' ) {
    2222
    2323        // tell the browser it's going to be a csv file
     
    119119
    120120            // Filter to change csv delimiter
    121             $delimiter = apply_filters( 'status_export_csv_delimiter', ';' );
     121            $delimiter = apply_filters( 'status_export_csv_delimiter', ',' );
    122122
    123123            // Export CSV
    124124            $this->status_export_csv_download( $data, $file_name, $delimiter );
     125           
    125126        }
    126127
  • status-exporter/trunk/status-exporter.php

    r2969953 r3018550  
    66 * Plugin Name: Status Exporter
    77 * Description: Export/Download all installed Plugins status in CSV file record.
    8  * Version: 1.0
     8 * Version: 1.0.1
    99 * Text Domain: status_exporter
    1010 * Author: Pooja Nagvadia
    1111 * Domain Path: languages
    12  * Tested up to: 6.3
     12 * Tested up to: 6.4.2
    1313 */
    1414
     
    2626
    2727if ( ! defined( 'STATUS_EXPORT_VERSION' ) ) {
    28     define( 'STATUS_EXPORT_VERSION', '1.0' );      // Plugin Version
     28    define( 'STATUS_EXPORT_VERSION', '1.0.1' );      // Plugin Version
    2929}
    3030
Note: See TracChangeset for help on using the changeset viewer.