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

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

parent dd522842
No related branches found
No related tags found
No related merge requests found
...@@ -9,13 +9,14 @@ $module["tab_width"] = ''; ...@@ -9,13 +9,14 @@ $module["tab_width"] = '';
$items[] = array( 'title' => "Add DNS Zone", $items[] = array( 'title' => "Add DNS Zone",
'target' => 'content', 'target' => 'content',
'link' => 'dns/dns_wizard.php'); 'link' => 'dns/dns_wizard.php',
'html_id' => 'dns_wizard');
if($_SESSION["s"]["user"]["typ"] == 'admin') { if($_SESSION["s"]["user"]["typ"] == 'admin') {
$items[] = array( 'title' => "Templates",
$items[] = array( 'title' => "Templates", 'target' => 'content',
'target' => 'content', 'link' => 'dns/dns_template_list.php',
'link' => 'dns/dns_template_list.php'); 'html_id' => 'dns_template_list');
} }
...@@ -23,7 +24,7 @@ $module["nav"][] = array( 'title' => 'DNS Wizard', ...@@ -23,7 +24,7 @@ $module["nav"][] = array( 'title' => 'DNS Wizard',
'open' => 1, 'open' => 1,
'items' => $items); 'items' => $items);
unset($items); unset($items);
/* /*
...@@ -33,11 +34,13 @@ unset($items); ...@@ -33,11 +34,13 @@ unset($items);
$items[] = array( 'title' => "Zones", $items[] = array( 'title' => "Zones",
'target' => 'content', 'target' => 'content',
'link' => 'dns/dns_soa_list.php'); 'link' => 'dns/dns_soa_list.php',
'html_id' => 'dns_soa_list');
/* /*
$items[] = array( 'title' => "A-Records", $items[] = array( 'title' => "A-Records",
'target' => 'content', 'target' => 'content',
'link' => 'dns/dns_a_list.php'); 'link' => 'dns/dns_a_list.php',
'html_id' => 'dns_a_list');
*/ */
......
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