mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
first refonte
This commit is contained in:
commit
9e9cd47b91
226 changed files with 34307 additions and 0 deletions
29
controllers/internals/Setting.php
Executable file
29
controllers/internals/Setting.php
Executable file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
namespace controllers\internals;
|
||||
|
||||
class Setting extends \InternalController
|
||||
{
|
||||
private $model_setting;
|
||||
|
||||
public function __construct (\PDO $bdd)
|
||||
{
|
||||
$this->model_setting = new \models\Setting($bdd);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return all settings
|
||||
* @return array || false
|
||||
*/
|
||||
public function all ()
|
||||
{
|
||||
return $this->model_setting->all();
|
||||
}
|
||||
|
||||
/**
|
||||
* Update a setting by his name
|
||||
*/
|
||||
public function update (string $name, $value) : boolean
|
||||
{
|
||||
return (bool) $this->model_setting->update($name, $value);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue