Commit 62569fb3ae641601cb41fcb91240ff91f4e22b6c

Authored by Kevin Fourie
1 parent bfef0b77

Updated some PHPDoc tags.

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@9729 c91229c3-7414-0410-bfa2-8a42b809f60b
ktapi/KTAPIAcl.inc.php
... ... @@ -33,8 +33,12 @@
33 33 * logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
34 34 * must display the words "Powered by KnowledgeTree" and retain the original
35 35 * copyright notice.
36   - * Contributor( s): ______________________________________
37 36 *
  37 + * @copyright 2008-2009, KnowledgeTree Inc.
  38 + * @license GNU General Public License version 3
  39 + * @author KnowledgeTree Team
  40 + * @package KnowledgeTree API
  41 + * @version Version 0.9
38 42 */
39 43  
40 44 /**
... ... @@ -43,6 +47,9 @@
43 47 * To create a getter property XXX, implement functions called getXXX().
44 48 * To create a setter property XXX, implement function called setXXX($property).
45 49 *
  50 + * @author KnowledgeTree Team
  51 + * @package KnowledgeTree API
  52 + * @version 0.9
46 53 */
47 54 abstract class KTAPI_Dynamic
48 55 {
... ...
ktapi/KTAPIBulkActions.inc.php
... ... @@ -572,4 +572,4 @@ class KTAPI_BulkActions
572 572 return;
573 573 }
574 574 }
575   -?>
576 575 \ No newline at end of file
  576 +?>
... ...
ktapi/KTAPICollection.inc.php
... ... @@ -33,10 +33,21 @@
33 33 * logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
34 34 * must display the words "Powered by KnowledgeTree" and retain the original
35 35 * copyright notice.
36   - * Contributor( s): ______________________________________
37 36 *
  37 + * @copyright 2008-2009, KnowledgeTree Inc.
  38 + * @license GNU General Public License version 3
  39 + * @author KnowledgeTree Team
  40 + * @package KnowledgeTree API
  41 + * @version Version 0.9
38 42 */
39 43  
  44 +/**
  45 + * API for the handling collections within KnowledgeTree
  46 + *
  47 + * @author KnowledgeTree Team
  48 + * @package KnowledgeTree API
  49 + * @version 0.9
  50 + */
40 51 class KTAPI_Collection {
41 52  
42 53 /**
... ... @@ -72,4 +83,4 @@ class KTAPI_Collection {
72 83 }
73 84  
74 85  
75   -?>
76 86 \ No newline at end of file
  87 +?>
... ...
ktapi/KTAPIConstants.inc.php
1 1 <?php
2 2 /**
3   - * $Id$
  3 + * Generic error messages used in KTAPI.
4 4 *
5 5 * KnowledgeTree Community Edition
6 6 * Document Management Made Simple
... ... @@ -32,8 +32,12 @@
32 32 * logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
33 33 * must display the words "Powered by KnowledgeTree" and retain the original
34 34 * copyright notice.
35   - * Contributor( s): ______________________________________
36 35 *
  36 + * @copyright 2008-2009, KnowledgeTree Inc.
  37 + * @license GNU General Public License version 3
  38 + * @author KnowledgeTree Team
  39 + * @package KnowledgeTree API
  40 + * @version Version 0.9
37 41 */
38 42  
39 43 // Generic error messages used in the API. There may be some others specific to functionality
... ...
ktapi/KTAPISession.inc.php
1 1 <?php
2 2 /**
  3 + * API for the handling the KnowledgeTree session
  4 + *
3 5 * KnowledgeTree Community Edition
4 6 * Document Management Made Simple
5 7 * Copyright (C) 2008, 2009 KnowledgeTree Inc.
... ... @@ -549,4 +551,4 @@ class KTAPI_SystemSession extends KTAPI_Session
549 551 }
550 552 }
551 553  
552   -?>
553 554 \ No newline at end of file
  555 +?>
... ...