SilverStripe GridField Components set for bulk upload and bulk record edit, unlink & delete 📦💥
Go to file
Steve Boyd 96ffe5edf2 Merge branch '4' into 5 2024-05-09 12:57:52 +12:00
.github Merge branch '4.0' into 4 2024-05-09 12:55:41 +12:00
.tx TLN Update translations (#280) 2024-05-07 15:12:56 +12:00
client DEP Update JS dependencies 2024-04-02 16:58:40 +13:00
docs/en Readme update for bulk manager 2018-02-12 15:32:28 +02:00
lang Merge branch '3' into 4.0 2024-05-09 12:35:53 +12:00
src Merge branch '3' into 4.0 2024-05-09 12:35:53 +12:00
templates/Colymba API Unified json responses via new HTTPBulkToolsResponse 2018-03-14 22:24:37 +02:00
.editorconfig Update webpack implementation and refactor JS to remove lint warnings (#179) 2018-08-16 15:45:17 +03:00
.eslintignore Update webpack implementation and refactor JS to remove lint warnings (#179) 2018-08-16 15:45:17 +03:00
.eslintrc.js Update webpack implementation and refactor JS to remove lint warnings (#179) 2018-08-16 15:45:17 +03:00
.gitattributes Added standard .gitattributes file 2016-01-18 18:14:33 +02:00
.gitignore Treansifex and Build/Dist Scripts :shipit: 2018-02-28 21:12:20 +02:00
.nvmrc MNT Add .nvmrc 2024-05-09 10:44:17 +12:00
.stylelintignore MNT Replace sass-lint with stylelint 2024-04-26 12:53:25 +12:00
.stylelintrc.js MNT Replace sass-lint with stylelint 2024-04-26 12:53:25 +12:00
LICENSE Update license to BSD 3-clause 2018-02-01 13:41:15 +02:00
README.md DOC Update README.md for CMS 5 2023-04-19 15:45:06 +12:00
_config.php Clean up 🚿 2018-02-27 16:48:02 +02:00
babel.config.json DEP Upgrade frontend build stack 2023-02-01 15:28:37 +13:00
composer.json DEP Dependencies for CMS 6 2024-02-19 18:25:08 +13:00
package.json MNT Update lint script 2024-05-01 09:39:48 +12:00
phpstan.neon.dist MNT Run module-standardiser (#265) 2024-02-02 13:50:32 +13:00
transifex.js FIX js lang template and i18n js requirements path 2018-02-28 21:26:30 +02:00
webpack.config.js DEP Upgrade frontend build stack 2023-02-01 15:28:37 +13:00
yarn.lock Merge branch '4.0' into 4 2024-05-09 12:55:41 +12:00

README.md

GridField Bulk Editing Tools

⚠️ I haven't been able to give as much love as I would like to these repos as they deserve. If you have time and are interested to help maintain them, give me a shout. 🚨

Latest Stable Version Latest Unstable Version License

Set of SilverStripe CMS GridField components to facilitate bulk file upload & record editing.

Components:

  • Bulk Upload: Upload multiple images or files at once into DataObjects
  • Bulk Manager: Delete, Unlink, Edit (and more) multiple records at once

Installation

composer require colymba/gridfield-bulk-editing-tools

Bulk Upload

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

$config->addComponent(new \Colymba\BulkUpload\BulkUploader());

Versioned

By default BulkUploader will write to the current stage (most likely Draft). To auto publish your DataObject, use the following param or config:

$config->addComponent(new \Colymba\BulkUpload\BulkUploader(null, null, true));

OR

$config->getComponentByType('Colymba\\BulkUpload\\BulkUploader')->setAutoPublishDataObject(true);

Your DataObject should own the Image/File relation so it is published at the same time: See SilverStripe DataObject ownership DOC

See BULK_UPLOAD.md for detailed configuration.

Bulk Manager

Perform actions on multiple records straight from the GridField

$config->addComponent(new \Colymba\BulkManager\BulkManager());

See BULK_MANAGER.md for detailed configuration.

Tooling

  • npm run watch for development
  • npm run dist before pushing to the repo

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.

BSD 3-clause license