authzgroupsoo.php : Allow to access to DB objects

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5156 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2019-03-22 10:01:30 +00:00
parent c9d76686df
commit 28736b9a2f

View File

@@ -27,6 +27,42 @@ class authzgroupsoo
/** A local cache of the rights if multiple tests are needed */
private $rightCache = null;
/** Get the dbObject
*/
public function dbObject ()
// {{{
{
return $this->dbObject;
}
// }}}
/** Get the dbGroup
*/
public function dbGroup ()
// {{{
{
return $this->dbGroup;
}
// }}}
/** Get the dbGroupMember
*/
public function dbGroupMember ()
// {{{
{
return $this->dbGroupMember;
}
// }}}
/** Get the dbRight
*/
public function dbRight ()
// {{{
{
return $this->dbRight;
}
// }}}
/////////////////////
// USER RIGHTS //
/////////////////////