mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
NEW Override automatic DataObject class
Specify which class to use when creating the DataObject that contains the image.
This commit is contained in:
parent
ef0f9fbcb8
commit
af7524efd1
@ -7,10 +7,11 @@ Simplest usage, add the component to your `GridFieldConfig` as below. The compon
|
|||||||
$config->addComponent(new GridFieldBulkUpload());
|
$config->addComponent(new GridFieldBulkUpload());
|
||||||
|
|
||||||
## Usage 2
|
## Usage 2
|
||||||
You can specify which `Image` or `File` field to use.
|
You can specify which `Image` or `File` field to use and a specific `DataObject` class name to use.
|
||||||
$fileRelationName (string, optional): The name of the `Image` or `File` has_one field to use (If your relation is set has 'MyImage' => 'Image', the parameter should be 'MyImage')
|
$fileRelationName (string, optional): The name of the `Image` or `File` has_one field to use (If your relation is set has 'MyImage' => 'Image', the parameter should be 'MyImage')
|
||||||
|
$objectClassName (string, optional): The class name of the `DataObject` to create (Usefull if for example your `GridField` holds `DataObject`s of different classes, like when used with the `GridFieldAddNewMultiClass` component.)
|
||||||
|
|
||||||
$config->addComponent(new GridFieldBulkUpload($fileRelationName));
|
$config->addComponent(new GridFieldBulkUpload($fileRelationName, $objectClassName));
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
### Component configuration
|
### Component configuration
|
||||||
|
@ -7,14 +7,16 @@
|
|||||||
class GridFieldBulkUpload implements GridField_HTMLProvider, GridField_URLHandler
|
class GridFieldBulkUpload implements GridField_HTMLProvider, GridField_URLHandler
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* component configuration.
|
* Component configuration.
|
||||||
*
|
*
|
||||||
* 'fileRelationName' => field name of the $has_one File/Image relation
|
* 'fileRelationName' => field name of the $has_one File/Image relation
|
||||||
|
* 'objectClassName' => overrides the automatic DataObject class detection from gridfield->dataClass with a custom class name
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $config = array(
|
protected $config = array(
|
||||||
'fileRelationName' => null,
|
'fileRelationName' => null,
|
||||||
|
'objectClassName' => null
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -66,11 +68,15 @@ class GridFieldBulkUpload implements GridField_HTMLProvider, GridField_URLHandle
|
|||||||
*
|
*
|
||||||
* @param string $fileRelationName
|
* @param string $fileRelationName
|
||||||
*/
|
*/
|
||||||
public function __construct($fileRelationName = null)
|
public function __construct($fileRelationName = null, $objectClassName = null)
|
||||||
{
|
{
|
||||||
if ($fileRelationName != null) {
|
if ($fileRelationName != null) {
|
||||||
$this->setConfig('fileRelationName', $fileRelationName);
|
$this->setConfig('fileRelationName', $fileRelationName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($objectClassName != null) {
|
||||||
|
$this->setConfig('objectClassName', $objectClassName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* **********************************************************************
|
/* **********************************************************************
|
||||||
|
@ -83,7 +83,11 @@ class GridFieldBulkUpload_Request extends RequestHandler
|
|||||||
public function upload(SS_HTTPRequest $request)
|
public function upload(SS_HTTPRequest $request)
|
||||||
{
|
{
|
||||||
//create record
|
//create record
|
||||||
|
if ($this->component->getConfig('objectClassName')) {
|
||||||
|
$recordClass = $this->component->getConfig('objectClassName');
|
||||||
|
} else {
|
||||||
$recordClass = $this->gridField->list->dataClass;
|
$recordClass = $this->gridField->list->dataClass;
|
||||||
|
}
|
||||||
$record = Object::create($recordClass);
|
$record = Object::create($recordClass);
|
||||||
$record->write();
|
$record->write();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user