diff options
Diffstat (limited to 'src/controllers/Config.class.php')
-rw-r--r-- | src/controllers/Config.class.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/controllers/Config.class.php b/src/controllers/Config.class.php deleted file mode 100644 index dc6a884..0000000 --- a/src/controllers/Config.class.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php -require_once('Auth.class.php'); - -Router::register('config', 'Config', 'index'); - -class Config extends Controller { - public function index($routed, $remainder) { - $uid = Login::isLoggedIn(); - if ($uid===false || !Auth::getInstance($uid)->isAdmin()) { - $this->http401($routed, $remainder); - return; - } - - $method = $_SERVER['REQUEST_METHOD']; - switch ($method) { - case 'PUT': $_POST = $_PUT; - case 'POST': - // We're PUTing an updated configuration. - $this->update(); - break; - } - $this->show_index(); - } - private function show_index() { - - } - private function update() { - - } -} |