Scroll to navigation

Mojolicious::Plugin::Charset(3pm) User Contributed Perl Documentation Mojolicious::Plugin::Charset(3pm)

NAME

Mojolicious::Plugin::Charset - Charset plugin

SYNOPSIS

  # Mojolicious
  $self->plugin(Charset => {charset => 'Shift_JIS'});
  # Mojolicious::Lite
  plugin Charset => {charset => 'Shift_JIS'};

DESCRIPTION

Mojolicious::Plugin::Charset is a plugin to easily set the default charset and encoding on all layers of Mojolicious.
The code of this plugin is a good example for learning to build new plugins, you're welcome to fork it.

OPTIONS

Mojolicious::Plugin::Charset supports the following options.

"charset"

  # Mojolicious::Lite
  plugin Charset => {charset => 'Shift_JIS'};
Application charset.

METHODS

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

"register"

  $plugin->register($app, $conf);
Register plugin hooks in Mojolicious application.

SEE ALSO

Mojolicious, Mojolicious::Guides, <http://mojolicio.us>.
2012-09-05 perl v5.14.2