|
- <?php
-
- //**** Module Definition ****
-
- // Name of the module. The module name must match the name of the module directory.
- // The module name may not contain spaces.
- $module['name'] = 'webdns';
-
- // Title of the module which is dispalayed in the top navigation.
- $module['title'] = 'WebDNS';
-
- // The template file of the module. This is always 'module.tpl.htm' unless
- // there are any special requirements such as a three column layout.
- $module['template'] = 'module.tpl.htm';
-
- // The page that is displayed when the module is loaded.
- // The path must is relative to the web/ directory
- $module['startpage'] = 'webdns/new_service_webdns.php';
-
- // The width of the tab. Normally you should leave this empty and
- // let the browser define the width automatically.
- $module['tab_width'] = '';
-
- //**** Menu Definition ****
-
- // Make sure that the items array is empty
- $items = array();
-
- // Add a menu item with the label 'Nuevo servicio web'
- $items[] = array( 'title' => 'Nuevo servicio web',
- 'target' => 'content',
- 'link' => 'webdns/new_service_webdns.php',
- 'html_id' => 'new_service_webdns'
- );
- /*$items[] = array( 'title' => 'Usuario DB',
- 'target' => 'content',
- 'link' => 'webdns/database_user_edit.php',
- //'html_id' =>'db_service'
- );*/
- /*
- $items[] = array( 'title' => 'El FTP',
- 'target' => 'content',
- 'link' => 'webdns/ftp_user_edit.php',
- 'html_id' =>'ftp_user_service'
- );
- */
- $items[] = array( 'title' => 'Versión',
- 'target' => 'content',
- 'link' => 'webdns/version_webdns.php',
- 'html_id' =>'version_webdns'
- );
- /*$items[] = array( 'title' => 'Web DNS2',
- 'target' => 'content',
- 'link' => 'customdns/new_service_dns2.php',
- 'html_id' => 'new_service_dns2');*/
-
-
-
- // Append the menu $items defined above to a menu section labeled 'Support'
- $module['nav'][] = array( 'title' => 'WebDNS',
- 'open' => 1,
- 'items' => $items
- );
- /*$module['nav'][] = array( 'title' => 'Versión',
- 'open' => 1,
- 'items' => $items
- );*/
|