sortablegridfield/docs/HasManyExample.md

36 lines
761 B
Markdown
Raw Normal View History

2012-07-10 17:01:35 +02:00
has_many Example
=================
2012-10-10 15:40:53 +02:00
```php
/*** TestPage.php ***/
class TestPage extends Page {
private static $has_many=array(
2012-10-10 15:40:53 +02:00
'TestObjects'=>'TestObject'
);
public function getCMSFields() {
$fields=parent::getCMSFields();
2012-07-10 17:00:06 +02:00
2012-10-10 15:40:53 +02:00
$conf=GridFieldConfig_RelationEditor::create(10);
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
$fields->addFieldToTab('Root.TestObjects', new GridField('TestObjects', 'TestObjects', $this->TestObjects(), $conf));
return $fields;
2012-07-10 17:00:06 +02:00
}
2012-10-10 15:40:53 +02:00
}
2012-07-10 17:00:06 +02:00
2012-10-10 15:40:53 +02:00
/*** TestObject.php ***/
class TestObject extends DataObject {
private static $db=array(
2012-10-10 15:40:53 +02:00
'Title'=>'Text',
'SortOrder'=>'Int'
);
private static $has_one=array(
'Parent'=>'TestPage'
);
2012-10-10 15:40:53 +02:00
private static $default_sort='SortOrder';
2012-10-10 15:40:53 +02:00
}
```