| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Test_ActionsPage extends SiteTree implements TestOnly |
||
| 10 | { |
||
| 11 | private static $table_name = 'ActionsPage'; |
||
|
|
|||
| 12 | |||
| 13 | public function getCMSActions() |
||
| 14 | { |
||
| 15 | $actions = parent::getCMSActions(); |
||
| 16 | $actions->push(new CustomAction('testAction', 'Test Action')); |
||
| 17 | return $actions; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testAction() |
||
| 23 | } |
||
| 24 | } |
||
| 25 |