mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
48 lines
970 B
Perl
48 lines
970 B
Perl
package WebminUI::JavascriptButton;
|
|
use WebminUI::Input;
|
|
use WebminCore;
|
|
@ISA = ( "WebminUI::Input" );
|
|
|
|
=head2 new WebminUI::JavascriptButton(label, script, [disabled])
|
|
Create a button that runs some Javascript when clicked
|
|
=cut
|
|
sub new
|
|
{
|
|
if (defined(&WebminUI::Theme::JavascriptButton::new) &&
|
|
caller() !~ /WebminUI::Theme::JavascriptButton/) {
|
|
return new WebminUI::Theme::JavascriptButton(@_[1..$#_]);
|
|
}
|
|
my ($self, $value, $script, $disabled) = @_;
|
|
$self = { };
|
|
bless($self);
|
|
$self->set_value($value);
|
|
$self->set_script($script);
|
|
$self->set_disabled($disabled) if ($disabled);
|
|
return $self;
|
|
}
|
|
|
|
=head2 html()
|
|
Returns the HTML for this text input
|
|
=cut
|
|
sub html
|
|
{
|
|
my ($self) = @_;
|
|
return "<input type=button value=\""."e_escape($self->get_value())."\" ".
|
|
"onClick=\"".$self->get_script()."\">";
|
|
}
|
|
|
|
sub set_script
|
|
{
|
|
my ($self, $script) = @_;
|
|
$self->{'script'} = $script;
|
|
}
|
|
|
|
sub get_script
|
|
{
|
|
my ($self) = @_;
|
|
return $self->{'script'};
|
|
}
|
|
|
|
1;
|
|
|