$property; } } public function __construct($dw_auth, $user_nick, $action, $conf) { $this->dw_auth = $dw_auth; $this->user_nick = $user_nick; $this->action = $action; $this->conf = $conf; $this->db_helper = plugin_load('helper', 'bez_db'); $this->sqlite = $this->db_helper->getDB(); $this->db = $this->sqlite->getAdapter()->getDb(); $this->db->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); $this->acl = new Acl($this); $this->userFactory = new UserFactory($this); $this->threadFactory = new ThreadFactory($this); $this->labelFactory = new LabelFactory($this); $this->thread_commentFactory = new Thread_commentFactory($this); $this->taskFactory = new TaskFactory($this); $this->task_programFactory = new Task_programFactory($this); $this->task_commentFactory = new Task_commentFactory($this); $this->authentication_tokenFactory = new Authentication_tokenFactory($this); } }