mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
Merge pull request #6 from tractorcow/3.0-set-option-failure-fix
BUG Error setting options on Null defaults
This commit is contained in:
commit
beb1d46aa6
@ -53,8 +53,10 @@ class GridFieldBulkImageUpload implements GridField_HTMLProvider, GridField_URLH
|
|||||||
*/
|
*/
|
||||||
function setConfig ( $reference, $value )
|
function setConfig ( $reference, $value )
|
||||||
{
|
{
|
||||||
if ( isset( $this->config[$reference] ) )
|
if (!key_exists($reference, $this->config) ) {
|
||||||
{
|
user_error("Unknown option reference: $reference", E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ($reference == 'fieldsClassBlacklist' || $reference == 'fieldsClassBlacklist' || $reference == 'editableFields') && !is_array($value) )
|
if ( ($reference == 'fieldsClassBlacklist' || $reference == 'fieldsClassBlacklist' || $reference == 'editableFields') && !is_array($value) )
|
||||||
{
|
{
|
||||||
$value = array($value);
|
$value = array($value);
|
||||||
@ -68,7 +70,6 @@ class GridFieldBulkImageUpload implements GridField_HTMLProvider, GridField_URLH
|
|||||||
|
|
||||||
$this->config[$reference] = $value;
|
$this->config[$reference] = $value;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns one $config parameter of the full $config
|
* Returns one $config parameter of the full $config
|
||||||
|
@ -44,8 +44,10 @@ class GridFieldBulkManager implements GridField_HTMLProvider, GridField_ColumnPr
|
|||||||
*/
|
*/
|
||||||
function setConfig ( $reference, $value )
|
function setConfig ( $reference, $value )
|
||||||
{
|
{
|
||||||
if ( isset( $this->config[$reference] ) )
|
if (!key_exists($reference, $this->config) ) {
|
||||||
{
|
user_error("Unknown option reference: $reference", E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ($reference == 'fieldsClassBlacklist' || $reference == 'fieldsClassBlacklist' || $reference == 'editableFields') && !is_array($value) )
|
if ( ($reference == 'fieldsClassBlacklist' || $reference == 'fieldsClassBlacklist' || $reference == 'editableFields') && !is_array($value) )
|
||||||
{
|
{
|
||||||
$value = array($value);
|
$value = array($value);
|
||||||
@ -59,7 +61,6 @@ class GridFieldBulkManager implements GridField_HTMLProvider, GridField_ColumnPr
|
|||||||
|
|
||||||
$this->config[$reference] = $value;
|
$this->config[$reference] = $value;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns one $config parameter of the full $config
|
* Returns one $config parameter of the full $config
|
||||||
|
Loading…
Reference in New Issue
Block a user