mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
51 lines
1.1 KiB
Markdown
51 lines
1.1 KiB
Markdown
many_many Example
|
|
=================
|
|
```php
|
|
/*** TestPage.php ***/
|
|
use SilverStripe\Forms\GridField\GridField;
|
|
use SilverStripe\Forms\GridField\GridFieldConfig_RelationEditor;
|
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
|
|
|
class TestPage extends Page {
|
|
private static $many_many=array(
|
|
'TestObjects'=>'TestObject'
|
|
);
|
|
|
|
private static $many_many_extraFields=array(
|
|
'TestObjects'=>array(
|
|
'SortOrder'=>'Int'
|
|
)
|
|
);
|
|
|
|
|
|
public function getCMSFields() {
|
|
$fields=parent::getCMSFields();
|
|
|
|
$conf=GridFieldConfig_RelationEditor::create(10);
|
|
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
|
|
|
|
$fields->addFieldToTab('Root.TestObjects', new GridField('TestObjects', 'TestObjects', $this->TestObjects(), $conf));
|
|
|
|
return $fields;
|
|
}
|
|
|
|
public function TestObjects() {
|
|
return $this->getManyManyComponents('TestObjects')->sort('SortOrder');
|
|
}
|
|
}
|
|
|
|
|
|
/*** TestObject.php ***/
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class TestObject extends DataObject {
|
|
private static $db=array(
|
|
'Title'=>'Text'
|
|
);
|
|
|
|
private static $belongs_many_many=array(
|
|
'TestPages'=>'TestPage'
|
|
);
|
|
}
|
|
```
|