Commit 90658a84df7e59ac4c2ab0950704a5a37a693eee
1 parent
bb839c8d
changed subscription tables
added subscription tests to sitemap git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@794 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
10 additions
and
1 deletions
config/dmsDefaults.php
| ... | ... | @@ -56,6 +56,10 @@ $default->owl_sessions_table = "active_sessions"; |
| 56 | 56 | $default->owl_fields_table = "document_fields"; |
| 57 | 57 | // links document |
| 58 | 58 | $default->owl_document_fields_table = "document_fields_link"; |
| 59 | +// meta data value lookup table | |
| 60 | +$default->owl_document_fields_lookup_tables = "document_fields_lookup"; | |
| 61 | +// document subscriptions | |
| 62 | +$default->owl_document_subscriptions_table = "document_subscriptions"; | |
| 59 | 63 | // document transaction types |
| 60 | 64 | $default->owl_transaction_types_table = "document_transaction_types_lookup"; |
| 61 | 65 | // document transactions |
| ... | ... | @@ -68,7 +72,9 @@ $default->owl_document_types_table = "document_types_lookup"; |
| 68 | 72 | $default->owl_document_words_table = "document_words_link"; |
| 69 | 73 | // stores documents |
| 70 | 74 | $default->owl_documents_table = "documents"; |
| 71 | -// stores folders | |
| 75 | +// stores folder subscriptions | |
| 76 | +$default->owl_folder_subscriptions_table = "folder_subscriptions"; | |
| 77 | +// stores folders | |
| 72 | 78 | $default->owl_folders_table = "folders"; |
| 73 | 79 | // links folders to users (and roles) for approval collaboration |
| 74 | 80 | $default->owl_folders_user_roles_table = "folders_users_roles_link"; |
| ... | ... | @@ -191,6 +197,9 @@ $default->siteMap->addPage("scratchPad", "/tests/scratchPad.php", "Tests", Guest |
| 191 | 197 | $default->siteMap->addPage("sitemap", "/tests/session/SiteMap.php", "Tests", Guest, "sitemap", false); |
| 192 | 198 | $default->siteMap->addPage("documentBrowserTest", "/tests/documentmanagement/DocumentBrowser.php", "Tests", Guest, "test the document browser", false); |
| 193 | 199 | $default->siteMap->addPage("scroll", "/tests/scroll/textScrollTest.php", "Tests", Guest, "test scrolling", false); |
| 200 | +$default->siteMap->addPage("folderSub", "/tests/subscriptions/folderSubscription.php", "Tests", Guest, "folder subscription unit test", false); | |
| 201 | +$default->siteMap->addPage("documentSub", "/tests/subscriptions/documentSubscription.php", "Tests", Guest, "document subscription unit test", false); | |
| 202 | +$default->siteMap->addPage("subManager", "/tests/subscriptions/subscriptionManager.php", "Tests", Guest, "manage subscription unit test", false); | |
| 194 | 203 | |
| 195 | 204 | |
| 196 | 205 | ... | ... |