| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /tmp/ispconfig3_install/interface/web/vm/lib/ |
Upload File : |
<?php
$module['name'] = 'vm';
$module['title'] = 'top_menu_vm';
$module['template'] = 'module.tpl.htm';
$module['startpage'] = 'vm/openvz_vm_list.php';
$module['tab_width'] = '';
$module['order'] = '50';
$module['icon'] = 'icon icon-vm';
//**** Templates menu
$items = array();
$items[] = array( 'title' => 'Virtual Servers',
'target' => 'content',
'link' => 'vm/openvz_vm_list.php',
'html_id' => 'openvz_vm_list');
if($_SESSION["s"]["user"]["typ"] == 'admin') {
$items[] = array( 'title' => 'OS Templates',
'target' => 'content',
'link' => 'vm/openvz_ostemplate_list.php',
'html_id' => 'openvz_ostemplate_list');
$items[] = array( 'title' => 'VM Templates',
'target' => 'content',
'link' => 'vm/openvz_template_list.php',
'html_id' => 'openvz_template_list');
$items[] = array( 'title' => 'IP addresses',
'target' => 'content',
'link' => 'vm/openvz_ip_list.php',
'html_id' => 'openvz_ip_list');
}
if(count($items))
{
$module['nav'][] = array( 'title' => 'OpenVZ',
'open' => 1,
'items' => $items);
}
//**** Statistics menu
/*
$items = array();
$items[] = array( 'title' => 'Traffic',
'target' => 'content',
'link' => 'vm/traffic_stats.php',
'html_id' => 'vm_traffic_stats');
$items[] = array( 'title' => 'Vserver monitor',
'target' => 'content',
'link' => 'vm/traffic_stats.php',
'html_id' => 'vm_traffic_stats');
if(count($items))
{
$module['nav'][] = array( 'title' => 'Statistics',
'open' => 1,
'items' => $items);
}
*/
?>