From fe670c66d9304be12ff56665636f2ec92a560f73 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Wed, 02 Sep 2009 14:14:27 -0400
Subject: [PATCH] Added SOAP support for mail module. Many thanks to Arkadiusz Roch & Artur Edelman from Tri-Plex technology

---
 interface/web/admin/lib/module.conf.php |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/interface/web/admin/lib/module.conf.php b/interface/web/admin/lib/module.conf.php
index 98f828f..636ea72 100644
--- a/interface/web/admin/lib/module.conf.php
+++ b/interface/web/admin/lib/module.conf.php
@@ -138,6 +138,22 @@
 // cleanup
 unset($items);
 
+$items[] = array( 'title' 	=> 'Add user',
+				  'target' 	=> 'content',
+				  'link'	=> 'admin/remote_user_edit.php');
+
+$items[] = array( 'title' 	=> 'Edit user',
+				  'target' 	=> 'content',
+				  'link'	=> 'admin/remote_user_list.php');
+
+				  
+$module['nav'][] = array(	'title'	=> 'Remote Users',
+							'open' 	=> 1,
+							'items'	=> $items);
+
+// cleanup
+unset($items);
+
 // Getting the admin options from other modules
 $modules = explode(',', $_SESSION['s']['user']['modules']);
 if(is_array($modules)) {

--
Gitblit v1.9.1