Merge branch 'route_modified'

This commit is contained in:
Alexander Demidov
2012-05-25 19:31:18 +04:00
4 changed files with 102 additions and 11 deletions

View File

@ -54,6 +54,11 @@ class Route
return true;
}
public function getUri()
{
return '/' . $this->route;
}
public function getAction()
{

View File

@ -13,16 +13,16 @@ class Router
{
protected $routes = array();
protected $route_name;
protected $default_layout = 'Default';
/**
* @var Route
*/
protected $route;
public function add($name, $route, $action, $params = array(), $layout = null)
{
if (!$layout) {
@ -30,11 +30,11 @@ class Router
}
$this->routes[$name] = new Route($route, $action, $params, $layout);
}
public function route($request)
{
$req = explode('/', trim($request, '/'));
foreach ($this->routes as $name => $route) {
if ($route->match($req)) {
$this->route_name = $name;
@ -45,22 +45,50 @@ class Router
}
return false;
}
public function setDefaultLayout($layout = 'Default')
{
$this->default_layout = $layout;
}
public function getRouteName()
{
return $this->route_name;
}
/**
* @param null|string $name
* @return Route
* @throws ErrorException
*/
public function getRoute($name = null)
{
if (is_null($name)) {
return $this->route;
} else {
if ($this->routeIsExists($name)) {
return $this->getRouteByName($name);
} else {
throw new ErrorException('Unknown route name: "' . $name . '".');
}
}
}
/**
* @param string $name
* @return bool
*/
public function routeIsExists($name)
{
return array_key_exists($name, $this->routes);
}
/**
* @param string $name
* @return Route
*/
public function getRoute()
protected function getRouteByName($name)
{
return $this->route;
return $this->routes[$name];
}
}