mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 08:55:54 +00:00
- added more documentation
This commit is contained in:
parent
778f198515
commit
68b05f5119
|
@ -49,6 +49,11 @@ class LetoDMS_Document { /* {{{ */
|
|||
*/
|
||||
var $_comment;
|
||||
|
||||
/**
|
||||
* @var integer unix timestamp of creation date
|
||||
*/
|
||||
var $_date;
|
||||
|
||||
/**
|
||||
* @var integer id of user who is the owner
|
||||
*/
|
||||
|
@ -68,6 +73,10 @@ class LetoDMS_Document { /* {{{ */
|
|||
* @var boolean true if access is inherited, otherwise false
|
||||
*/
|
||||
var $_inheritAccess;
|
||||
|
||||
/**
|
||||
* @var integer default access if access rights are not inherited
|
||||
*/
|
||||
var $_defaultAccess;
|
||||
|
||||
/**
|
||||
|
@ -81,7 +90,7 @@ class LetoDMS_Document { /* {{{ */
|
|||
var $_keywords;
|
||||
|
||||
/**
|
||||
* @var integer position of document within parent folder
|
||||
* @var integer position of document within the parent folder
|
||||
*/
|
||||
var $_sequence;
|
||||
|
||||
|
@ -196,6 +205,11 @@ class LetoDMS_Document { /* {{{ */
|
|||
return true;
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Return creation date of document
|
||||
*
|
||||
* @return integer unix timestamp of creation date
|
||||
*/
|
||||
function getDate() { /* {{{ */
|
||||
return $this->_date;
|
||||
} /* }}} */
|
||||
|
|
Loading…
Reference in New Issue
Block a user