CatalystX::Features::View::TT - Makes View::TT handle features.


CatalystX-Features documentation  | view source Contained in the CatalystX-Features distribution.

Index


NAME

Top

CatalystX::Features::View::TT - Makes View::TT handle features.

VERSION

Top

version 0.20

SYNOPSIS

Top

	package MyApp::View::TT;
	use base 'CatalystX::Features::View::TT';

    __PACKAGE__->config(
        TEMPLATE_EXTENSION => '.tt',
        root               => TestApp->path_to('root'),
        INCLUDE_PATH       => [ TestApp->path_to( 'root', 'src' ), ],
    );

DESCRIPTION

Top

Use this base class to make View::TT support TT in your features.

This class will modify INCLUDE_PATH, adding the /root dir of each feature in the app.

CONFIG

Top

tt_prefix

Appended to the feature /root dir.

	<CatalystX::Features>
		<simple.feature>
			tt_prefix src
			tt_prefix more
		</simple.feature>
	</CatalystX::Features>

AUTHORS

Top

	Rodrigo de Oliveira (rodrigolive), C<rodrigolive@gmail.com>

LICENSE

Top

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.


CatalystX-Features documentation  | view source Contained in the CatalystX-Features distribution.