Skip to content
Snippets Groups Projects
Commit e90dd116 authored by mike_p's avatar mike_p
Browse files

Create ids for the html so that css styling can be used

parent 9623afae
No related branches found
No related tags found
No related merge requests found
...@@ -13,16 +13,19 @@ $module["tab_width"] = ''; ...@@ -13,16 +13,19 @@ $module["tab_width"] = '';
$items[] = array( 'title' => "Add Client", $items[] = array( 'title' => "Add Client",
'target' => 'content', 'target' => 'content',
'link' => 'client/client_edit.php'); 'link' => 'client/client_edit.php',
'html_id' => 'client_add');
$items[] = array( 'title' => "Edit Client", $items[] = array( 'title' => "Edit Client",
'target' => 'content', 'target' => 'content',
'link' => 'client/client_list.php'); 'link' => 'client/client_list.php',
'html_id' => 'client_list');
if($_SESSION["s"]["user"]["typ"] == 'admin'){ if($_SESSION["s"]["user"]["typ"] == 'admin'){
$items[] = array( 'title' => "Edit Client-Templates", $items[] = array( 'title' => "Edit Client-Templates",
'target' => 'content', 'target' => 'content',
'link' => 'client/client_template_list.php'); 'link' => 'client/client_template_list.php',
'html_id' => 'client_template_list');
} }
$module["nav"][] = array( 'title' => 'Clients', $module["nav"][] = array( 'title' => 'Clients',
...@@ -36,11 +39,13 @@ if($_SESSION["s"]["user"]["typ"] == 'admin'){ ...@@ -36,11 +39,13 @@ if($_SESSION["s"]["user"]["typ"] == 'admin'){
$items[] = array( 'title' => "Add Reseller", $items[] = array( 'title' => "Add Reseller",
'target' => 'content', 'target' => 'content',
'link' => 'client/reseller_edit.php'); 'link' => 'client/reseller_edit.php',
'html_id' => 'reseller_add');
$items[] = array( 'title' => "Edit Reseller", $items[] = array( 'title' => "Edit Reseller",
'target' => 'content', 'target' => 'content',
'link' => 'client/reseller_list.php'); 'link' => 'client/reseller_list.php',
'html_id' => 'reseller_list');
$module["nav"][] = array( 'title' => 'Resellers', $module["nav"][] = array( 'title' => 'Resellers',
'open' => 1, 'open' => 1,
...@@ -50,14 +55,4 @@ $module["nav"][] = array( 'title' => 'Resellers', ...@@ -50,14 +55,4 @@ $module["nav"][] = array( 'title' => 'Resellers',
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment