NAME
WebNano::DirController - WebNano controller class for root
VERSION
version 0.002
SYNOPSIS
use base WebNano::DirController;
DESCRIPTION
This is the WebNano pass through base controller - used for root controllers and all other controllers that have sub-controllers.
In a path /SomeDeepController/OtherController/LeaveController/method
all MyApp::Controoler
, MyApp::Controller::SomeDeepController
and MyApp::Controller::SomeDeepController::OtherController
need to be DirControllers.
If there is no suitable method in the current class, child controller classes are tried out. If there is found one that matches the path part then it is instantiated with the current psgi env and it's handle method is called.
METHODS
handle
AUTHOR
Zbigniew Lukasiak <zby@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Zbigniew Lukasiak <zby@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.