Help for this page

Select Code to Download


  1. or download this
    display('test', $vars);
    
  2. or download this
    sub display {
    #    my $self = shift;
        my $file = shift;
        my %vars = @_;
    
  3. or download this
    sub display {
        my( $file, $vars ) = @_;
        $template->process("$file.tt", $vars);
    }