Mixshows.
This commit is contained in:
parent
8b4dfe0c0c
commit
ef4eedcd6e
12 changed files with 493 additions and 23 deletions
53
classes/Mixshows.php
Normal file
53
classes/Mixshows.php
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?php
|
||||
|
||||
class Mixshows
|
||||
{
|
||||
|
||||
private $db;
|
||||
private $mixshows = [];
|
||||
|
||||
public function __construct($db)
|
||||
{
|
||||
|
||||
$this->db = $db;
|
||||
if (!$this->load_all_mixshows()) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private function load_all_mixshows(): bool
|
||||
{
|
||||
$mixshows = $this->get_all_mixshows();
|
||||
if ($mixshows) {
|
||||
$this->mixshows = $mixshows;
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function get_all_mixshows($order = "ASC")
|
||||
{
|
||||
$stmt = $this->db->prepare("SELECT * FROM shows ORDER BY name $order");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$mixshows = $result->fetch_all(MYSQLI_ASSOC);
|
||||
$stmt->close();
|
||||
return $mixshows;
|
||||
}
|
||||
|
||||
public function get_nonzero_mixshows()
|
||||
{
|
||||
$stmt = $this->db->prepare("SELECT * FROM shows WHERE count > 0 ORDER BY name ASC");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$mixshows = $result->fetch_all(MYSQLI_ASSOC);
|
||||
$stmt->close();
|
||||
return $mixshows;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue