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::Visit - visit() plugin for C::V::Component::SubInclude

Author

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

Description

       "Catalyst::View::Component::SubInclude::Visit" uses "$c->visit()" to render subinclude contents.

       This method is only supported when using Catalyst version 5.71000 or newer.

       WARNING:AsofCatalystversion5.71000,thisplugindoesn'tworkforchainedactionswithcapturedarguments. Apparently, "visit" doesn't handle this type of actions yet.

Methods

"generate_subinclude($c,$path,@args)"
       This is (roughly) equivalent to the following call:

         $c->visit( $path, @args );

       But it will handle all the nasty details such as localizing the stash, parameters and response body. This
       is necessary to keep behavior consistent with the other plugins.

Name

       Catalyst::View::Component::SubInclude::Visit - visit() plugin for C::V::Component::SubInclude

See Also

       Catalyst::View::Component::SubInclude, Catalyst

Sponsorship

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

Synopsis

       In your view class:

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

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

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

       Then, somewhere in your templates:

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

Version

       Version 0.07_03

See Also