32 lines
779 B
PHP
32 lines
779 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY'))
|
|
die('Hacking attempt');
|
|
|
|
class Settings {
|
|
public function __construct($debug, $mysqli, $salt) {
|
|
$this->debug = $debug;
|
|
$this->mysqli = $mysqli;
|
|
$this->salt = $salt;
|
|
$this->table = 'settings';
|
|
}
|
|
|
|
public function getValue($name) {
|
|
$query = $this->mysqli->prepare("SELECT value FROM $this->table WHERE setting=? LIMIT 1");
|
|
if ($query) {
|
|
$query->bind_param('s', $name);
|
|
$query->execute();
|
|
$query->bind_result($value);
|
|
$query->fetch();
|
|
$query->close();
|
|
} else {
|
|
$this->debug->append("Failed to fetch variable $name from $this->table");
|
|
return false;
|
|
}
|
|
return $value;
|
|
}
|
|
}
|
|
|
|
$settings = new Settings($debug, $mysqli, SALT);
|