From 9994de85fcf14a98dcc54cc7399b87e34d9b3c29 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 17 Mar 2009 09:23:07 -0400
Subject: [PATCH] Updated all language files.

---
 interface/web/sites/lib/module.conf.php |  152 +++++++++++++++++++++++++++-----------------------
 1 files changed, 82 insertions(+), 70 deletions(-)

diff --git a/interface/web/sites/lib/module.conf.php b/interface/web/sites/lib/module.conf.php
index 325b7c2..1992fbb 100644
--- a/interface/web/sites/lib/module.conf.php
+++ b/interface/web/sites/lib/module.conf.php
@@ -1,71 +1,83 @@
-<?php
-$module = array (
-  'name' => 'sites',
-  'title' => 'Sites & Email',
-  'template' => 'module.tpl.htm',
-  'navframe_page' => '',
-  'startpage' => 'sites/index.php',
-  'tab_width' => '',
-  'nav' => 
-  array (
-    0 => 
-    array (
-      'title' => 'Email Accounts',
-      'open' => 1,
-      'items' => 
-      array (
-        0 => 
-        array (
-          'title' => 'Domain',
-          'target' => 'content',
-          'link' => 'sites/mail_domain_list.php',
-        ),
-        1 => 
-        array (
-          'title' => 'Domain Alias',
-          'target' => 'content',
-          'link' => 'sites/mail_domain_alias_list.php',
-        ),
-        2 => 
-        array (
-          'title' => 'Email Mailbox',
-          'target' => 'content',
-          'link' => '',
-        ),
-        3 => 
-        array (
-          'title' => 'Email Forward',
-          'target' => 'content',
-          'link' => '',
-        ),
-        4 => 
-        array (
-          'title' => 'Domain Catchall',
-          'target' => 'content',
-          'link' => '',
-        ),
-      ),
-    ),
-    1 => 
-    array (
-      'title' => 'Email Filter',
-      'open' => 1,
-      'items' => 
-      array (
-        0 => 
-        array (
-          'title' => 'Email Whitelist',
-          'target' => 'content',
-          'link' => '',
-        ),
-        1 => 
-        array (
-          'title' => 'Email Blacklist',
-          'target' => 'content',
-          'link' => '',
-        ),
-      ),
-    ),
-  ),
-)
+<?php
+
+$module["name"] 		= "sites";
+$module["title"] 		= "Sites";
+$module["template"] 	= "module.tpl.htm";
+$module["startpage"] 	= "sites/web_domain_list.php";
+$module["tab_width"]    = '';
+
+/*
+	Websites menu
+*/
+
+$items[] = array( 'title' 	=> "Domain",
+				  'target' 	=> 'content',
+				  'link'	=> 'sites/web_domain_list.php');
+
+
+$items[] = array( 'title' 	=> "Subdomain",
+				  'target' 	=> 'content',
+				  'link'	=> 'sites/web_subdomain_list.php');
+
+
+$items[] = array( 'title' 	=> "Aliasdomain",
+				  'target' 	=> 'content',
+				  'link'	=> 'sites/web_aliasdomain_list.php');
+
+$module["nav"][] = array(	'title'	=> 'Websites',
+							'open' 	=> 1,
+							'items'	=> $items);
+
+// clean up
+unset($items);
+
+/*
+	FTP User menu
+*/
+
+$items[] = array( 'title' 	=> "FTP-User",
+				  'target' 	=> 'content',
+				  'link'	=> 'sites/ftp_user_list.php');
+
+
+$module["nav"][] = array(	'title'	=> 'FTP',
+							'open' 	=> 1,
+							'items'	=> $items);
+
+// clean up
+unset($items);
+
+/*
+	FTP User menu
+*/
+
+$items[] = array( 'title' 	=> "Shell-User",
+				  'target' 	=> 'content',
+				  'link'	=> 'sites/shell_user_list.php');
+
+
+$module["nav"][] = array(	'title'	=> 'Shell',
+							'open' 	=> 1,
+							'items'	=> $items);
+
+// clean up
+unset($items);
+
+/*
+	Databases menu
+*/
+
+$items[] = array( 'title' 	=> "Database",
+				  'target' 	=> 'content',
+				  'link'	=> 'sites/database_list.php');
+
+
+$module["nav"][] = array(	'title'	=> 'Database',
+							'open' 	=> 1,
+							'items'	=> $items);
+
+// clean up
+unset($items);
+
+
 ?>
\ No newline at end of file

--
Gitblit v1.9.1