Why I cannot request a used controller's name from the View?
For example, someview.php contains:
<?php
echo Request::$controller;
?>
Kohana shows the error: “ErrorException [ Fatal Error ]: Access to undeclared static property: Request::$controller”
Why? What's wrong?
It is needed for me for doing this:
<?php if (Request::$controller != 'index') { ?>
<a href="/">Example.com</a>
<?php } else { ?>
Example.com
<?php } ?>
Do this instead, on the controller :
Then you can access
$controller
on any view.