| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function edit($id, $p) |
||
| 24 | { |
||
| 25 | $stmt = $this->pdo->prepare("UPDATE {$this->prefix}menu_types SET |
||
| 26 | title = :title, description = :description, menu_type = :menu_type WHERE id = :id"); |
||
| 27 | $stmt->bindValue(':title', $p['title']); |
||
| 28 | $stmt->bindValue(':description', $p['description']); |
||
| 29 | $stmt->bindValue(':menu_type', $p['menu_type']); |
||
| 30 | $stmt->bindValue(':id', $id, \PDO::PARAM_INT); |
||
| 31 | |||
| 32 | return $stmt->execute(); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |