source: trunk/LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web/View/TT.pm @ 1532

Last change on this file since 1532 was 1326, checked in by nanardon, 9 years ago

Utiliser un wrapper plutôt que PRE/POST_PROCESS

File size: 690 bytes
Line 
1package LATMOS::Accounts::Web::View::TT;
2
3use strict;
4use base 'Catalyst::View::TT';
5use LATMOS::Accounts::Web;
6
7__PACKAGE__->config(
8    TEMPLATE_EXTENSION => '.tt',
9    INCLUDE_PATH => [
10        LATMOS::Accounts::Web->path_to( 'root', 'html' ),
11    ],
12    PRE_PROCESS  => 'includes/defs.tt',
13    WRAPPER      => 'includes/wrapper.tt',
14);
15
16=head1 NAME
17
18LATMOS::Accounts::Web::View::TT - TT View for LATMOS::Accounts::Web
19
20=head1 DESCRIPTION
21
22TT View for LATMOS::Accounts::Web.
23
24=head1 SEE ALSO
25
26L<LATMOS::Accounts::Web>
27
28=head1 AUTHOR
29
30Thauvin Olivier
31
32=head1 LICENSE
33
34This library is free software, you can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37=cut
38
391;
Note: See TracBrowser for help on using the repository browser.