Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 1.52 KB

File metadata and controls

60 lines (38 loc) · 1.52 KB

NAME

Mojolicious::Plugin::TagHelpersExtra - Extra Tag Helpers Plugin

SYNOPSIS

# Mojolicious
$self->plugin('tag_helpers_extra');

# Mojolicious::Lite
plugin 'tag_helpers_extra';

DESCRIPTION

Mojolicous::Plugin::TagHelpersExtra is a collection of additional HTML5 tag helpers for Mojolicious. Note that this module hopes to be sublimated into Mojolicous::Plugin::TagHelpers without warning!

See "Plugin/TagHelpersExtra" in Mojolicious for documentation.

Helpers

Generates a link to the current request URL, including any GET query parameters, and allows addition/deletion/modification of said parameters.

check_box_x

Generates a checkbox input element with value, and parse parameters according to multiple choices. The attribute 'checked' can be used to set a default value for the form, to be overruled if a parameter of the same name is set.

radio_x

Generates a radio button input element with value and parse parameters accoring to multiple choices. The attribute 'checked' can be used to set a default value for the form, to be overruled if a parameter of the same name is set.

table

Generates a table from a reference to an array of array rows, or, alternatively, an array ref generating subroutine reference specified in the sub attribute. Headers, footers, attributes and captions are supported.

SEE ALSO

Mojolicious::Plugin::TagHelpers, Mojolicious, Mojolicious::Guides, http://mojolicious.org.