Thread CGI::Aplication mit html::template verknüpfen: CGI::Aplication und html::template (7 answers)
Opened by Gast at 2007-06-07 22:07

renee
 2007-06-07 23:19
#144 #144
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
ja...

Du solltest die load_tmpl-Funktion von CPAN:CGI::Application verwenden...

Template:[html]<html><body>
<h2><TMPL_VAR NAME=SEITE></h2>
<a href="skript.cgi?rm=seite3">Seite 3</a><br />
<a href="skript.cgi?rm=seite4">Seite 4</a></body></html>[/html]

Skript:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/perl

use strict;
use warnings;
use base qw(CGI::Application);

sub setup{
    my ($self) = @_;

    $self->start_mode( 'seite1' );
    $self->mode_param( 'rm' );
    $self->run_modes(
        AUTOLOAD => \&seite1,
        seite1 => \&seite1,
        seite3 => \&seite3,
        seite4 => \&seite4,
    );
}

sub seite1{
    my ($self) = @_;

    my $tmpl = $self->load_tmpl( 'template.tmpl' );
    $tmpl->param( SEITE => 'Seite 1' );
    return $tmpl->output;
}

sub seite3{
    my ($self) = @_;
    my $tmpl = $self->load_tmpl( 'template.tmpl' );
    $tmpl->param( SEITE => 'Seite 1' );
    return $tmpl->output;
}

sub seite4{
    my ($self) = @_;

    my $tmpl = $self->load_tmpl( 'template.tmpl' );
    $tmpl->param( SEITE => 'Seite 4' );
    return $tmpl->output;
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread CGI::Aplication mit html::template verknüpfen: CGI::Aplication und html::template