From 28736b9a2f550098242799a22bfd6253e31aa307 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Fri, 22 Mar 2019 10:01:30 +0000 Subject: [PATCH] authzgroupsoo.php : Allow to access to DB objects git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5156 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- authzgroupsoo.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/authzgroupsoo.php b/authzgroupsoo.php index ffd0167..5cb4da3 100644 --- a/authzgroupsoo.php +++ b/authzgroupsoo.php @@ -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 // /////////////////////