mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 23:43:00 +02:00
Menue Rewrite Connectioncheck gefixt --> DSL/PPPoE works! git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@418 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
$subsystem->{'10.home'} = {
|
|
'caption' => $tr{'alt home'},
|
|
'uri' => '/cgi-bin/index.cgi',
|
|
'title' => "$tr{'alt home'}",
|
|
'enabled' => 1,
|
|
};
|
|
$subsystem->{'20.dialup'} = {
|
|
'caption' => $tr{'alt dialup'},
|
|
'uri' => '/cgi-bin/pppsetup.cgi',
|
|
'title' => "$tr{'alt dialup'}",
|
|
'enabled' => 1,
|
|
};
|
|
$subsystem->{'30.passwords'} = {
|
|
'caption' => $tr{'sspasswords'},
|
|
'uri' => '/cgi-bin/changepw.cgi',
|
|
'title' => "$tr{'sspasswords'}",
|
|
'enabled' => 1,
|
|
};
|
|
$subsystem->{'40.ssh'} = {
|
|
'caption' => $tr{'ssh access'},
|
|
'uri' => '/cgi-bin/remote.cgi',
|
|
'title' => "$tr{'ssh access'}",
|
|
'enabled' => 1,
|
|
};
|
|
$subsystem->{'50.gui'} = {
|
|
'caption' => $tr{'gui settings'},
|
|
'uri' => '/cgi-bin/gui.cgi',
|
|
'title' => "$tr{'gui settings'}",
|
|
'enabled' => 1,
|
|
};
|
|
$subsystem->{'60.shutdown'} = {
|
|
'caption' => $tr{'shutdown'},
|
|
'uri' => '/cgi-bin/shutdown.cgi',
|
|
'title' => "$tr{'shutdown'} / $tr{'reboot'}",
|
|
'enabled' => 1,
|
|
};
|
|
$subsystem->{'99.credits'} = {
|
|
'caption' => $tr{'credits'},
|
|
'uri' => '/cgi-bin/credits.cgi',
|
|
'title' => "$tr{'credits'}",
|
|
'enabled' => 1,
|
|
};
|