159 lines
4.2 KiB
Perl
159 lines
4.2 KiB
Perl
package WebGUI::Form::Interval;
|
|
|
|
=head1 LEGAL
|
|
|
|
-------------------------------------------------------------------
|
|
WebGUI is Copyright 2001-2006 Plain Black Corporation.
|
|
-------------------------------------------------------------------
|
|
Please read the legal notices (docs/legal.txt) and the license
|
|
(docs/license.txt) that came with this distribution before using
|
|
this software.
|
|
-------------------------------------------------------------------
|
|
http://www.plainblack.com info@plainblack.com
|
|
-------------------------------------------------------------------
|
|
|
|
=cut
|
|
|
|
use strict;
|
|
use warnings;
|
|
use base qw(WebGUI::Form::Control);
|
|
use Tie::IxHash;
|
|
use WebGUI::Form::SelectBox;
|
|
use WebGUI::Form::Hidden;
|
|
use WebGUI::Form::Integer;
|
|
use WebGUI::International;
|
|
|
|
=head1 NAME
|
|
|
|
Package WebGUI::Form::Interval
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Creates an interval (hours, minutes, seconds, etc) selector.
|
|
|
|
=head1 SEE ALSO
|
|
|
|
This is a subclass of WebGUI::Form::Control.
|
|
|
|
=head1 METHODS
|
|
|
|
The following methods are specifically available from this class. Check the superclass for additional methods.
|
|
|
|
=cut
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 definition ( [ additionalTerms ] )
|
|
|
|
See the super class for additional details.
|
|
|
|
=head3 additionalTerms
|
|
|
|
The following additional parameters have been added via this sub class.
|
|
|
|
=head4 defaultValue
|
|
|
|
A time interval in seconds that is used if value is not specified. Defaults to 1.
|
|
|
|
=head4 profileEnabled
|
|
|
|
Flag that tells the User Profile system that this is a valid form element in a User Profile
|
|
|
|
=cut
|
|
|
|
sub definition {
|
|
my $class = shift;
|
|
my $session = shift;
|
|
my $definition = shift || [];
|
|
my $i18n = WebGUI::International->new($session);
|
|
push(@{$definition}, {
|
|
formName=>{
|
|
defaultValue=>$i18n->get("interval"),
|
|
},
|
|
defaultValue=>{
|
|
defaultValue=>1,
|
|
},
|
|
profileEnabled=>{
|
|
defaultValue=>1
|
|
},
|
|
});
|
|
return $class->SUPER::definition($session, $definition);
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 getValueFromPost ( )
|
|
|
|
Returns either the interval that was posted (in seconds) or if nothing comes back it returns 0.
|
|
|
|
=cut
|
|
|
|
sub getValueFromPost {
|
|
my $self = shift;
|
|
return $self->session->datetime->intervalToSeconds($self->session->form->param($self->get("name")."_interval"),$self->session->form->param($self->get("name")."_units")) || 0;
|
|
}
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 toHtml ( )
|
|
|
|
Renders an interval control.
|
|
|
|
=cut
|
|
|
|
sub toHtml {
|
|
my $self = shift;
|
|
my %units;
|
|
tie %units, 'Tie::IxHash';
|
|
my $i18n = WebGUI::International->new($self->session);
|
|
%units = ('seconds'=>$i18n->get(704),
|
|
'minutes'=>$i18n->get(705),
|
|
'hours'=>$i18n->get(706),
|
|
'days'=>$i18n->get(700),
|
|
'weeks'=>$i18n->get(701),
|
|
'months'=>$i18n->get(702),
|
|
'years'=>$i18n->get(703));
|
|
my ($interval, $units) = $self->session->datetime->secondsToInterval($self->get("value"));
|
|
# not sure why, but these things need to be defined like this or
|
|
# they fail under some circumstnaces
|
|
my $cmd = "WebGUI::Form::Integer";
|
|
my $out = $cmd->new($self->session,
|
|
name=>$self->get("name")."_interval",
|
|
value=>$interval,
|
|
extras=>$self->get("extras"),
|
|
id=>$self->get('id')."_interval",
|
|
)->toHtml;
|
|
$cmd = "WebGUI::Form::SelectBox";
|
|
$out .= $cmd->new($self->session,
|
|
options=>\%units,
|
|
name=>$self->get("name")."_units",
|
|
id=>$self->get('id')."_units",
|
|
value=>[$units]
|
|
)->toHtml;
|
|
return $out;
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------
|
|
|
|
=head2 toHtmlAsHidden ( )
|
|
|
|
Returns the field as hidden controls rather than displayable controls.
|
|
|
|
=cut
|
|
|
|
sub toHtmlAsHidden {
|
|
my $self = shift;
|
|
my ($interval, $units) = $self->session->datetime->secondsToInterval($self->get("value"));
|
|
return WebGUI::Form::Hidden->new($self->session,
|
|
name=>$self->get("name").'_interval',
|
|
value=>$interval
|
|
)->toHtmlAsHidden
|
|
.WebGUI::Form::Hidden->new($self->session,
|
|
name=>$self->get("name").'_units',
|
|
value=>$units
|
|
)->toHtmlAsHidden;
|
|
}
|
|
|
|
1;
|
|
|