Commit 3fb50357f9d122b3b6aa37ab51ed530ea0b15fc2

Authored by mukhtar
1 parent 8750709c

added docfield managment links that went missing

also added data_types table default


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1269 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 6 additions and 1 deletions
config/dmsDefaults.php
@@ -35,6 +35,8 @@ require_once("environment.php"); @@ -35,6 +35,8 @@ require_once("environment.php");
35 // Table mappings 35 // Table mappings
36 // session information 36 // session information
37 $default->owl_sessions_table = "active_sessions"; 37 $default->owl_sessions_table = "active_sessions";
  38 +//data types table
  39 +$default->owl_data_types_table ="data_types";
38 // document type fields 40 // document type fields
39 $default->owl_fields_table = "document_fields"; 41 $default->owl_fields_table = "document_fields";
40 // links document 42 // links document
@@ -219,7 +221,10 @@ $default->siteMap->addPage("addDocTypeSuccess", "/presentation/lookAndFeel/knowl @@ -219,7 +221,10 @@ $default->siteMap->addPage("addDocTypeSuccess", "/presentation/lookAndFeel/knowl
219 $default->siteMap->addPage("editDocType", "/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeBL.php", "documentTypeAdministration", SysAdmin, "Edit a Document Type"); 221 $default->siteMap->addPage("editDocType", "/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeBL.php", "documentTypeAdministration", SysAdmin, "Edit a Document Type");
220 $default->siteMap->addPage("removeDocType", "/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php", "documentTypeAdministration", SysAdmin, "Remove a Document Type"); 222 $default->siteMap->addPage("removeDocType", "/presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php", "documentTypeAdministration", SysAdmin, "Remove a Document Type");
221 // doc field stuff 223 // doc field stuff
222 -$default->siteMap->addPage("addDocField", "/presentation/lookAndFeel/knowledgeTree/administration/admin.php", "documentFieldAdministration", SysAdmin, "Add a Document Field"); 224 +$default->siteMap->addPage("addDocField", "/presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldBL.php", "documentFieldAdministration", SysAdmin, "Add a Document Field");
  225 +$default->siteMap->addPage("addDocFieldSuccess", "/presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldSuccess.php", "documentFieldAdministration", SysAdmin, "Add a Document Field success", False);
  226 +$default->siteMap->addPage("editDocField", "/presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldBL.php", "documentFieldAdministration", SysAdmin, "Edit a Document Field");
  227 +$default->siteMap->addPage("removeDocField", "/presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldBL.php", "documentFieldAdministration", SysAdmin, "Remove a Document Field");
223 228
224 // rolemanagement 229 // rolemanagement
225 $default->siteMap->addPage("addRole", "/presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/addRoleBL.php", "roleAdministration", SysAdmin, "Add New Role"); 230 $default->siteMap->addPage("addRole", "/presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/addRoleBL.php", "roleAdministration", SysAdmin, "Add New Role");