summaryrefslogtreecommitdiff
path: root/core/router.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-05-22 12:28:28 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-05-22 12:28:28 -0400
commit2230dd4e6b148346c0ec596b9e3e12996a762ed8 (patch)
treeef99ccde4f8b18592a3fb06a6ec45162c501fe38 /core/router.php
parenta750b8ab2a0cb715da6fd9025a7ec8375db68a4d (diff)
Code refactoring (add autoloader and change files organization)
Diffstat (limited to 'core/router.php')
-rw-r--r--core/router.php66
1 files changed, 0 insertions, 66 deletions
diff --git a/core/router.php b/core/router.php
deleted file mode 100644
index 56a95e52..00000000
--- a/core/router.php
+++ /dev/null
@@ -1,66 +0,0 @@
-<?php
-
-namespace Core;
-
-require __DIR__.'/request.php';
-require __DIR__.'/response.php';
-require __DIR__.'/session.php';
-require __DIR__.'/template.php';
-
-class Router
-{
- private $controller = '';
- private $action = '';
- private $registry;
-
- public function __construct(Registry $registry, $controller = '', $action = '')
- {
- $this->registry = $registry;
- $this->controller = empty($_GET['controller']) ? $controller : $_GET['controller'];
- $this->action = empty($_GET['action']) ? $controller : $_GET['action'];
- }
-
- /**
- * @param string $default_value
- */
- public function sanitize($value, $default_value)
- {
- return ! ctype_alpha($value) || empty($value) ? $default_value : strtolower($value);
- }
-
- /**
- * @param string $filename
- * @param string $class
- */
- public function load($filename, $class, $method)
- {
- if (file_exists($filename)) {
-
- require $filename;
-
- if (! method_exists($class, $method)) return false;
-
- $instance = new $class($this->registry);
- $instance->request = new Request;
- $instance->response = new Response;
- $instance->session = new Session;
- $instance->template = new Template;
- $instance->beforeAction($this->controller, $this->action);
- $instance->$method();
-
- return true;
- }
-
- return false;
- }
-
- public function execute()
- {
- $this->controller = $this->sanitize($this->controller, 'app');
- $this->action = $this->sanitize($this->action, 'index');
-
- if (! $this->load('controllers/'.$this->controller.'.php', '\Controller\\'.$this->controller, $this->action)) {
- die('Page not found!');
- }
- }
-}