24 lines
310 B
PHP
24 lines
310 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
|
||
|
|
'confirmation' => 'Are you sure you want to delete?',
|
||
|
|
|
||
|
|
'actions' => [
|
||
|
|
|
||
|
|
'cancel' => [
|
||
|
|
'label' => 'Cancel',
|
||
|
|
],
|
||
|
|
|
||
|
|
'confirm' => [
|
||
|
|
'label' => 'Confirm',
|
||
|
|
],
|
||
|
|
|
||
|
|
'submit' => [
|
||
|
|
'label' => 'Submit',
|
||
|
|
],
|
||
|
|
|
||
|
|
],
|
||
|
|
|
||
|
|
];
|