mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
Syntax highlighting for github
This commit is contained in:
parent
87151aad83
commit
9b5e892ee4
@ -1,31 +1,32 @@
|
||||
has_many Example
|
||||
=================
|
||||
:::php
|
||||
/*** TestPage.php ***/
|
||||
class TestPage extends Page {
|
||||
public static $has_many=array(
|
||||
'TestObjects'=>'TestObject'
|
||||
);
|
||||
```php
|
||||
/*** TestPage.php ***/
|
||||
class TestPage extends Page {
|
||||
public static $has_many=array(
|
||||
'TestObjects'=>'TestObject'
|
||||
);
|
||||
|
||||
public function getCMSFields() {
|
||||
$fields=parent::getCMSFields();
|
||||
|
||||
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;
|
||||
}
|
||||
$conf=GridFieldConfig_RelationEditor::create(10);
|
||||
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
|
||||
|
||||
$fields->addFieldToTab('Root.TestObjects', new GridField('TestObjects', 'TestObjects', $this->TestObjects(), $conf));
|
||||
|
||||
return $fields;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*** TestObject.php ***/
|
||||
class TestObject extends DataObject {
|
||||
public static $db=array(
|
||||
'Title'=>'Text',
|
||||
'SortOrder'=>'Int'
|
||||
);
|
||||
|
||||
public static $default_sort='SortOrder';
|
||||
}
|
||||
/*** TestObject.php ***/
|
||||
class TestObject extends DataObject {
|
||||
public static $db=array(
|
||||
'Title'=>'Text',
|
||||
'SortOrder'=>'Int'
|
||||
);
|
||||
|
||||
public static $default_sort='SortOrder';
|
||||
}
|
||||
```
|
@ -1,43 +1,44 @@
|
||||
many_many Example
|
||||
=================
|
||||
:::php
|
||||
/*** TestPage.php ***/
|
||||
class TestPage extends Page {
|
||||
public static $many_many=array(
|
||||
'TestObjects'=>'TestObject'
|
||||
);
|
||||
```php
|
||||
/*** TestPage.php ***/
|
||||
class TestPage extends Page {
|
||||
public static $many_many=array(
|
||||
'TestObjects'=>'TestObject'
|
||||
);
|
||||
|
||||
public static $many_many_extraFields=array(
|
||||
'TestObjects'=>array(
|
||||
'SortOrder'=>'Int'
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
public function getCMSFields() {
|
||||
$fields=parent::getCMSFields();
|
||||
|
||||
public static $many_many_extraFields=array(
|
||||
'TestObjects'=>array(
|
||||
'SortOrder'=>'Int'
|
||||
)
|
||||
);
|
||||
$conf=GridFieldConfig_RelationEditor::create(10);
|
||||
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
|
||||
|
||||
$fields->addFieldToTab('Root.TestObjects', new GridField('TestObjects', 'TestObjects', $this->TestObjects(), $conf));
|
||||
|
||||
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');
|
||||
}
|
||||
return $fields;
|
||||
}
|
||||
|
||||
public function TestObjects() {
|
||||
return $this->getManyManyComponents('TestObjects')->sort('SortOrder');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*** TestObject.php ***/
|
||||
class TestObject extends DataObject {
|
||||
public static $db=array(
|
||||
'Title'=>'Text'
|
||||
);
|
||||
|
||||
public static $belongs_many_many=array(
|
||||
'TestPages'=>'TestPage'
|
||||
);
|
||||
}
|
||||
/*** TestObject.php ***/
|
||||
class TestObject extends DataObject {
|
||||
public static $db=array(
|
||||
'Title'=>'Text'
|
||||
);
|
||||
|
||||
public static $belongs_many_many=array(
|
||||
'TestPages'=>'TestPage'
|
||||
);
|
||||
}
|
||||
```
|
Loading…
Reference in New Issue
Block a user