Skip to content
This repository has been archived by the owner on Apr 5, 2018. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Olde Hampsink authored Apr 5, 2018
1 parent 7616964 commit 403a5ae
Showing 1 changed file with 35 additions and 30 deletions.
65 changes: 35 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Export plugin for Craft CMS [![Build Status](https://travis-ci.org/boboldehampsink/export.svg?branch=master)](https://travis-ci.org/boboldehampsink/export) [![Code Coverage](https://scrutinizer-ci.com/g/boboldehampsink/export/badges/coverage.png?b=develop)](https://scrutinizer-ci.com/g/boboldehampsink/export/?branch=develop) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/boboldehampsink/export/badges/quality-score.png?b=develop)](https://scrutinizer-ci.com/g/boboldehampsink/export/?branch=develop)
DEPRECATED - Export plugin for Craft CMS [![Build Status](https://travis-ci.org/boboldehampsink/export.svg?branch=master)](https://travis-ci.org/boboldehampsink/export) [![Code Coverage](https://scrutinizer-ci.com/g/boboldehampsink/export/badges/coverage.png?b=develop)](https://scrutinizer-ci.com/g/boboldehampsink/export/?branch=develop) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/boboldehampsink/export/badges/quality-score.png?b=develop)](https://scrutinizer-ci.com/g/boboldehampsink/export/?branch=develop)
=================

Plugin that allows you to export data to CSV files.
Expand All @@ -22,6 +22,11 @@ Todo:
Important:
The plugin's folder should be named "export"

Deprecated
=================

With the release of Craft 3 on 4-4-2018, this plugin has been deprecated. You can still use this with Craft 2 but you are encouraged to use (and develop) a Craft 3 version. At this moment, I have no plans to do so.

Development
=================
Run this from your Craft installation to test your changes to this plugin before submitting a Pull Request
Expand All @@ -31,74 +36,74 @@ phpunit --bootstrap craft/app/tests/bootstrap.php --configuration craft/plugins/

Changelog
=================
###0.5.10###
### 0.5.10 ###
- Added Tags support (thanks to @timkelty)

###0.5.9###
### 0.5.9 ###
- Fixed bug if offset was an empty string

###0.5.8###
### 0.5.8 ###
- All service code is now fully covered by unit tests

###0.5.7###
### 0.5.7 ###
- Fetch elements individually for less memory consumption (thanks to @gijsstegehuis)

###0.5.6###
### 0.5.6 ###
- Show spinner while generating export (thanks to @gijsstegehuis)
- Added the ability to register the preferred CSV delimiter via the registerExportCsvDelimiter hook

###0.5.5###
### 0.5.5 ###
- Added ability to pre-select export elementtype through query string (thanks to @gijsstegehuis)
- Added Dutch translations (thanks to @rutgerbakker)

###0.5.4###
### 0.5.4 ###
- Fixed export history maps (thanks to @MRolefes)

###0.5.3###
### 0.5.3 ###
- Added the ability to control the sorting of data
- Improved the display of dates
- Improved the display of single option fields
- Use Windows friendly newlines

###0.5.2###
### 0.5.2 ###
- Fixed multioptions fieldtype exporting

###0.5.1###
### 0.5.1 ###
- Use native php csv export function to generate more correct csv's

###0.5.0###
### 0.5.0 ###
- Added the ability to enter offset and limit for more control over the exported data and performance (#4)
- Fixed export map checkbox styling
- Added a registerExportService hook so you can write an export service for other/your own element type(s)
- Fixed escaping of slashes in export data
- Added MIT license

###0.4.8###
### 0.4.8 ###
- Export now runs the export map differently through the element model for better export results, closing issues #2 and #3

###0.4.7###
### 0.4.7 ###
- Added the ability to parse table checkboxes for export

###0.4.6###
### 0.4.6 ###
- Added the ability to export Users's preferred locale, week start day, last login date, invalid login count and last invalid login date
- Clean up arrays before exporting, making them more readable

###0.4.5###
### 0.4.5 ###
- Added getCsrfInput function to forms

###0.4.4###
### 0.4.4 ###
- Even better field data parsing

###0.4.3###
### 0.4.3 ###
- Better field data parsing

###0.4.2###
### 0.4.2 ###
- Fixed a serious issue that led to not being able to run Export independently from Import

###0.4.1###
### 0.4.1 ###
- Added a hook "registerExportOperation" to parse special export fields

###0.4.0###
### 0.4.0 ###
- Added the ability to export parents and ancestors
- Added the ability to pick your own column names
- Added the ability to save column names and order
Expand All @@ -107,31 +112,31 @@ Changelog
- Only escape double quotes in CSV
- Ability to export fields that return an array

###0.3.2###
### 0.3.2 ###
- Allow multiple title columns when exporting multiple entry types

###0.3.1###
### 0.3.1 ###
- Added the ability to export all entrytypes in a section at once

###0.3.0###
### 0.3.0 ###
- Added the ability to export Categories
- Added the ability to sort the export field order

###0.2.4###
### 0.2.4 ###
- Added the ability to export id's

###0.2.3###
### 0.2.3 ###
- Fixed wrong parsing of Lightswitch values
- Fixed skipping of existing columns with NULL values

###0.2.2###
### 0.2.2 ###
- Mostly common bugfixes and improvements

###0.2.1###
### 0.2.1 ###
- Fixed a bug that would compromise exportSource data when multiple hooks were used

###0.2###
### 0.2 ###
- Added a "registerExportSource" hook, so you can replace/add/delete export data from your own plugin

###0.1###
### 0.1 ###
- Initial push to GitHub

0 comments on commit 403a5ae

Please sign in to comment.