NAME

Slovo::Plugin::TagHelpers - additional and advanced tag helpers

SYNOPSIS

<%=
select_box
  page_type => [['Regular' => 'обичайна'], ['Root page' => 'коренъ',]],
  required => 1, label => 'Page type'
%>

DESCRIPTION

Slovo::Plugin::TagHelpers extends Mojolicious::Plugin::TagHelpers and implements some additional helpers for form fields. DefaultHelpers and TagHelpers are loaded unconditionally after all other mandatory for Slovo plugins.

HELPERS

The following helpers are currently implemented.

select_box

<%=
select_box
  published => [['for (p)review' => 1], ['no' => 0], ['Yes' => 2]],
  value     => 2,
  label     => 'Published';
%>

<%=
select_box
  colors => [(white green red blue yellow)],
  value     => [qw(white green)],
  label     => 'Favorite colors'
  multiple => undef
%>

This is a wrapper for "select_field" in Mojolicious::Plugin::TagHelpers with additional optional attributes label and value. If label is not provided, the name of the field is used as label. If value is not provided, it is retreived from input $c->every_param($name) by the wrapped select_field. If value is provided it does $c->param($name => $attrs{value}). The generated tags are wrapped in a common span tag with class="field $name".

METHODS

The usual method is implemented.

register

Calls the parent's register if needed and registers additional helpers in Slovo application.

SEE ALSO

Mojolicious::Plugin::TagHelpers, Slovo::Plugin::DefaultHelpers