[fix] remove now unused ico for menu icons (in css)
This commit is contained in:
parent
ade50df5aa
commit
8dc5c20fa5
|
@ -80,7 +80,6 @@ class m_admin {
|
|||
}
|
||||
$obj = array(
|
||||
'title' => _("Administration"),
|
||||
'ico' => 'images/admin.png',
|
||||
'link' => 'toggle',
|
||||
'class' => 'adminmenu',
|
||||
'pos' => 10,
|
||||
|
|
|
@ -48,7 +48,6 @@ class m_authip {
|
|||
function hook_menu() {
|
||||
$obj = array(
|
||||
'title' => _("FTP Access Security"),
|
||||
'ico' => 'images/ip.png',
|
||||
'link' => 'ip_main.php',
|
||||
'pos' => 120,
|
||||
);
|
||||
|
|
|
@ -70,7 +70,6 @@ class m_cron {
|
|||
function hook_menu() {
|
||||
$obj = array(
|
||||
'title' => _("Scheduled tasks"),
|
||||
'ico' => 'images/schedule.png',
|
||||
'link' => 'cron.php',
|
||||
'pos' => 120,
|
||||
);
|
||||
|
|
|
@ -123,7 +123,6 @@ class m_dom {
|
|||
global $quota;
|
||||
$obj = array(
|
||||
'title' => _("Domains"),
|
||||
'ico' => 'images/dom.png',
|
||||
'link' => 'toggle',
|
||||
'pos' => 20,
|
||||
'links' => array(),
|
||||
|
@ -131,7 +130,6 @@ class m_dom {
|
|||
|
||||
if ($quota->cancreate("dom")) {
|
||||
$obj['links'][] = array(
|
||||
'ico' => 'images/new.png',
|
||||
'txt' => _("Add a domain"),
|
||||
'url' => "dom_add.php",
|
||||
);
|
||||
|
|
|
@ -55,7 +55,6 @@ class m_ftp {
|
|||
|
||||
$obj = array(
|
||||
'title' => _("FTP accounts"),
|
||||
'ico' => 'images/ftp.png',
|
||||
'link' => 'toggle',
|
||||
'pos' => 100,
|
||||
'links' => array(),
|
||||
|
@ -63,7 +62,6 @@ class m_ftp {
|
|||
|
||||
if ($quota->cancreate("ftp")) {
|
||||
$obj['links'][] = array(
|
||||
'ico' => 'images/new.png',
|
||||
'txt' => _("Create a new ftp account"),
|
||||
'url' => "ftp_edit.php?create=1",
|
||||
'class' => '',
|
||||
|
|
|
@ -44,7 +44,6 @@ class m_hta {
|
|||
function hook_menu() {
|
||||
$obj = array(
|
||||
'title' => _("Protected folders"),
|
||||
'ico' => 'images/password.png',
|
||||
'link' => 'hta_list.php',
|
||||
'pos' => 50,
|
||||
);
|
||||
|
|
|
@ -69,7 +69,6 @@ class m_log {
|
|||
function hook_menu() {
|
||||
$obj = array(
|
||||
'title' => _("Logs"),
|
||||
'ico' => 'images/logs.png',
|
||||
'link' => 'logs_list.php',
|
||||
'pos' => 130,
|
||||
);
|
||||
|
|
|
@ -55,7 +55,6 @@ class m_lxc implements vm {
|
|||
|
||||
$obj = array(
|
||||
'title' => _("Console access"),
|
||||
'ico' => 'images/ssh.png',
|
||||
'link' => 'vm.php',
|
||||
'pos' => 95,
|
||||
);
|
||||
|
|
|
@ -83,7 +83,6 @@ class m_mail {
|
|||
function hook_menu() {
|
||||
$obj = array(
|
||||
'title' => _("Email Addresses"),
|
||||
'ico' => 'images/mail.png',
|
||||
'link' => 'toggle',
|
||||
'pos' => 30,
|
||||
'links' => array(),
|
||||
|
|
|
@ -56,7 +56,6 @@ class m_mem {
|
|||
function hook_menu() {
|
||||
$obj = array(
|
||||
'title' => _("Settings"),
|
||||
'ico' => 'images/settings.png',
|
||||
'link' => 'mem_param.php',
|
||||
'pos' => 160,
|
||||
);
|
||||
|
|
|
@ -109,21 +109,18 @@ class m_menu {
|
|||
'home' =>
|
||||
array(
|
||||
'title' => _("Home / Information"),
|
||||
'ico' => 'images/home.png',
|
||||
'link' => 'main.php',
|
||||
'pos' => 0,
|
||||
),
|
||||
'logout' =>
|
||||
array(
|
||||
'title' => _("Logout"),
|
||||
'ico' => 'images/exit.png',
|
||||
'link' => 'mem_logout.php',
|
||||
'pos' => 170,
|
||||
),
|
||||
'help' =>
|
||||
array(
|
||||
'title' => _("Online help"),
|
||||
'ico' => 'images/help.png',
|
||||
'target' => 'help',
|
||||
'link' => $help_baseurl,
|
||||
'pos' => 140,
|
||||
|
@ -131,7 +128,6 @@ class m_menu {
|
|||
'lang' =>
|
||||
array(
|
||||
'title' => _("Languages"),
|
||||
'ico' => '/images/lang.png',
|
||||
'visibility' => false,
|
||||
'link' => 'toggle',
|
||||
'links' => array(),
|
||||
|
|
Loading…
Reference in New Issue