line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTML::FormHandler::Field::Month; |
2
|
|
|
|
|
|
|
# ABSTRACT: select list 1 to 12 |
3
|
|
|
|
|
|
|
$HTML::FormHandler::Field::Month::VERSION = '0.40068'; |
4
|
2
|
|
|
2
|
|
1885
|
use Moose; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
20
|
|
5
|
|
|
|
|
|
|
extends 'HTML::FormHandler::Field::IntRange'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has '+range_start' => ( default => 1 ); |
8
|
|
|
|
|
|
|
has '+range_end' => ( default => 12 ); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
12
|
2
|
|
|
2
|
|
14445
|
use namespace::autoclean; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
24
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__END__ |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=encoding UTF-8 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
HTML::FormHandler::Field::Month - select list 1 to 12 |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 VERSION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
version 0.40068 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Select list for range of 1 to 12. Widget type is 'select' |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 AUTHOR |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
FormHandler Contributors - see HTML::FormHandler |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This software is copyright (c) 2017 by Gerda Shank. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
42
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |