NAME
Mojolicious::Plugin::PoweredBy - Powered by plugin
SYNOPSIS
# Mojolicious
$self->plugin('PoweredBy');
$self->plugin(PoweredBy => (name => 'MyApp 1.0'));
# Mojolicious::Lite
plugin 'PoweredBy';
plugin PoweredBy => (name => 'MyApp 1.0');
DESCRIPTION
Mojolicious::Plugin::PoweredBy is a plugin that adds an X-Powered-By
header which defaults to Mojolicious (Perl)
.
This is a core plugin, that means it is always enabled and its code a good example for learning to build new plugins, you're welcome to fork it.
OPTIONS
Mojolicious::Plugin::PoweredBy supports the following options.
name
plugin PoweredBy => (name => 'MyApp 1.0');
Value for X-Powered-By
header, defaults to Mojolicious (Perl)
.
METHODS
Mojolicious::Plugin::PoweredBy inherits all methods from Mojolicious::Plugin and implements the following new ones.
register
$plugin->register(Mojolicious->new);
$plugin->register(Mojolicious->new, {name => 'MyFramework 1.0'});
Register hooks in Mojolicious application.