File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,21 @@ All you need to do here is
53
53
- Add some custom JS to catch the "post link JS"
54
54
- Make sure the AjaxComponent is loaded for this action
55
55
56
+ The default bake action usually already works perfectly:
57
+
58
+ ``` php
59
+ public function delete($id = null) {
60
+ $this->request->allowMethod(['post', 'delete']);
61
+ $group = $this->Groups->get($id);
62
+
63
+ $this->Groups->delete($group);
64
+ $this->Flash->success(__('The group has been deleted.'));
65
+
66
+ return $this->redirect(['action' => 'index']);
67
+ }
68
+ ```
69
+
70
+ If you have some custom "fail" logic, though, you need to do a small adjustment.
56
71
Then just modify your delete action to pass down the error to the view for cases where this is needed:
57
72
``` php
58
73
public function delete($id = null) {
You can’t perform that action at this time.
0 commit comments