mike_p
2010-05-29 6af5e9d93a9575fbb677184c519ec902b576fd1d
Create ids for the html so that css styling can be used
1 files modified
19 ■■■■■ changed files
interface/web/dns/lib/module.conf.php 19 ●●●●● patch | view | raw | blame | history
interface/web/dns/lib/module.conf.php
@@ -9,13 +9,14 @@
$items[] = array( 'title'     => "Add DNS Zone",
                  'target'     => 'content',
                  'link'    => 'dns/dns_wizard.php');
                  'link'    => 'dns/dns_wizard.php',
                  'html_id' => 'dns_wizard');
if($_SESSION["s"]["user"]["typ"] == 'admin') {
    $items[] = array(     'title'     => "Templates",
                          'target'     => 'content',
                          'link'        => 'dns/dns_template_list.php');
  $items[] = array(     'title'     => "Templates",
                  'target'     => 'content',
                  'link'        => 'dns/dns_template_list.php',
                  'html_id' => 'dns_template_list');
}
@@ -23,7 +24,7 @@
                            'open'     => 1,
                            'items'    => $items);
unset($items);
/*
@@ -33,11 +34,13 @@
$items[] = array( 'title'     => "Zones",
                  'target'     => 'content',
                  'link'    => 'dns/dns_soa_list.php');
                  'link'    => 'dns/dns_soa_list.php',
                  'html_id' => 'dns_soa_list');
/*
$items[] = array( 'title'     => "A-Records",
                  'target'     => 'content',
                  'link'    => 'dns/dns_a_list.php');
                  'link'    => 'dns/dns_a_list.php',
                  'html_id' => 'dns_a_list');
*/