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

Response Base - Base object for view plugins

SYNOPSIS

use myResponse; my $response = myResponse->new($mungo);

package myResponse; use base ("CGI::Mungo::Response::Base");

DESCRIPTION

This object should not be used directly, a new class should be created which inherits this one istead.

All response plugins should override at least the display() method.

The module CGI::Mungo::Response will load the specified respomse plugin on script startup.

METHODS