Commit 7f2458ef113c19691eb6181a70026d0c91e6c547
1 parent
35cb6d13
changed one of the tables -> users_groups_link
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@246 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
32 additions
and
2 deletions
config/dmsDefaults.php
| ... | ... | @@ -94,6 +94,36 @@ $default->owl_system_settings_table = "system_settings"; |
| 94 | 94 | $default->owl_unit_table = "units"; |
| 95 | 95 | // Table with user info |
| 96 | 96 | $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"; | |
| 97 | 127 | // Table with web documents info for web publishing |
| 98 | 128 | $default->owl_web_documents_table = "web_documents"; |
| 99 | 129 | // Table with web documents info for web publishing |
| ... | ... | @@ -110,8 +140,8 @@ require_once("$default->owl_fs_root/phplib/db_mysql.inc"); |
| 110 | 140 | // Change this to reflect the authentication method you are using |
| 111 | 141 | //require_once("$default->owl_fs_root/lib/LDAPAuthenticator.inc"); |
| 112 | 142 | //require_once("$default->owl_fs_root/lib/Authenticator.inc"); |
| 113 | -$default->authentication_class = "DBAuthenticator"; | |
| 114 | -require_once("$default->owl_fs_root/lib/authentication/$default->authentication_class.inc"); | |
| 143 | +//$default->authentication_class = "DBAuthenticator"; | |
| 144 | +//require_once("$default->owl_fs_root/lib/authentication/$default->authentication_class.inc"); | |
| 115 | 145 | |
| 116 | 146 | // logo file that must reside inside lang/graphics directory |
| 117 | 147 | $default->logo = "kt.jpg"; | ... | ... |