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