Mojolicious::Plugin::TagHelpersExtra - Extra Tag Helpers Plugin
# Mojolicious
$self->plugin('tag_helpers_extra');
# Mojolicious::Lite
plugin 'tag_helpers_extra';
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.
- link_to_here
-
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.
Mojolicious::Plugin::TagHelpers, Mojolicious, Mojolicious::Guides, http://mojolicious.org.