mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
71 lines
2.7 KiB
Markdown
71 lines
2.7 KiB
Markdown
GridField Bulk Editing Tools
|
|
============================
|
|
|
|
[![Latest Stable Version](https://poser.pugx.org/colymba/gridfield-bulk-editing-tools/v/stable.svg)](https://github.com/colymba/GridFieldBulkEditingTools/releases)
|
|
[![Latest Unstable Version](https://poser.pugx.org/colymba/gridfield-bulk-editing-tools/v/unstable.svg)](https://github.com/colymba/GridFieldBulkEditingTools/tree/master)
|
|
[![License](https://poser.pugx.org/colymba/gridfield-bulk-editing-tools/license.svg)](#license-and-copyright)
|
|
|
|
Set of SilverStripe 4 GridField components to facilitate bulk file upload & record editing.
|
|
|
|
![preview](screenshots/preview.png)
|
|
|
|
## Components:
|
|
* [Bulk Upload](#bulk-upload): Upload multiple images or files at once into DataObjects
|
|
* [Bulk Manager](#bulk-manager): Delete, Unlink, Edit (and more) multiple records at once
|
|
|
|
[More screenshots here.](screenshots)
|
|
|
|
## Requirements
|
|
* SilverStripe 4.0 (3.+)
|
|
* SilverStripe 3.1 (version 2.+ / 1.+)
|
|
* Silverstripe 3.0 (version [0.5](https://github.com/colymba/GridFieldBulkEditingTools/tree/0.5))
|
|
|
|
## Installation
|
|
### Composer
|
|
* `composer require colymba/gridfield-bulk-editing-tools`
|
|
|
|
### Manual
|
|
* Download and copy module in SilverStripe root directory
|
|
|
|
## 3.0.0 deprecations
|
|
The 3.x versions of this module require SilverStripe 4.x+, and PHP 5.5 or above:
|
|
|
|
* Namespaces are implemented, and some class names have changed (see `.upgrade.yml` for mapping)
|
|
|
|
## 2.0.0 deprecations
|
|
Major deprections in latest 2.0.0 release:
|
|
* The `GridFieldBulkImageUpload` has been renamed to `GridFieldBulkUpload`.
|
|
* `onBulkImageUpload` callback has been renamed to `onBulkUpload`
|
|
|
|
## Bulk Upload
|
|
Upload multiple images or files at once into DataObjects. Perfect for galleries and the like.
|
|
|
|
```php
|
|
$config->addComponent(new \Colymba\BulkUpload\BulkUploader());
|
|
```
|
|
|
|
See [BULK_UPLOAD.md](docs/en/BULK_UPLOAD.md) for detailed configuration.
|
|
|
|
## Bulk Manager
|
|
Perform actions on multiple records straight from the GridField
|
|
|
|
```php
|
|
$config->addComponent(new \Colymba\BulkManager\BulkManager());
|
|
```
|
|
|
|
See [BULK_MANAGER.md](docs/en//BULK_MANAGER.md) for detailed configuration.
|
|
|
|
## Interdependencies
|
|
The `BulkUploader` component makes use of `BulkManager` to allow quick editing of the newly uploaded files. Although not nescessary for the component to work, adding `Colymba\BulkManager\BulkManager` too to your `GridFieldConfig` will give you this advantage.
|
|
|
|
|
|
## 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/](https://www.transifex.com/projects/p/gridfieldbulkeditingtools/) to contribute translations, rather than sending pull requests with YAML/JS files.
|
|
|
|
## License and Copyright
|
|
|
|
[BSD 3-clause license](LICENSE)
|