Is this request the main request?

', Kohana::debug($this->request === Request::$instance); echo '

What is the URI of the main request?

', Kohana::debug(Request::$instance->uri); echo '

What is the URI of this request?

', Kohana::debug($this->request->uri); } public function action_globals() { echo '

What is the request method?

', Kohana::debug(Request::$method); echo '

What is the request referrer?

', Kohana::debug(Request::$referrer); echo '

Is this an AJAX request?

', Kohana::debug(Request::$is_ajax); } }