Skip to content
import.menu.php 437 B
Newer Older
tbrehm's avatar
tbrehm committed
<?php


// Menu

if($app->auth->is_admin()) {

$items = array();

$items[] = array( 'title' 	=> 'ISPConfig 3 mail',
tbrehm's avatar
tbrehm committed
				  'target' 	=> 'content',
				  'link'	=> 'tools/import_ispconfig.php');

$items[] = array( 'title' 	=> 'PDNS Tupa',
				  'target' 	=> 'content',
				  'link'	=> 'tools/dns_import_tupa.php');
tbrehm's avatar
tbrehm committed
$module['nav'][] = array(	'title'	=> 'Import',
							'open' 	=> 1,
							'items'	=> $items);

unset($items);
}

?>