Commit 38002cae3f4bf3378a8ccc5dbe445cf463c93ea7

Authored by rob
1 parent 438bc0bc

added @package tag


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@389 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/DefaultLookup.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib
  5 +*
4 6 * Class DefaultLookup
5 7 *
6 8 * Represents the base class for any table in the database that ends in a _lookup
... ...
lib/Log.inc
... ... @@ -5,6 +5,8 @@ define(&quot;INFO&quot;, 1);
5 5 define("ERROR", 2);
6 6  
7 7 /**
  8 + * @package lib
  9 + *
8 10 * $Id$
9 11 *
10 12 * File logging class
... ...
lib/documentmanagement/Document.inc
1 1 <?php
2 2 /**
  3 +* @package lib.documentmanagement
  4 +*
3 5 * Class Document
4 6 *
5 7 * Represents a document as per the documents database table
... ...
lib/documentmanagement/DocumentBrowser.inc
... ... @@ -3,6 +3,8 @@
3 3 require_once("$default->owl_fs_root/lib/security/permission.inc");
4 4  
5 5 /**
  6 + * @package lib.documentmanagement
  7 + *
6 8 * $Id$
7 9 *
8 10 * Contains document browsing business logic.
... ...
lib/documentmanagement/DocumentField.inc
1 1 <?php
2 2 /**
  3 +* @package lib.documentmanagement
  4 +*
3 5 * Class DocumentField
4 6 *
5 7 * Represents a document field as per the database document_fields table
... ...
lib/documentmanagement/DocumentFieldLink.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib.documentmanagement
  5 +*
4 6 * Class DocumentFieldLink
5 7 *
6 8 * Represents a document field link as per the database table document_fields_link
... ...
lib/documentmanagement/DocumentTransaction.inc
1 1 <?php
2 2 /**
  3 +* @package lib.documentmanagement
  4 +*
3 5 * Class DocumentTransaction
4 6 *
5 7 * Represents a document transaction as per the database table document_transaction
... ...
lib/documentmanagement/PhysicalDocumentManager.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib.documentmanagement
  5 +*
4 6 * Class PhysicalDocumentManager.inc
5 7 *
6 8 * Contains all functions required to upload, alter and
... ...
lib/email/Email.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib.email
  5 +*
4 6 * Class Email
5 7 *
6 8 * Contains static functions concerned with sending emails
... ...
lib/foldermanagement/Folder.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib.foldermanagement
  5 +*
4 6 * Class Folder
5 7 *
6 8 * Represents as folder as the per the folders table in the database
... ...
lib/foldermanagement/PhysicalFolderManagement.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib.foldermanagement
  5 +*
4 6 * Contains static functions for doing physical folder managements
5 7 * such as creating/deleting folders
6 8 *
... ...
lib/visualpatterns/PatternCustom.inc
1 1 <?php
2 2  
3 3 /**
  4 + * @package lib.visualpatterns
  5 + *
4 6 * $Id$
5 7 *
6 8 * Used to specify html code that is not catered for by any of the other patterns
... ...
lib/visualpatterns/PatternImage.inc
1 1 <?php
2 2  
3 3 /*
4   -Given an image URL, this class will render it inside a single cell table
5   -
6   -@author Rob Cherry, Jam Warehouse (Pty) Ltd, South Africa
7   -@date 7 January 2003
  4 +* @package lib.visualpatterns
  5 + *
  6 + * Given an image URL, this class will render it inside a single cell table
  7 + *
  8 + * @author Rob Cherry, Jam Warehouse (Pty) Ltd, South Africa
  9 + * @date 7 January 2003
8 10  
9 11 */
10 12  
... ...
lib/visualpatterns/PatternListBox.inc
1 1 <?php
2 2 /**
  3 +* @package lib.visualpatterns
  4 +*
3 5 * Class PatternListBox
4 6 *
5 7 * Creates a drop down list box using a table name and
... ...
lib/visualpatterns/PatternMainPage.inc
1 1 <?php
2 2  
3 3 /**
  4 +* @package lib.visualpatterns
  5 +*
4 6 * Main page of the document management system. Consists of a 2 x 2 HTML table.
5 7 * Custom defined payloads can be placed in each of the table cells, giving a reasonable
6 8 * amount of layout/design flexibility
... ...
lib/visualpatterns/PatternTableLinks.inc
1 1 <?php
2 2 /*
3   -
4   -Given an array of URLs, this class will render them as an
5   -HTML table with with specified number of rows and columns
6   -
7   -@author Rob Cherry, Jam Warehouse (Pty) Ltd, South Africa
8   -@date 7 January 2003
  3 +* @package lib.visualpatterns
  4 +*
  5 +*
  6 +* Given an array of URLs, this class will render them as an
  7 +* HTML table with with specified number of rows and columns
  8 +*
  9 +* @author Rob Cherry, Jam Warehouse (Pty) Ltd, South Africa
  10 +* @date 7 January 2003
9 11 */
10 12  
11 13 define("TEXT", 1);
... ...
lib/web/WebDocument.inc
1 1 <?php
2 2 /**
  3 +* @package lib.web
  4 +*
3 5 * Class Web Documents
4 6 *
5 7 * Represents a web document as per the web_documents table in the database
... ...