Commit 8ab5190637451fdca4ab8b0527be19f698ad52d1

Authored by mukhtar
1 parent af1123fa

modifications to layout added admin email


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1048 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsBL.php
1 1 <?php
2 2 /**
3   -* BL information for adding a Unit
  3 +* BL information for changing system info
4 4 *
5 5 * @author Mukhtar Dharsey
6 6 * @date 5 February 2003
... ... @@ -30,6 +30,8 @@ if (checkSession()) {
30 30 $aNames = array("ldapServer",
31 31 "ldapRootDn",
32 32 "emailServer",
  33 + "emailAdmin",
  34 + "emailAdminName",
33 35 "emailFrom",
34 36 "emailFromName",
35 37 "filesystemRoot",
... ... @@ -46,6 +48,8 @@ if (checkSession()) {
46 48 $aValues = array($fldapServer,
47 49 $fldapRootDn,
48 50 $femailServer,
  51 + $femailAdmin,
  52 + $femailAdminName,
49 53 $femailFrom,
50 54 $femailFromName,
51 55 $ffilesystemRoot,
... ...
presentation/lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsUI.inc
1 1 <?php
2 2  
3 3 /**
4   -* Presentation information for Deleting a Unit
  4 +* Presentation information for changing system info
5 5 *
6 6 * @author Mukhtar Dharsey
7 7 * @date 5 February 2003
... ... @@ -18,8 +18,10 @@ function getPage() {
18 18 $aRowNames = array ("LDAP Server: ",
19 19 "LDAP Root DN: ",
20 20 "Email Server:",
21   - "Email From: ",
22   - "Email From Name: ",
  21 + "Administrator Email Address: ",
  22 + "Administrator Name: ",
  23 + "Default Email Address: ",
  24 + "Default Email Name: ",
23 25 "File System Root: ",
24 26 "Document Root: ",
25 27 "Language Directory: ",
... ... @@ -34,6 +36,8 @@ function getPage() {
34 36 $aNames = array("fldapServer",
35 37 "fldapRootDn",
36 38 "femailServer",
  39 + "femailAdmin",
  40 + "femailAdminName",
37 41 "femailFrom",
38 42 "femailFromName",
39 43 "ffilesystemRoot",
... ...