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
|
package HTML::FormHandler::Widget::Theme::BootstrapFormMessages;
# ABSTRACT: role to render form messages using Bootstrap styling
use Moose::Role;
sub render_form_messages {
my ( $self, $result ) = @_;
$result ||= $self->result;
my $output = '';
if ( $result->has_form_errors || $result->has_errors ) {
my $alert_error_class = $self->form_messages_alert_error_class;
$output = qq{\n<div class="alert $alert_error_class">};
my $msg = $self->error_message;
$msg ||= 'There were errors in your form';
$msg = $self->_localize($msg);
$output .= qq{\n<span class="error_message">$msg</span>};
$output .= qq{\n<span class="error_message">$_</span>}
for $result->all_form_errors;
$output .= "\n</div>";
}
elsif ( $result->validated ) {
my $msg = $self->success_message;
$msg ||= "Your form was successfully submitted";
$msg = $self->_localize($msg);
$output = qq{\n<div class="alert alert-success">};
$output .= qq{\n<span>$msg</span>};
$output .= "\n</div>";
}
if ( $self->has_info_message && $self->info_message ) {
my $msg = $self->info_message;
$msg = $self->_localize($msg);
$output = qq{\n<div class="alert alert-info">};
$output .= qq{\n<span>$msg</span>};
$output .= "\n</div>";
}
return $output;
}
sub form_messages_alert_error_class { 'alert-error' }
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
HTML::FormHandler::Widget::Theme::BootstrapFormMessages - role to render form messages using Bootstrap styling
=head1 VERSION
version 0.40057
=head1 DESCRIPTION
Role to render form messages using Bootstrap styling.
=head1 NAME
HTML::FormHandler::Widget::Theme::BootstrapFormMessages
=head1 AUTHOR
FormHandler Contributors - see HTML::FormHandler
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Gerda Shank.
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
|