Download the PHP package i-lateral/silverstripe-slightly-better-bulkloader without Composer
On this page you can find all versions of the php package i-lateral/silverstripe-slightly-better-bulkloader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download i-lateral/silverstripe-slightly-better-bulkloader
More information about i-lateral/silverstripe-slightly-better-bulkloader
Files in i-lateral/silverstripe-slightly-better-bulkloader
Package silverstripe-slightly-better-bulkloader
Short Description It's the SilverStripe bulk loader, but ever so slightly better
License BSD-3-Clause
Homepage https://github.com/i-lateral/silverstripe-slightly-better-bulkloader
Informations about the package silverstripe-slightly-better-bulkloader
Slightly Better Bulkloader
It's the SilverStripe bulk loader, but ever so slightly better!
This module expands the default SS version and adds error logging per import row and attempts to solve issues where Excel sometimes adds blank columns to the end of a CSV (which then fails to import)
Install
Instalation via composer:
# composer require i-lateral/silverstripe-slightly-better-bulkloader
Usage
By default this module should automatically replace BulkLoader_Result
with a custom version
that track errors.
However to make the most of this, you need to also implement your own version of CSVBulkLoader
for example:
ModelAdmin
Adding the Custom CSV uploader via ModelAdmin
Manualy Called
An example of adding a custom CSV import after a form has been submitted.