Scroll to navigation

HTML::Template::Compiled::Formatter(3pm) User Contributed Perl Documentation HTML::Template::Compiled::Formatter(3pm)

NAME

HTML::Template::Compiled::Formatter - HTC subclass for using a formatter

SYNOPSIS

    my $formatter = {
        'HTC::Class1' => {
            fullname => sub {
                $_[0]->first . ' ' . $_[0]->last
            },
            first => HTC::Class1->can('first'),
            last => HTC::Class1->can('last'),
        },
    };
    my $htc = HTML::Template::Compiled::Formatter->new(
        path => 't/templates',
        filename => 'formatter.htc',
        debug => 0,
    );
    my $obj = bless ({ first => 'Abi', last => 'Gail'}, 'HTC::Class1');
    $htc->param(
        test => 23,
        obj => $obj,
    );
    local $HTML::Template::Compiled::Formatter::formatter = $formatter;
    my $out = $htc->output;
2022-06-14 perl v5.34.0