Various new features.
This commit is contained in:
parent
ad68f515e0
commit
36e6e23a68
14 changed files with 437 additions and 523 deletions
51
classes/DJs.php
Normal file
51
classes/DJs.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
|
||||
class DJs
|
||||
{
|
||||
|
||||
private $db;
|
||||
private $djs = [];
|
||||
|
||||
public function __construct($db)
|
||||
{
|
||||
|
||||
$this->db = $db;
|
||||
if (!$this->load_all_djs()) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private function load_all_djs(): bool
|
||||
{
|
||||
$djs = $this->get_all_djs();
|
||||
if ($djs) {
|
||||
$this->djs = $djs;
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function get_all_djs($order = "ASC")
|
||||
{
|
||||
$stmt = $this->db->prepare("SELECT * FROM djs ORDER BY name $order");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$djs = $result->fetch_all(MYSQLI_ASSOC);
|
||||
$stmt->close();
|
||||
return $djs;
|
||||
}
|
||||
|
||||
public function get_nonzero_djs($order = "ASC")
|
||||
{
|
||||
$stmt = $this->db->prepare("SELECT * FROM djs WHERE count > 0 ORDER BY name $order");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$djs = $result->fetch_all(MYSQLI_ASSOC);
|
||||
$stmt->close();
|
||||
return $djs;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue