Commit 77891c09ed3edc1c43fef687e40663fcfb8bd0f8
1 parent
a04f4b17
added phpdoc
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2075 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
25 additions
and
3 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentBL.php
| 1 | <?php | 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 | require_once("../../../../config/dmsDefaults.php"); | 15 | require_once("../../../../config/dmsDefaults.php"); |
| 5 | 16 | ||
| 6 | require_once("$default->fileSystemRoot/lib/security/permission.inc"); | 17 | require_once("$default->fileSystemRoot/lib/security/permission.inc"); |
| @@ -20,7 +31,7 @@ require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCustom.inc"); | @@ -20,7 +31,7 @@ require_once("$default->fileSystemRoot/lib/visualpatterns/PatternCustom.inc"); | ||
| 20 | require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc"); | 31 | require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc"); |
| 21 | require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc"); | 32 | require_once("$default->fileSystemRoot/presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc"); |
| 22 | require_once("$default->fileSystemRoot/presentation/Html.inc"); | 33 | require_once("$default->fileSystemRoot/presentation/Html.inc"); |
| 23 | - | 34 | + |
| 24 | if (checkSession()) { | 35 | if (checkSession()) { |
| 25 | 36 | ||
| 26 | if (isset($fDocumentID) && isset($fFolderID)) { | 37 | if (isset($fDocumentID) && isset($fFolderID)) { |
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc
| 1 | <?php | 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 | function getConfirmationPage($iFolderID, $iDocumentID) { | 14 | function getConfirmationPage($iFolderID, $iDocumentID) { |
| 4 | global $default; | 15 | global $default; |
| 5 | $sToRender = renderHeading("Move Document"); | 16 | $sToRender = renderHeading("Move Document"); |