mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 13:11:31 +00:00
- added some more documentation
This commit is contained in:
parent
fd41c75698
commit
232325ccf9
|
@ -33,8 +33,9 @@ require_once("inc.ClassNotification.php");
|
||||||
* objects representing the entities in the dms, like folders, documents,
|
* objects representing the entities in the dms, like folders, documents,
|
||||||
* users, or groups.
|
* users, or groups.
|
||||||
*
|
*
|
||||||
* Each dms has its own database for meta data and data store for document
|
* Each dms has its own database for meta data and a data store for document
|
||||||
* content. All folders and documents are organized in a hierachy like
|
* content. Both must be specified when creating a new instance of this class.
|
||||||
|
* All folders and documents are organized in a hierachy like
|
||||||
* a regular file system starting with a {@link $rootFolderID}
|
* a regular file system starting with a {@link $rootFolderID}
|
||||||
*
|
*
|
||||||
* This class does not enforce any access rights on documents and folders
|
* This class does not enforce any access rights on documents and folders
|
||||||
|
|
|
@ -25,6 +25,16 @@ define("S_EXPIRED", -3);
|
||||||
/**
|
/**
|
||||||
* Class to represent a document in the document management system
|
* Class to represent a document in the document management system
|
||||||
*
|
*
|
||||||
|
* A document in LetoDMS is similar to files in a regular file system.
|
||||||
|
* Documents may have any number of content elements
|
||||||
|
* ({@link LetoDMS_Core_DocumentContent}). These content elements are often
|
||||||
|
* called versions ordered in a timely manner. The most recent content element
|
||||||
|
* is the current version.
|
||||||
|
*
|
||||||
|
* Documents can be linked to other documents and can have attached files.
|
||||||
|
* The document content can be anything that can be stored in a regular
|
||||||
|
* file.
|
||||||
|
*
|
||||||
* @category DMS
|
* @category DMS
|
||||||
* @package LetoDMS_Core
|
* @package LetoDMS_Core
|
||||||
* @author Markus Westphal, Malcolm Cowe, Matteo Lucarelli,
|
* @author Markus Westphal, Malcolm Cowe, Matteo Lucarelli,
|
||||||
|
|
|
@ -15,6 +15,10 @@
|
||||||
/**
|
/**
|
||||||
* Class to represent a folder in the document management system
|
* Class to represent a folder in the document management system
|
||||||
*
|
*
|
||||||
|
* A folder in LetoDMS is equivalent to a directory in a regular file
|
||||||
|
* system. It can contain further subfolders and documents. Each folder
|
||||||
|
* has a single parent except for the root folder which has no parent.
|
||||||
|
*
|
||||||
* @category DMS
|
* @category DMS
|
||||||
* @package LetoDMS_Core
|
* @package LetoDMS_Core
|
||||||
* @version @version@
|
* @version @version@
|
||||||
|
|
Loading…
Reference in New Issue
Block a user