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

// Menu

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

	$items = array();
tbrehm's avatar
tbrehm committed

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

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

	/* not yet complete
$items[] = array( 'title' 	=> 'Plesk',
				  'target' 	=> 'content',
				  'link'	=> 'tools/import_plesk.php');
tbrehm's avatar
tbrehm committed

	$module['nav'][] = array( 'title' => 'Import',
		'open'  => 1,
		'items' => $items);

	unset($items);
tbrehm's avatar
tbrehm committed
}