tbrehm
2009-10-28 66c3bc24f069a2854bdf1eeebb6dcb51f6ef0afb
interface/web/client/lib/module.conf.php
@@ -19,8 +19,45 @@
              'target'    => 'content',
              'link'   => 'client/client_list.php');
if($_SESSION["s"]["user"]["typ"] == 'admin'){
   $items[] = array( 'title'    => "Edit Client-Templates",
                 'target'    => 'content',
                 'link'   => 'client/client_template_list.php');
}
$module["nav"][] = array(   'title'   => 'Clients',
                     'open'    => 1,
                     'items'   => $items);
unset($items);
if($_SESSION["s"]["user"]["typ"] == 'admin'){
$items[] = array( 'title'    => "Add Reseller",
              'target'    => 'content',
              'link'   => 'client/reseller_edit.php');
$items[] = array( 'title'    => "Edit Reseller",
              'target'    => 'content',
              'link'   => 'client/reseller_list.php');
$module["nav"][] = array(   'title'   => 'Resellers',
                     'open'    => 1,
                     'items'   => $items);
}
?>