Private
Server IP : 195.201.23.43  /  Your IP : 3.137.214.24
Web Server : Apache
System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64
User : kdecoratie ( 1041)
PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/webmin/bacula-backup/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/webmin/bacula-backup/edit_schedule.cgi
#!/usr/bin/perl
# Show the details of one schedule

require './bacula-backup-lib.pl';
&ReadParse();
$conf = &get_director_config();
@schedules = &find("Schedule", $conf);
if ($in{'new'}) {
	&ui_print_header(undef, $text{'schedule_title1'}, "");
	$mems = [ ];
	$schedule = { };
	}
else {
	&ui_print_header(undef, $text{'schedule_title2'}, "");
	$schedule = &find_by("Name", $in{'name'}, \@schedules);
	$schedule || &error($text{'schedule_egone'});
	$mems = $schedule->{'members'};
	}

# Show details
print &ui_form_start("save_schedule.cgi", "post");
print &ui_hidden("new", $in{'new'}),"\n";
print &ui_hidden("old", $in{'name'}),"\n";
print &ui_table_start($text{'schedule_header'}, "width=100%", 4);

# Schedule
print &ui_table_row($text{'schedule_name'},
	    &ui_textbox("name", $name=&find_value("Name", $mems), 40), 3);

# Run files
@runs = &find_value("Run", $schedule->{'members'});
@pools = &find("Pool", $conf);
&sort_by_name(\@pools);
$rtable = &ui_columns_start([ $text{'schedule_level'},
			      $text{'schedule_pool'},
			      $text{'schedule_times'} ], "width=100%");
$i = 0;
foreach $r (@runs, undef, undef, undef) {
	# Parse out the level and pool
	$tags = { };
	if ($r) {
		($tags, $r) = &extract_schedule($r);
		}
	$sched = &parse_schedule($r);
	$rtable .= &ui_columns_row([
		&ui_select("level_$i", $tags->{'Level'},
			   [ [ "", " " ], [ "Full" ],
			     [ "Incremental" ], [ "Differential" ] ],
			   1, 0, 1),
		&ui_select("pool_$i", $tags->{'Pool'},
			   [ [ "", "<$text{'default'}>" ],
			     map { my $pn = &find_value("Name",
					$_->{'members'}); [ $pn ] } @pools ],
			   1, 0, 1),
		&ui_textbox("times_$i", $r, 50, 0, undef,
			    $sched || !$r ? "readonly" : "")." ".
		&schedule_chooser_button("times_$i") ]);
	$i++;
	}
$rtable .= &ui_columns_end();
print &ui_table_row($text{'schedule_runs'}, $rtable);

# All done
print &ui_table_end();
if ($in{'new'}) {
	print &ui_form_end([ [ "create", $text{'create'} ] ]);
	}
else {
	print &ui_form_end([ [ "save", $text{'save'} ],
			     [ "delete", $text{'delete'} ] ]);
	}
&ui_print_footer("list_schedules.cgi", $text{'schedules_return'});

Private