first refonte

This commit is contained in:
osaajani 2019-10-29 14:57:13 +01:00
commit 9e9cd47b91
226 changed files with 34307 additions and 0 deletions

View 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);
}
}