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

Apache2::WebApp::Plugin - Base class for WebApp Toolkit plugins

SYNOPSIS

  my $obj = $c->plugin('Name')->method( ... );     # Apache2::WebApp::Plugin::Name->method

    or

  $c->plugin('Name')->method( ... );

DESCRIPTION

A simple mechanism for loading WebApp Toolkit plugins.

PLUGINS

There are many plugins that provide additional functionality to your web application.

Apache2::WebApp::Plugin::CGI - Common methods for dealing with user input.

Apache2::WebApp::Plugin::Cookie - Common methods for manipulating web browser cookies.

Apache2::WebApp::Plugin::DBI - Database interface wrapper.

Apache2::WebApp::Plugin::DateTime - Date/Time methods.

Apache2::WebApp::Plugin::Filters - Data/Text filtering methods.

Apache2::WebApp::Plugin::JSON - JSON module wrapper.

Apache2::WebApp::Plugin::Mail - E-mail parsing and message sending methods.

Apache2::WebApp::Plugin::Memcached - Cache::Memcached module wrapper.

Apache2::WebApp::Plugin::Session - Session handling methods.

Apache2::WebApp::Plugin::Validate - Form field validation methods.

INSTALLATION

Perl one liner using CPAN.pm:

  perl -MCPAN -e 'install Apache2::WebApp::Plugin::Name'

Use of CPAN.pm in interactive mode:

  $> perl -MCPAN -e shell
  cpan> install Apache2::WebApp::Plugin::Name
  cpan> quit

Just like the manual installation of perl modules, the user may need root access during this process to insure write permission is allowed within the intstallation directory.

SEE ALSO

Apache2::WebApp

AUTHOR

Marc S. Brooks, <mbrooks@cpan.org> http://mbrooks.info

COPYRIGHT

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

See http://www.perl.com/perl/misc/Artistic.html