add method getDMS() to class SeedDMS_Core_User and SeedDMS_Core_Group

This commit is contained in:
Uwe Steinmann 2021-01-28 21:05:52 +01:00
parent 52a8f2d268
commit 32ca8ccae3
2 changed files with 14 additions and 0 deletions

View File

@ -131,6 +131,13 @@ class SeedDMS_Core_Group { /* {{{ */
$this->_dms = $dms; $this->_dms = $dms;
} /* }}} */ } /* }}} */
/**
* @return SeedDMS_Core_DMS $dms
*/
function getDMS() {
return $this->_dms;
}
/** /**
* @return int * @return int
*/ */

View File

@ -257,6 +257,13 @@ class SeedDMS_Core_User { /* {{{ */
$this->_dms = $dms; $this->_dms = $dms;
} }
/**
* @return SeedDMS_Core_DMS $dms
*/
function getDMS() {
return $this->_dms;
}
/** /**
* @return int * @return int
*/ */