mike_p
2010-05-29 e90dd1161edf1184db1c3af4196295dec341ae87
Create ids for the html so that css styling can be used
1 files modified
25 ■■■■■ changed files
interface/web/client/lib/module.conf.php 25 ●●●●● patch | view | raw | blame | history
interface/web/client/lib/module.conf.php
@@ -13,16 +13,19 @@
$items[] = array( 'title'     => "Add Client",
                  'target'     => 'content',
                  'link'    => 'client/client_edit.php');
                  'link'    => 'client/client_edit.php',
                  'html_id' => 'client_add');
$items[] = array( 'title'     => "Edit Client",
                  'target'     => 'content',
                  'link'    => 'client/client_list.php');
                  'link'    => 'client/client_list.php',
                  'html_id' => 'client_list');
if($_SESSION["s"]["user"]["typ"] == 'admin'){
    $items[] = array( 'title'     => "Edit Client-Templates",
                      'target'     => 'content',
                      'link'    => 'client/client_template_list.php');
                      'link'    => 'client/client_template_list.php',
                      'html_id' => 'client_template_list');
}
$module["nav"][] = array(    'title'    => 'Clients',
@@ -36,26 +39,18 @@
$items[] = array( 'title'     => "Add Reseller",
                  'target'     => 'content',
                  'link'    => 'client/reseller_edit.php');
                  'link'    => 'client/reseller_edit.php',
                  'html_id' => 'reseller_add');
$items[] = array( 'title'     => "Edit Reseller",
                  'target'     => 'content',
                  'link'    => 'client/reseller_list.php');
                  'link'    => 'client/reseller_list.php',
                  'html_id' => 'reseller_list');
$module["nav"][] = array(    'title'    => 'Resellers',
                            'open'     => 1,
                            'items'    => $items);
}