-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT Object for Nested GridField testing
- Loading branch information
Sabina Talipova
committed
May 22, 2024
1 parent
3b2b4c6
commit 41c19fe
Showing
5 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Fields\NestedGridField; | ||
|
||
use SilverStripe\Forms\GridField\GridFieldConfig; | ||
use SilverStripe\Forms\GridField\GridFieldConfig_RecordEditor; | ||
use SilverStripe\ORM\DataObject; | ||
use Symbiote\GridFieldExtensions\GridFieldNestedForm; | ||
|
||
class BranchNode extends DataObject | ||
{ | ||
private static $table_name = 'NestedGridField_BranchNode'; | ||
|
||
private static $db = [ | ||
'Name' => 'Varchar(50)', | ||
'Category' => 'Varchar(50)', | ||
]; | ||
|
||
private static $has_one = [ | ||
'RootNode' => RootNode::class, | ||
]; | ||
|
||
private static $has_many = [ | ||
'LeafNodes' => LeafNode::class, | ||
]; | ||
|
||
private static $summary_fields = [ | ||
'Name', | ||
'Category', | ||
]; | ||
|
||
public function getNestedConfig(): GridFieldConfig | ||
{ | ||
$config = new GridFieldConfig_RecordEditor(); | ||
$config->addComponent(GridFieldNestedForm::create()->setRelationName('LeafNodes')); | ||
return $config; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Fields\NestedGridField; | ||
|
||
use SilverStripe\Forms\GridField\GridFieldConfig; | ||
use SilverStripe\Forms\GridField\GridFieldConfig_RecordEditor; | ||
use SilverStripe\ORM\DataObject; | ||
use SilverStripe\ORM\Hierarchy\Hierarchy; | ||
use Symbiote\GridFieldExtensions\GridFieldNestedForm; | ||
|
||
class LeafNode extends DataObject | ||
{ | ||
private static $table_name = 'NestedGridField_LeafNode'; | ||
|
||
private static $db = [ | ||
'Name' => 'Varchar(50)', | ||
'Category'=>'Varchar(255)', | ||
]; | ||
|
||
private static $has_one = [ | ||
'BranchNode' => BranchNode::class, | ||
]; | ||
|
||
private static $summary_fields = [ | ||
'Name', | ||
'Category', | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Fields\NestedGridField; | ||
|
||
use SilverStripe\Admin\ModelAdmin; | ||
use SilverStripe\Forms\GridField\GridFieldConfig; | ||
use SilverStripe\Forms\GridField\GridFieldConfig_RecordViewer; | ||
use Symbiote\GridFieldExtensions\GridFieldNestedForm; | ||
|
||
class NestedGridFieldAdmin extends ModelAdmin | ||
{ | ||
private static string $url_segment = 'nested-gridfield-section'; | ||
private static string $menu_title = 'Nested GridField Section'; | ||
private static string $menu_icon_class = 'font-icon-block-banner'; | ||
|
||
private static array $managed_models = [ | ||
RootNode::class, | ||
]; | ||
|
||
public function getGridFieldConfig(): GridFieldConfig | ||
{ | ||
$config = parent::getGridFieldConfig(); | ||
$config->addComponent(GridFieldNestedForm::create()->setRelationName('BranchNodes')); | ||
return $config; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Fields\NestedGridField; | ||
|
||
use SilverStripe\ORM\DataObject; | ||
|
||
class RootNode extends DataObject | ||
{ | ||
private static $table_name = 'NestedGridField_RootNode'; | ||
|
||
private static $db = [ | ||
'Name' => 'Varchar(50)', | ||
]; | ||
|
||
private static $has_many = [ | ||
'BranchNodes' => BranchNode::class, | ||
]; | ||
} |