| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Elevation extends DataObject |
||
| 9 | { |
||
| 10 | private static $table_name = 'Elevation'; |
||
| 11 | |||
| 12 | private static $db = [ |
||
| 13 | 'Keyword' => 'Varchar(255)', |
||
| 14 | ]; |
||
| 15 | |||
| 16 | private static $many_many = [ |
||
| 17 | 'Items' => ElevatedItem::class, |
||
| 18 | ]; |
||
| 19 | |||
| 20 | private static $summary_fields = ['ID', 'Keyword']; |
||
| 21 | |||
| 22 | public function getCMSFields() |
||
| 29 |