SilverStripe GridField Components set for bulk upload and bulk record edit, unlink & delete 📦💥
Go to file
Thierry François f259a4af99 Merge pull request #59 from daniquilez/master
improvement on addBulkAction function.
2014-05-09 20:42:54 +03:00
code improvement on addBulkAction function. 2014-05-09 18:09:29 +02:00
css FIX action btn + loading indicator 2013-12-05 18:54:17 +02:00
javascript Transifex support 2014-03-15 15:43:04 +02:00
lang Transifex support 2014-03-15 15:43:04 +02:00
screenshots Update screenshots 2013-04-17 00:07:55 +03:00
tasks Readme + typo 2014-03-15 15:53:20 +02:00
templates FIX: Removed ID on select all checkbox 2013-12-21 01:13:45 +11:00
.gitignore Transifex support 2014-03-15 15:43:04 +02:00
BULK_IMAGE_UPLOAD.md Update readme 2013-12-05 19:42:17 +02:00
BULK_MANAGER.md Update readme 2013-12-05 19:42:17 +02:00
README.md Readme + typo 2014-03-15 15:53:20 +02:00
_config.php cleaning up the code 2012-08-08 00:02:13 +03:00
build.xml Transifex support 2014-03-15 15:43:04 +02:00
composer.json Updated requirements in composer.json to "~3.1" to support 3.1.0 stable. 2013-10-01 18:06:11 +01:00

README.md

GridField Bulk Editing Tools

Set of SilverStripe 3 GridField components to facilitate bulk image upload & record editing. preview

Components included:

  • Bulk Image Upload: Upload multiple images at once into DataObjects with on the fly fields editing
  • Bulk Manager: Handles actions for multiple records straight from the GridField (comes with unlink, delete and edit)

More screenshots here.

Requirements

  • SilverStripe 3.1 (version master / 1.+)
  • Silverstripe 3.0 (version 0.5)

Development notes

The master branch will try to be compatible with the latest SilverStripe release/pre-release. Please submit pull request against the master branch. Older branches are kept for compatibility but may not be maintained.

Installation

  • Download and copy module in SilverStripe root directory and name it whatever you want
  • run ?flush to regenerate the manifest

Bulk Image Upload

Upload multiple images at once into DataObjects. Perfect for galleries and the like.

$config->addComponent(new GridFieldBulkImageUpload());

See BULK_IMAGE_UPLOAD.md for detailed configuration.

Bulk Manager

Perform actions on multiple records straight from the GridField

$config->addComponent(new GridFieldBulkManager());

See BULK_MANAGER.md for detailed configuration.

Notes

  • The Record edit form uses the Model's getCMSFields()

@TODO

  • Add individual actions for each upload (update + cancel)
  • Handle and display errors better for: creation, update, cancel
  • Make it work not only for images but Files too

Translations

Translations of the natural language strings are managed through a third party translation interface, transifex.com.

Please use https://www.transifex.com/projects/p/gridfieldbulkeditingtools/ to contribute translations, rather than sending pull requests with YAML/JS files.

License (BSD Simplified)

Copyright (c) 2013, Thierry Francois (colymba)

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of Thierry Francois, colymba nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.