Lines Matching refs:this

61 			return $this->$property;
68 return $this->$prop;
72 if ($level > $this->level) {
73 $this->level = $level;
78 return $this->level;
82 $this->dw_auth = $dw_auth;
83 $this->user_nick = $user_nick;
84 $this->action = $action;
85 $this->conf = $action->getGlobalConf();
87 $this->db_helper = plugin_load('helper', 'bez_db');
89 $this->sqlite = $this->db_helper->getDB();
90 $this->db = $this->sqlite->getAdapter()->getPdo();
91 $this->db->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
92 $busy_timeout = 1000 * (int)$this->action->getConf('busy_timeout');
93 $this->db->exec("PRAGMA busy_timeout = $busy_timeout");
95 $this->userFactory = new UserFactory($this);
97 $this->threadFactory = new ThreadFactory($this);
99 $this->labelFactory = new LabelFactory($this);
101 $this->thread_commentFactory = new Thread_commentFactory($this);
103 $this->taskFactory = new TaskFactory($this);
105 $this->task_programFactory = new Task_programFactory($this);
107 $this->task_commentFactory = new Task_commentFactory($this);
109 $this->authentication_tokenFactory = new Authentication_tokenFactory($this);
111 $this->subscriptionFactory = new SubscriptionFactory($this);
114 $this->update_level(BEZ_AUTH_ADMIN);
116 $userd = $this->dw_auth->getUserData($this->user_nick);
120 $this->update_level(BEZ_AUTH_ADMIN);
122 $this->update_level(BEZ_AUTH_LEADER);
124 $this->update_level(BEZ_AUTH_USER);
127 $page_id = $this->action->id();
130 if ($this->authentication_tokenFactory->get_token($page_id) == $user_tok) {
131 $this->update_level(BEZ_AUTH_VIEWER);