This commit is contained in:
Paminger
2016-03-14 07:10:51 +01:00
parent f4aa42caa1
commit d28f79e855
4 changed files with 68 additions and 6 deletions
+3 -1
View File
@@ -11,10 +11,12 @@ class MY_Model extends CI_Model
class DB_Model extends MY_Model
{
function __construct()
function __construct($uid=null)
{
parent::__construct();
$this->load->database();
// Loading Tools for Access Control (Benutzerberechtigungen)
$this->load->library('FHC_DB_ACL',array('uid' => $uid));
}
}