| Conditions | 2 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function getFormActions() |
||
| 16 | { |
||
| 17 | // Add delete action as top level button before extensions are triggered |
||
| 18 | $this->beforeUpdate('FormActions', function (FieldList $actions) { |
||
| 19 | if ($deleteAction = $this->getDeleteAction()) { |
||
| 20 | $actions->push($deleteAction); |
||
| 21 | } |
||
| 22 | }); |
||
| 23 | return parent::getFormActions(); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |