1 <?php
2
3 4 5 6 7
8 class extends DataObject {
9
10 static $db = array(
11 'Title' => 'Varchar(255)',
12 'Segment' => 'Varchar(25)',
13 'Order' => 'Text'
14 );
15 static $has_many = array(
16 'Pages' => 'CustomMenuItem'
17 );
18
19 function getCMSFields($params = null) {
20 $fields = parent::getCMSFields($params);
21 22 23
24 return $fields;
25 }
26
27 }
28
29
[Raise a SilverStripe Framework issue/bug](https://github.com/silverstripe/silverstripe-framework/issues/new)
- [Raise a SilverStripe CMS issue/bug](https://github.com/silverstripe/silverstripe-cms/issues/new)
- Please use the
Silverstripe Forums to ask development related questions.
-