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

Mojolicious::Plugin - Plugin base class

SYNOPSIS

# Camel case plugin name
package Mojolicious::Plugin::MyPlugin;
use Mojo::Base 'Mojolicious::Plugin';

sub register {
  my ($self, $app, $conf) = @_;

  # Magic here! :)
}

DESCRIPTION

Mojolicious::Plugin is an abstract base class for Mojolicious plugins.

METHODS

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

register

$plugin->register(Mojolicious->new);
$plugin->register(Mojolicious->new, {foo => 'bar'});

This method will be called by Mojolicious::Plugins at startup time. Meant to be overloaded in a subclass.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicio.us.