2012-07-10 17:01:35 +02:00
|
|
|
has_many Example
|
|
|
|
=================
|
2013-08-24 02:19:35 +02:00
|
|
|
Please note this example is written with 3.0.x in mind, if you are using 3.1.x make sure you scope all static properties to private not public.
|
2012-10-10 15:40:53 +02:00
|
|
|
```php
|
|
|
|
/*** TestPage.php ***/
|
|
|
|
class TestPage extends Page {
|
|
|
|
public static $has_many=array(
|
|
|
|
'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 {
|
|
|
|
public static $db=array(
|
|
|
|
'Title'=>'Text',
|
|
|
|
'SortOrder'=>'Int'
|
|
|
|
);
|
2014-01-27 19:45:11 +01:00
|
|
|
|
|
|
|
public static $has_one=array(
|
2014-01-27 22:04:32 +01:00
|
|
|
'Parent'=>'TestPage'
|
2014-01-27 19:45:11 +01:00
|
|
|
);
|
2012-10-10 15:40:53 +02:00
|
|
|
|
|
|
|
public static $default_sort='SortOrder';
|
|
|
|
}
|
|
|
|
```
|