| 1 | <?php |
||
| 9 | class ViewableTestObject extends DataObject implements TestOnly |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | private static $db = [ |
||
| 15 | 'Title' => 'Varchar(255)', |
||
| 16 | 'Content' => 'HtmlText', |
||
| 17 | ]; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | private static $extensions = [ |
||
| 23 | ViewableDataObject::class, |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return DataObject |
||
| 28 | */ |
||
| 29 | public function getParentPage() |
||
| 33 | } |