Commit 77891c09ed3edc1c43fef687e40663fcfb8bd0f8

Authored by Michael Joseph
1 parent a04f4b17

added phpdoc


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2075 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentBL.php
1 1 <?php
2 2  
3   -
  3 +/**
  4 + * $Id$
  5 + *
  6 + * Move document page.
  7 + *
  8 + * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING.
  9 + *
  10 + * @version $Revision$
  11 + * @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
  12 + * @package presentation.lookAndFeel.knowledgeTree.documentmanagement
  13 + */
  14 +
4 15 require_once("../../../../config/dmsDefaults.php");
5 16  
6 17 require_once("$default->fileSystemRoot/lib/security/permission.inc");
... ... @@ -20,7 +31,7 @@ require_once(&quot;$default-&gt;fileSystemRoot/lib/visualpatterns/PatternCustom.inc&quot;);
20 31 require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc");
21 32 require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc");
22 33 require_once("$default->fileSystemRoot/presentation/Html.inc");
23   -
  34 +
24 35 if (checkSession()) {
25 36  
26 37 if (isset($fDocumentID) && isset($fFolderID)) {
... ...
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc
1 1 <?php
2   -
  2 +/**
  3 + * $Id$
  4 + *
  5 + * Move document presentation logic.
  6 + *
  7 + * Licensed under the GNU GPL. For full terms see the file DOCS/COPYING.
  8 + *
  9 + * @version $Revision$
  10 + * @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
  11 + * @package presentation.lookAndFeel.knowledgeTree.documentmanagement
  12 + */
  13 +
3 14 function getConfirmationPage($iFolderID, $iDocumentID) {
4 15 global $default;
5 16 $sToRender = renderHeading("Move Document");
... ...