Help for this page

Select Code to Download


  1. or download this
    index.pl
    #!/usr/bin/perl
    use MyTestApp;
    my $menu = MyTestApp->new(PARAMS => { cfg_file => 'menu.conf' });
    $menu->run();
    
  2. or download this
    MyTestApp.pm
    package MyTestApp;
    ...
        $self->session->flush if $self->session_loaded;
    }
    1;