wishthis/includes/classes/options.php
2022-01-14 16:18:54 +01:00

38 lines
687 B
PHP

<?php
/**
* options.php
*
* Store and retrieve application options.
*
* @author Jay Trees <github.jay@grandel.anonaddy.me>
*/
namespace wishthis;
class Options
{
public bool $updateAvailable = false;
public function __construct(private Database $database)
{
}
public function getOption(string $key): string
{
$value = '';
try {
$option = $this->database->query(
'SELECT * FROM `options`
WHERE `key` = "' . $key . '";'
)->fetch();
$value = $option['value'] ?? '';
} catch (\Throwable $th) {
//throw $th;
}
return $value;
}
}