tbrehm
2012-05-07 3728fe9875cd266700bd5db9249ae48f08861373
commit | author | age
14b85c 1 <?php
T 2
3
4 // Menu
5
6 if($app->auth->is_admin()) {
7
8 $items = array();
9
3728fe 10 $items[] = array( 'title'     => 'ISPConfig 3 mail',
14b85c 11                   'target'     => 'content',
T 12                   'link'    => 'tools/import_ispconfig.php');
13
3728fe 14 $items[] = array( 'title'     => 'PDNS Tupa',
T 15                   'target'     => 'content',
16                   'link'    => 'tools/dns_import_tupa.php');
14b85c 17
3728fe 18                   
14b85c 19 $module['nav'][] = array(    'title'    => 'Import',
T 20                             'open'     => 1,
21                             'items'    => $items);
22
23 unset($items);
24 }
25
26 ?>