dj_mix_hosting_software/classes/DJs.php
Cody Cook 70c8a87e15
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 30s
Changes.
2024-05-19 20:01:13 -07:00

53 lines
1.1 KiB
PHP

<?php
namespace DJMixHosting;
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;
}
}