Lines Matching refs:this

28     $this->nickid = sha1(session_id());
31 $this->_getParam("nick");
32 …if (!isset($this->nick)) $this->_setParam("nick",""); // setup a blank nick if it is not yet in se…
33 $this->_getParam("active");
34 if (!isset($this->active)) $this->_setParam("active",false);
35 $this->_getParam("channels");
36 if (!isset($this->channels)) $this->_setParam("channels",array());
37 $this->_getParam("privmsg");
38 if (!isset($this->privmsg)) $this->_setParam("privmsg",array());
39 $this->_getParam("serverid");
40 if (!isset($this->serverid)) $this->_setParam("serverid",$c->serverid);
56 if (!isset($this->$p))
59 $nickid = 'pfcuserconfig_'.$c->getId().'_'.$this->nickid;
62 $this->$p = $_SESSION[$nickid_param];
64 return $this->$p;
70 $nickid_param = 'pfcuserconfig_'.$c->getId().'_'.$this->nickid.'_'.$p;
72 $this->$p = $v;
78 $nickid_param = 'pfcuserconfig_'.$c->getId().'_'.$this->nickid.'_'.$p;
80 unset($this->$p);
81 if ($p == 'active') $this->active = false;
87 $this->_rmParam("nick");
88 $this->_rmParam("active");
89 $this->_rmParam("channels");
90 $this->_rmParam("privmsg");
91 $this->_rmParam("serverid");
102 $this->_setParam("nick", $this->nick);
103 $this->_setParam("active", $this->active);
104 $this->_setParam("channels", $this->channels);
105 $this->_setParam("privmsg", $this->privmsg);
106 $this->_setParam("serverid", $this->serverid);
113 $online = $ct->isNickOnline(NULL, $this->nickid);
119 if ($this->nick != '') return $this->nick;
121 return $ct->getNickname($this->nickid);
127 foreach( $this->channels as $v )
134 foreach( $this->privmsg as $v )