Commit 47860584faf23e04317affb7332bc66842d70e07

Authored by michael
1 parent 7f2458ef

removed unused tables, re-ordered slightly, uncommented authentication class settings


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@247 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 6 additions and 36 deletions
config/dmsDefaults.php
... ... @@ -68,16 +68,14 @@ $default->owl_documents_table = "documents";
68 68 $default->owl_folders_table = "folders";
69 69 // links folders to users (and roles) for approval collaboration
70 70 $default->owl_folders_user_roles_table = "folders_users_roles_link";
71   -//link groups to folders
72   -$default->owl_group_folders_table = "group_folders_link";
73 71 // stores approval collaboration information- approval roles mapped to folders with order
74 72 $default->owl_groups_folders_approval_table = "groups_folders_approval_link";
75 73 // links groups to folders
76 74 $default->owl_groups_folders_table = "groups_folders_link";
77 75 // stores group information
78 76 $default->owl_groups_table = "groups_lookup";
79   -// links groups to users and units
80   -$default->owl_groups_users_table = "users_groups_link";
  77 +// links groups to units
  78 +$default->owl_groups_units_table = "groups_units_link"
81 79 // links
82 80 $default->owl_links_table = "links";
83 81 // Table with mime info
... ... @@ -94,36 +92,8 @@ $default->owl_system_settings_table = "system_settings";
94 92 $default->owl_unit_table = "units";
95 93 // Table with user info
96 94 $default->owl_users_table = "users";
97   -// User-unit mapping table
98   -$default->owl_user_unit_table = "users_unit";
99   -// Table with group membership for users
100   -$default->owl_users_grpmem_table= "membergroup";
101   -/// Table with session information
102   -$default->owl_sessions_table = "active_sessions";
103   -// Table with file info
104   -$default->owl_files_table = "files";
105   -// Table with folders info
106   -$default->owl_folders_table = "folders";
107   -// Table with group info
108   -$default->owl_groups_table = "groups_lookup";
109   -//Table with user group linkage
110   -$default->owl_users_groups_table = "users_groups_link";
111   -// Table with mime info
112   -$default->owl_mime_table = "mime_types";
113   -// Table with html attributes
114   -$default->owl_html_table = "intranet.html";
115   -// Table with html attributes
116   -$default->owl_prefs_table = "intranet.prefs";
117   -// Table with file data info
118   -$default->owl_files_data_table = "filedata";
119   -//Table with document type info
120   -$default->owl_document_types_table = "document_types_lookup";
121   -//Table that links document types to document type fields
122   -$default->owl_document_type_fields_table = "document_type_fields";
123   -//Table with document type field info
124   -$default->owl_fields_table = "document_fields_link";
125   -// Table with document transactions info
126   -$default->owl_document_transactions_table = "document_transactions";
  95 +// links groups to users and units
  96 +$default->owl_groups_users_table = "users_groups_link";
127 97 // Table with web documents info for web publishing
128 98 $default->owl_web_documents_table = "web_documents";
129 99 // Table with web documents info for web publishing
... ... @@ -140,8 +110,8 @@ require_once("$default->owl_fs_root/phplib/db_mysql.inc");
140 110 // Change this to reflect the authentication method you are using
141 111 //require_once("$default->owl_fs_root/lib/LDAPAuthenticator.inc");
142 112 //require_once("$default->owl_fs_root/lib/Authenticator.inc");
143   -//$default->authentication_class = "DBAuthenticator";
144   -//require_once("$default->owl_fs_root/lib/authentication/$default->authentication_class.inc");
  113 +$default->authentication_class = "DBAuthenticator";
  114 +require_once("$default->owl_fs_root/lib/authentication/$default->authentication_class.inc");
145 115  
146 116 // logo file that must reside inside lang/graphics directory
147 117 $default->logo = "kt.jpg";
... ...