-
Notifications
You must be signed in to change notification settings - Fork 0
/
dish.class.php
65 lines (55 loc) · 1.54 KB
/
dish.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
declare(strict_types = 1);
class Dish {
public int $id;
public string $name;
public string $description;
public float $price;
public int $menu;
public string $image;
public function __construct(int $id, string $name, string $description, float $price, int $menu, string $image) {
$this->id = $id;
$this->name = $name;
$this->description = $description;
$this->price = $price;
$this->menu = $menu;
$this->image = $image;
}
static function getMenuDishes(PDO $db, int $id) : array {
$stmt = $db->prepare('
SELECT DishId, DishName, DishDescription, Price, MenuId, DishPhoto
FROM Dish
WHERE MenuId = ?
');
$stmt->execute(array($id));
$Dishes = [];
while ($Dish = $stmt->fetch()) {
$Dishes[] = new Dish(
intval($Dish['DishId']),
$Dish['DishName'],
$Dish['DishDescription'],
floatval($Dish['Price']),
intval($Dish['MenuId']),
$Dish['DishPhoto']
);
}
return $Dishes;
}
static function getDish(PDO $db, int $id) : Dish {
$stmt = $db->prepare('
SELECT MenuId, DishId, DishName, DishDescription, Price, DishPhoto
FROM Dish WHERE DishId = ?
');
$stmt->execute(array($id));
$Dish = $stmt->fetch();
return new Dish(
intval($Dish['DishId']),
$Dish['DishName'],
$Dish['DishDescription'],
floatval($Dish['Price']),
intval($Dish['MenuId']),
$Dish['DishPhoto']
);
}
}
?>