diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php b/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php index 086d904..cb60b67 100644 --- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php +++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php @@ -1,10 +1,8 @@ owl_ui_directory/documentmanagement/browseUI.inc"); require_once("$default->owl_fs_root/lib/documentmanagement/DocumentBrowser.inc"); -require_once("$default->owl_ui_directory/foldermanagement/folderUI.inc"); +require_once("$default->owl_ui_directory/documentmanagement/browseUI.inc"); /** * $Id$ @@ -108,7 +106,7 @@ if (checkSession()) { // we have a list of categories // so loop through them and display - $oContent->addHtml(tableRow("", "", tableCssData("Categories", "browseTypeSelect"))); + $oContent->addHtml(tableRow("", "", tableData(displayCategoryLink("Categories")))); // empty row for spacing $oContent->addHtml(tableRow("", "", tableData(" "))); @@ -126,7 +124,7 @@ if (checkSession()) { $oContent->addHtml(tableRow("", "", tableData(" "))); // now loop through the documents in the category (TODO: if any) - // and display them (TODO: with hyperlinked paths) + // and display them for ($i=0; $iaddHtml(tableRow("", "", tableData($sDocumentLink))); @@ -141,7 +139,7 @@ if (checkSession()) { // we have a list of document types // so loop through them and display - $oContent->addHtml(tableRow("", "", tableCssData("Document Types", "browseTypeSelect"))); + $oContent->addHtml(tableRow("", "", tableData(displayDocumentTypeLink(array("name"=>"Document Types"))))); // empty row for spacing $oContent->addHtml(tableRow("", "", tableData(" "))); @@ -159,7 +157,7 @@ if (checkSession()) { $oContent->addHtml(tableRow("", "", tableData(" "))); // now loop through the documents in the category (TODO: if any) - // and display them (TODO: with hyperlinked paths) + // and display them for ($i=0; $iaddHtml(tableRow("", "", tableData($sDocumentLink)));