CatalystX::CRUD::YUI::TT - templates for your CatalystX::CRUD view


CatalystX-CRUD-YUI documentation Contained in the CatalystX-CRUD-YUI distribution.

Index


Code Index:

NAME

Top

CatalystX::CRUD::YUI::TT - templates for your CatalystX::CRUD view

SYNOPSIS

Top

 use CatalystX::CRUD::YUI::TT;

 # in a template
 [% foo.as_json %]
 [% foo.dump_data %]
 [% foo.dump_stderr %]
 [% SET foo = 1;
    foo.increment;   # foo == 2
    foo.decrement;   # foo == 1
 %]

DESCRIPTION

Top

CatalystX::CRUD::YUI::TT adds some convenience virtual methods to the Template::Stash namespace.

As of version 0.007 this is just a wrapper around Template::Plugin::Handy.

AUTHOR

Top

Peter Karman, <karman@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-catalystx-crud-yui@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Top

The Minnesota Supercomputing Institute http://www.msi.umn.edu/ sponsored the development of this software.

COPYRIGHT & LICENSE

Top


CatalystX-CRUD-YUI documentation Contained in the CatalystX-CRUD-YUI distribution.
package CatalystX::CRUD::YUI::TT;

use warnings;
use strict;
use Template::Plugin::Handy 'install';

our $VERSION = '0.025';

1;

__END__