Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class SampleManageableObjectPageController extends \PageController implements TestOnly |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | private static $allowed_actions = [ |
||
|
|||
23 | 'Form', |
||
24 | ]; |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | private static $extensions = [ |
||
30 | ManageableControllerExtension::class |
||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | private static $managed_object = SampleManageableDataObject::class; |
||
37 | |||
38 | /** |
||
39 | * |
||
40 | */ |
||
41 | public function init() |
||
45 | } |
||
46 | |||
47 | public function Form() |
||
52 |