bundle property wasn't being used, so I made use of it as well as adding the controllers name and action being called.

This commit is contained in:
Daniel Petrie 2012-05-09 17:06:04 -07:00
parent 3a62036a9c
commit b6cbac56c8
1 changed files with 18 additions and 0 deletions

View File

@ -26,6 +26,20 @@ abstract class Controller {
*/
public $bundle;
/**
* The controllers name
*
* @var string
*/
public $name;
/**
* The controllers action
*
* @var string
*/
public $action;
/**
* Indicates if the controller uses RESTful routing.
*
@ -144,6 +158,10 @@ public static function call($destination, $parameters = array())
$controller = static::resolve($bundle, $controller);
$controller->bundle = $bundle;
$controller->name = $controller_name;
$controller->action = $method;
// If the controller could not be resolved, we're out of options and
// will return the 404 error response. If we found the controller,
// we can execute the requested method on the instance.