tbrehm
2009-02-27 f28f40f7a62b9a6fe939c05b10366b0d66c9ec1e
interface/web/dns/lib/module.conf.php
@@ -1,27 +1,56 @@
<?php
$module = array (
  'name' => 'dns',
  'title' => 'DNS',
  'template' => 'module.tpl.htm',
  'navframe_page' => '',
  'startpage' => 'dns/soa_list.php',
  'tab_width' => '',
  'nav' =>
  array (
    0 =>
    array (
      'title' => 'Zones',
      'open' => 1,
      'items' =>
      array (
        0 =>
        array (
          'title' => 'SOA',
          'target' => 'content',
          'link' => 'dns/soa_list.php',
        ),
      ),
    ),
  ),
)
<?php
$module["name"]       = "dns";
$module["title"]       = "DNS";
$module["template"]    = "module.tpl.htm";
$module["startpage"]    = "dns/dns_soa_list.php";
$module["tab_width"]    = '';
/*
   Email accounts menu
*/
$items[] = array( 'title'    => "Zones",
              'target'    => 'content',
              'link'   => 'dns/dns_soa_list.php');
/*
$items[] = array( 'title'    => "A-Records",
              'target'    => 'content',
              'link'   => 'dns/dns_a_list.php');
*/
$module["nav"][] = array(   'title'   => 'DNS',
                     'open'    => 1,
                     'items'   => $items);
unset($items);
$items[] = array( 'title'    => "Add DNS Zone",
              'target'    => 'content',
              'link'   => 'dns/dns_wizard.php');
$items[] = array( 'title'    => "Templates",
              'target'    => 'content',
              'link'   => 'dns/dns_template_list.php');
$module["nav"][] = array(   'title'   => 'DNS Wizard',
                     'open'    => 1,
                     'items'   => $items);
?>