The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

OpenInteract2::ContentGenerator::TT2Context - Provide a custom context for templates in OpenInteract

SYNOPSIS

    # In OpenInteract2::ContentGenerator::TT2Process->initialize()

    $Template::Config::CONTEXT = 'OpenInteract2::ContentGenerator::TT2Context';
    my $template = Template->new( ... );
    my ( $output );
    $template->process( 'package::template', \%params, \$output );

DESCRIPTION

Kind of a hack -- remove the TT check for prefixes when serving up templates since it uses '::' as a delimiter. Everything else about the TT context is the same.

METHODS

template( $name )

Override the method from Template::Context and replicate its functionality, except the check for a template prefix is removed.

BUGS

None known.

TO DO

Nothing known.

SEE ALSO

Template::Context

COPYRIGHT

Copyright (c) 2001-2003 Chris Winters. All rights reserved.

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

AUTHORS

Chris Winters <chris@cwinters.com>