logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catalyst::View::Component::SubInclude::SubRequest - Sub-requests plugin for C::V::Component::SubInclude

Author

       Nilson Santos Figueiredo Junior, "<nilsonsfj at cpan.org>"

Description

       "Catalyst::View::Component::SubInclude::SubRequest" uses Catalyst sub-requests to render the subinclude
       contents.

       It requires Catalyst::Plugin::SubRequest.

Methods

"generate_subinclude($c,$path,@args)"
       This will make a sub-request call to the action specified by $path. Note that $path should be the private
       action path - translation to the public path is handled internally.

       So, after path translation, the call will be (roughly) equivalent to:

         $c->sub_request( $translated_path, {}, @args );

       Notice that the stash will always be empty. This behavior could be configurable in the future through an
       additional switch - for now, this behavior guarantees a common interface for all plugins.

Name

       Catalyst::View::Component::SubInclude::SubRequest - Sub-requests plugin for C::V::Component::SubInclude

See Also

       Catalyst::View::Component::SubInclude, Catalyst::Plugin::SubRequest

Sponsorship

       Development sponsored by Ionzero LLC <http://www.ionzero.com/>.

Synopsis

       In your application class:

         package MyApp;

         use Catalyst qw/
           ConfigLoader
           Static::Simple
           ...
           SubRequest
         /;

       In your view class:

         package MyApp::View::TT;
         use Moose;

         extends 'Catalyst::View::TT';
         with 'Catalyst::View::Component::SubInclude';

         __PACKAGE__->config( subinclude_plugin => 'SubRequest' );

       Then, somewhere in your templates:

         [% subinclude('/my/widget') %]

Version

       Version 0.07_03

See Also