mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
48 lines
1.1 KiB
Perl
48 lines
1.1 KiB
Perl
package WebminUI::ConfirmPage;
|
|
use WebminUI::Page;
|
|
use WebminCore;
|
|
@ISA = ( "WebminUI::Page" );
|
|
|
|
=head2 new WebminUI::ConfirmPage(subheading, title, message, cgi, &in, [ok-message],
|
|
[cancel-message], [help-name])
|
|
Create a new page object that asks if the user is sure if he wants to
|
|
do something or not.
|
|
=cut
|
|
sub new
|
|
{
|
|
if (defined(&WebminUI::Theme::ConfirmPage::new)) {
|
|
return new WebminUI::Theme::ConfirmPage(@_[1..$#_]);
|
|
}
|
|
my ($self, $subheading, $title, $message, $cgi, $in, $ok, $cancel, $help) = @_;
|
|
$self = new WebminUI::Page($subheading, $title, $help);
|
|
$self->{'in'} = $in;
|
|
$self->add_message($message);
|
|
my $form = new WebminUI::Form($cgi, "get");
|
|
$form->set_input($in);
|
|
$self->add_form($form);
|
|
foreach my $i (keys %$in) {
|
|
foreach my $v (split(/\0/, $in->{$i})) {
|
|
$form->add_hidden($i, $v);
|
|
}
|
|
}
|
|
$form->add_button(new WebminUI::Submit($ok || "OK", "ui_confirm"));
|
|
$form->add_button(new WebminUI::Submit($cancel || $text{'cancel'}, "ui_cancel"));
|
|
bless($self);
|
|
return $self;
|
|
}
|
|
|
|
sub get_confirm
|
|
{
|
|
my ($self) = @_;
|
|
return $self->{'in'}->{'ui_confirm'} ? 1 : 0;
|
|
}
|
|
|
|
sub get_cancel
|
|
{
|
|
my ($self) = @_;
|
|
return $self->{'in'}->{'ui_cancel'} ? 1 : 0;
|
|
}
|
|
|
|
1;
|
|
|