Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public static function delConfirm($redirectTo) |
||
33 | { |
||
34 | echo 'swal({ |
||
35 | title: "'.cbTrans('delete_title_confirm').'", |
||
36 | text: "'.cbTrans('delete_description_confirm').'", |
||
37 | type: "warning", |
||
38 | showCancelButton: true, |
||
39 | confirmButtonColor: "#ff0000", |
||
40 | confirmButtonText: "'.cbTrans('confirmation_yes').'", |
||
41 | cancelButtonText: "'.cbTrans('confirmation_no').'", |
||
42 | closeOnConfirm: false }, |
||
43 | function(){ location.href="'.$redirectTo.'" });'; |
||
44 | } |
||
45 | } |