mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
Make the setEmptyString configurable
This commit is contained in:
parent
7bf3cf9a31
commit
d1953b195d
5
_config/gridfieldextensions.yml
Normal file
5
_config/gridfieldextensions.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
name: gridfieldextensions
|
||||||
|
---
|
||||||
|
GridFieldAddNewMultiClass:
|
||||||
|
showEmptyString: false
|
@ -10,6 +10,9 @@ class GridFieldAddNewMultiClass implements GridField_HTMLProvider, GridField_URL
|
|||||||
private static $allowed_actions = array(
|
private static $allowed_actions = array(
|
||||||
'handleAdd'
|
'handleAdd'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Should we add an empty string to the add class dropdown?
|
||||||
|
private static $showEmptyString = true;
|
||||||
|
|
||||||
private $fragment;
|
private $fragment;
|
||||||
|
|
||||||
@ -150,7 +153,9 @@ class GridFieldAddNewMultiClass implements GridField_HTMLProvider, GridField_URL
|
|||||||
GridFieldExtensions::include_requirements();
|
GridFieldExtensions::include_requirements();
|
||||||
|
|
||||||
$field = new DropdownField(sprintf('%s[ClassName]', __CLASS__), '', $classes);
|
$field = new DropdownField(sprintf('%s[ClassName]', __CLASS__), '', $classes);
|
||||||
$field->setEmptyString(_t('GridFieldExtensions.SELECTTYPETOCREATE', '(Select type to create)'));
|
if (Config::inst()->get('GridFieldAddNewMultiClass', 'showEmptyString')) {
|
||||||
|
$field->setEmptyString(_t('GridFieldExtensions.SELECTTYPETOCREATE', '(Select type to create)'));
|
||||||
|
}
|
||||||
$field->addExtraClass('no-change-track');
|
$field->addExtraClass('no-change-track');
|
||||||
|
|
||||||
$data = new ArrayData(array(
|
$data = new ArrayData(array(
|
||||||
|
Loading…
Reference in New Issue
Block a user