I'm using Kohana 3. Does anyone knows why param('controller') result is NULL.

Routing:

Route::set('default', '(<controller>(/<action>(/<id>)))')
->defaults(array(
    'controller' => 'page',
    'action'     => 'index',
));

URL: http://localhost/application/page/index/1

Params calls:

$param = Request::instance()->param('controller');
echo Kohana::debug($param); //results: NULL
$param = Request::instance()->param('action');
echo Kohana::debug($param); //results: NULL
$param = Request::instance()->param('id');
echo Kohana::debug($param); //results: 1
link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

look up in reqeuest.php on line 622:

// These are accessible as public vars and can be overloaded
unset($params['controller'], $params['action'], $params['directory']);

// Params cannot be changed once matched
$this->_params = $params;

that's why line 695 can't return controller:

public function param($key = NULL, $default = NULL)
{
    return $this->_params[$key];
}

this is how you get the controller $controller = Request::instance()->controller; or $controller = $this->request->controller; if you inside a controller

link|improve this answer
Thanks a lot! Perfect answer .. – Bob0101 Jul 19 '10 at 20:09
Has this changed in Kohana 3.1? :-( – Nic Jul 7 '11 at 11:46
I've answered my question below. ;-) – Nic Jul 7 '11 at 12:00
feedback

For everybody using Kohana 3.1 access the name of the current controller and action like this within a controller:

$this->request->controller()

$this->request->action()

Or if you're not in a controller, you can always access the methods of the current request like this: Request::current()->controller()

See system/classes/kohana/request.php for more methods you can access similarly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.