Lines 73-78
sub _get_chunk {
Link Here
|
73 |
|
73 |
|
74 |
if ( $options{'class'} && $options{'class'} eq 'password' ) { |
74 |
if ( $options{'class'} && $options{'class'} eq 'password' ) { |
75 |
$chunk->{'input_type'} = 'password'; |
75 |
$chunk->{'input_type'} = 'password'; |
|
|
76 |
} elsif ( $options{'class'} && $options{'class'} eq 'email' ) { |
77 |
$chunk->{'input_type'} = 'email'; |
76 |
} elsif ( $options{'class'} && $options{'class'} eq 'date' ) { |
78 |
} elsif ( $options{'class'} && $options{'class'} eq 'date' ) { |
77 |
$chunk->{'dateinput'} = 1; |
79 |
$chunk->{'dateinput'} = 1; |
78 |
} elsif ( $options{'type'} && ( $options{'type'} eq 'opac-languages' || $options{'type'} eq 'staff-languages' ) ) { |
80 |
} elsif ( $options{'type'} && ( $options{'type'} eq 'opac-languages' || $options{'type'} eq 'staff-languages' ) ) { |
79 |
- |
|
|