This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
1 | <?php |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
2 | namespace App\Controller; |
||
0 ignored issues
–
show
|
|||
3 | |||
4 | use App\Controller\AppController; |
||
0 ignored issues
–
show
|
|||
5 | |||
6 | /** |
||
7 | * Contacts Controller |
||
8 | * |
||
9 | * @property \App\Model\Table\ContactsTable $Contacts |
||
10 | * |
||
11 | * @method \App\Model\Entity\Contact[]|\Cake\Datasource\ResultSetInterface paginate($object = null, array $settings = []) |
||
12 | */ |
||
0 ignored issues
–
show
|
|||
13 | class ContactsController extends AppController |
||
14 | { |
||
0 ignored issues
–
show
|
|||
15 | |||
16 | /** |
||
17 | * Index method |
||
18 | * |
||
19 | * @return \Cake\Http\Response|void |
||
0 ignored issues
–
show
|
|||
20 | */ |
||
21 | public function index() |
||
22 | { |
||
0 ignored issues
–
show
|
|||
23 | $contacts = $this->paginate($this->Contacts); |
||
24 | |||
25 | $this->set(compact('contacts')); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * View method |
||
30 | * |
||
31 | * @param string|null $id Contact id. |
||
0 ignored issues
–
show
|
|||
32 | * @return \Cake\Http\Response|void |
||
0 ignored issues
–
show
|
|||
33 | * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. |
||
0 ignored issues
–
show
|
|||
34 | */ |
||
35 | public function view($id = null) |
||
36 | { |
||
0 ignored issues
–
show
|
|||
37 | $contact = $this->Contacts->get($id, [ |
||
38 | 'contain' => [] |
||
0 ignored issues
–
show
|
|||
39 | ]); |
||
40 | |||
41 | $this->set('contact', $contact); |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * Add method |
||
46 | * |
||
47 | * @return \Cake\Http\Response|null Redirects on successful add, renders view otherwise. |
||
48 | */ |
||
49 | public function add() |
||
50 | { |
||
0 ignored issues
–
show
|
|||
51 | $contact = $this->Contacts->newEntity(); |
||
52 | if ($this->request->is('post')) { |
||
53 | $contact = $this->Contacts->patchEntity($contact, $this->request->getData()); |
||
54 | if ($this->Contacts->save($contact)) { |
||
55 | $this->Flash->success(__('The contact has been saved.')); |
||
56 | |||
57 | return $this->redirect(['action' => 'index']); |
||
58 | } |
||
0 ignored issues
–
show
|
|||
59 | $this->Flash->error(__('The contact could not be saved. Please, try again.')); |
||
60 | } |
||
0 ignored issues
–
show
|
|||
61 | $this->set(compact('contact')); |
||
62 | } |
||
63 | |||
64 | /** |
||
65 | * Edit method |
||
66 | * |
||
67 | * @param string|null $id Contact id. |
||
0 ignored issues
–
show
|
|||
68 | * @return \Cake\Http\Response|null Redirects on successful edit, renders view otherwise. |
||
0 ignored issues
–
show
|
|||
69 | * @throws \Cake\Network\Exception\NotFoundException When record not found. |
||
0 ignored issues
–
show
|
|||
70 | */ |
||
71 | public function edit($id = null) |
||
72 | { |
||
0 ignored issues
–
show
|
|||
73 | $contact = $this->Contacts->get($id, [ |
||
74 | 'contain' => [] |
||
0 ignored issues
–
show
|
|||
75 | ]); |
||
76 | if ($this->request->is(['patch', 'post', 'put'])) { |
||
77 | $contact = $this->Contacts->patchEntity($contact, $this->request->getData()); |
||
78 | if ($this->Contacts->save($contact)) { |
||
79 | $this->Flash->success(__('The contact has been saved.')); |
||
80 | |||
81 | return $this->redirect(['action' => 'index']); |
||
82 | } |
||
0 ignored issues
–
show
|
|||
83 | $this->Flash->error(__('The contact could not be saved. Please, try again.')); |
||
84 | } |
||
0 ignored issues
–
show
|
|||
85 | $this->set(compact('contact')); |
||
86 | } |
||
87 | |||
88 | /** |
||
89 | * Delete method |
||
90 | * |
||
91 | * @param string|null $id Contact id. |
||
0 ignored issues
–
show
|
|||
92 | * @return \Cake\Http\Response|null Redirects to index. |
||
0 ignored issues
–
show
|
|||
93 | * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. |
||
0 ignored issues
–
show
|
|||
94 | */ |
||
95 | public function delete($id = null) |
||
96 | { |
||
0 ignored issues
–
show
|
|||
97 | $this->request->allowMethod(['post', 'delete']); |
||
98 | $contact = $this->Contacts->get($id); |
||
99 | if ($this->Contacts->delete($contact)) { |
||
100 | $this->Flash->success(__('The contact has been deleted.')); |
||
101 | } else { |
||
0 ignored issues
–
show
|
|||
102 | $this->Flash->error(__('The contact could not be deleted. Please, try again.')); |
||
103 | } |
||
104 | |||
105 | return $this->redirect(['action' => 'index']); |
||
106 | } |
||
0 ignored issues
–
show
|
|||
107 | } |
||
108 |