Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function deleteAction($testId, $id) |
||
10 | { |
||
11 | $question = (new Questions($this->get('dbh')))->getByQuestionId($id); |
||
12 | |||
13 | $this->render('admin-delete', [ |
||
14 | 'title' => 'Usuwanie pytania', |
||
15 | 'content' => 'Czy na pewno chcesz usunąć pytanie <i>'.$question['content'].'</i>?', |
||
16 | ]); |
||
17 | } |
||
18 | |||
38 |