1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
use strict;
package HTML::FormFu::Element::ContentButton;
$HTML::FormFu::Element::ContentButton::VERSION = '2.07';
# ABSTRACT: Button form field containing markup
use Moose;
use MooseX::Attribute::Chained;
extends "HTML::FormFu::Element";
with 'HTML::FormFu::Role::Element::Field',
'HTML::FormFu::Role::Element::SingleValueField';
use HTML::FormFu::Util qw( xml_escape process_attrs );
__PACKAGE__->mk_output_accessors(qw( content ));
has field_type => (
is => 'rw',
default => 'button',
lazy => 1,
traits => ['Chained'],
);
after BUILD => sub {
my ( $self, $args ) = @_;
$self->layout_field_filename('field_layout_contentbutton_field');
return;
};
sub render_data_non_recursive {
my ( $self, $args ) = @_;
my $render = $self->SUPER::render_data_non_recursive(
{ field_type => $self->field_type,
content => xml_escape( $self->content ),
$args ? %$args : (),
} );
return $render;
}
sub _string_field {
my ( $self, $render ) = @_;
# content_button template
my $html .= sprintf qq{<button name="%s" type="%s"},
$render->{nested_name},
$render->{field_type},
;
if ( defined $render->{value} ) {
$html .= sprintf qq{ value="%s"}, $render->{value};
}
$html .= sprintf "%s>%s</button>",
process_attrs( $render->{attributes} ),
( defined $render->{content} ? $render->{content} : '' ),
;
return $html;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
HTML::FormFu::Element::ContentButton - Button form field containing markup
=head1 VERSION
version 2.07
=head1 SYNOPSIS
---
elements:
type: ContentButton
name: foo
content: '<img href="/foo.png" />'
field_type: Submit
=head1 DESCRIPTION
content_button form field, rendered using provided markup.
=head1 METHODS
=head2 content
=head2 field_type
=head1 SEE ALSO
Is a sub-class of, and inherits methods from
L<HTML::FormFu::Role::Element::Field>,
L<HTML::FormFu::Element>
L<HTML::FormFu>
=head1 AUTHOR
Carl Franks, C<cfranks@cpan.org>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=head1 AUTHOR
Carl Franks <cpan@fireartist.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Carl Franks.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|