NAME
Tags::HTML::Element::Select - Tags helper for HTML select element.
SYNOPSIS
use Tags::HTML::Element::Select;
my $obj = Tags::HTML::Element::Select->new(%params);
$obj->cleanup;
$obj->init($select);
$obj->prepare;
$obj->process;
$obj->process_css;
METHODS
new
my $obj = Tags::HTML::Element::Select->new(%params);
Constructor.
css
'CSS::Struct::Output' object for process_css processing.
Default value is undef.
tags
'Tags::Output' object.
Default value is undef.
cleanup
$obj->cleanup;
Process cleanup after page run.
In this case cleanup internal representation of a set by init.
Returns undef.
init
$obj->init($select);
Process initialization in page run.
Accepted $select
is Data::HTML::Element::Select.
Returns undef.
prepare
$obj->prepare;
Process initialization before page run.
Do nothing in this object.
Returns undef.
process
$obj->process;
Process Tags structure for HTML select element to output.
Do nothing in case without inicialization by init.
Returns undef.
process_css
$obj->process_css;
Process CSS::Struct structure for HTML select element to output.
Do nothing in case without inicialization by init.
Returns undef.
ERRORS
new():
From Tags::HTML::new():
Parameter 'css' must be a 'CSS::Struct::Output::*' class.
Parameter 'tags' must be a 'Tags::Output::*' class.
init():
Select object must be a 'Data::HTML::Element::Select' instance.
process():
From Tags::HTML::process():
Parameter 'tags' isn't defined.
process_css():
From Tags::HTML::process_css():
Parameter 'css' isn't defined.
EXAMPLE
use strict;
use warnings;
use CSS::Struct::Output::Indent;
use Data::HTML::Element::Select;
use Tags::HTML::Element::Select;
use Tags::Output::Indent;
# Object.
my $css = CSS::Struct::Output::Indent->new;
my $tags = Tags::Output::Indent->new(
'xml' => 1,
);
my $obj = Tags::HTML::Element::Select->new(
'css' => $css,
'tags' => $tags,
);
# Data object for select.
my $select = Data::HTML::Element::Select->new(
'css_class' => 'form-select',
);
# Initialize.
$obj->init($select);
# Process select.
$obj->process;
$obj->process_css;
# Print out.
print "HTML:\n";
print $tags->flush;
print "\n\n";
print "CSS:\n";
print $css->flush;
# Output:
# HTML:
# <select class="form-select" />
#
# CSS:
# select.form-select {
# width: 100%;
# padding: 12px 20px;
# margin: 8px 0;
# display: inline-block;
# border: 1px solid #ccc;
# border-radius: 4px;
# box-sizing: border-box;
# }
DEPENDENCIES
Class::Utils, Error::Pure, Scalar::Util, Tags::HTML, Tags::HTML::Element::Option.
REPOSITORY
https://github.com/michal-josef-spacek/Tags-HTML-Element
AUTHOR
Michal Josef Špaček mailto:skim@cpan.org
LICENSE AND COPYRIGHT
© 2022-2024 Michal Josef Špaček
BSD 2-Clause License
VERSION
0.15