NAME

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

VERSION

Version 0.01

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') %]

DESCRIPTION

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

It requires Catalyst::Plugin::SubRequest.

CLASS METHODS

generate_subinclude( $c, $path, @args )

This will translate to the following sub-request call:

$c->sub_request( $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 plugins.

SEE ALSO

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

AUTHOR

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

SPONSORSHIP

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

COPYRIGHT & LICENSE

Copyright (C) 2009 Nilson Santos Figueiredo Junior.

Copyright (C) 2009 Ionzero LLC.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.