Commit 4e39a35791d728749bd3a3b34ca0f23e717fd740

Authored by Michael Joseph
1 parent 643fd8d2

added getSectionName method (sidebar link hack)


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1891 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/browse/CategoryBrowser.inc
... ... @@ -99,4 +99,8 @@ class CategoryBrowser extends Browser {
99 99 return $results;
100 100 }
101 101 }
  102 +
  103 + function getSectionName() {
  104 + return "Manage Categories";
  105 + }
102 106 }
103 107 \ No newline at end of file
... ...
lib/browse/DocumentTypeBrowser.inc
... ... @@ -90,4 +90,8 @@ class DocumentTypeBrowser extends Browser {
90 90 return $results;
91 91 }
92 92 }
  93 +
  94 + function getSectionName() {
  95 + return "Manage Document Types";
  96 + }
93 97 }
94 98 \ No newline at end of file
... ...