1 | <?php |
||
13 | class HistoryListField extends FormField |
||
14 | { |
||
15 | /** |
||
16 | * @var DataObject |
||
17 | */ |
||
18 | protected $record = null; |
||
19 | |||
20 | protected $schemaComponent = 'HistoryList'; |
||
21 | |||
22 | protected $schemaDataType = FormField::SCHEMA_DATA_TYPE_CUSTOM; |
||
23 | |||
24 | public function getSchemaStateDefaults() |
||
37 | |||
38 | /** |
||
39 | * @return DataObject |
||
40 | */ |
||
41 | public function getRecord() |
||
45 | |||
46 | /** |
||
47 | * @param DataObject $record |
||
48 | * @return $this |
||
49 | */ |
||
50 | public function setRecord(DataObject $record) |
||
55 | } |
||
56 |