NAME
Catalyst::Plugin::ChainedURI - Simple way to get an URL to an action from chained catalyst controller
VERSION
version 0.001
SYNOPSIS
# In the Root controller, for example:
sub base :Chained('/') :PathPart('') :CaptureArgs(1) :StashArg('language') {
my ( $c, $language ) = @_;
...
$c->stash->{language} = $language;
...
}
sub othercapture :Chained('base') :PathPart('') :CaptureArgs(1) { ... }
sub final :Chained('othercapture') :PathPart('') :Args(1) { ... }
# Somewhere
my $uri = $c->u('Root','final',$othercapture_capturearg,$final_arg);
DESCRIPTION
TODO
SUPPORT
IRC
Join #catalyst on irc.perl.org and ask for Getty.
Repository
http://github.com/Getty/p5-catalyst-plugin-chaineduri
Pull request and additional contributors are welcome
Issue Tracker
http://github.com/Getty/p5-catalyst-plugin-chaineduri/issues
AUTHOR
Torsten Raudssus <torsten@raudss.us> http://raudss.us/
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Raudssus Social Software.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.