Mojolicious::Plugin.3pm

Langue: en

Version: 2010-08-12 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Mojolicious::Plugin - Plugin Base Class

SYNOPSIS

     use base 'Mojolicious::Plugin';
 
 

DESCRIPTION

Mojolicous::Plugin is an abstract base class for Mojolicious plugins. See Mojolicious::Plugins for more information.

METHODS

Mojolicious::Plugin inherits all methods from Mojo::Base and implements the following new ones.

register

     $plugin->register;
 
 

This method will be called by Mojolicious::Plugins at startup time, your plugin should use this to hook into the application. For instace by adding handlers and helpers to the renderer or using the "add_hooks" method of Mojolicious::Plugins to hook into the request flow.

SEE ALSO

Mojolicious, Mojolicious::Guides, <http://mojolicious.org>.