Home
last modified time | relevance | path

Searched refs:nick (Results 26 – 37 of 37) sorted by last modified time

12

/plugin/freechat/phpfreechat/src/commands/
H A Dkick.class.php21 $nick = isset($params[0]) ? $params[0] : '';
30 if ($nick == '')
43 $otherid = $ct->getNickId($nick);
H A Dnick.class.php47 $u->nick = $newnick;
78 $u->nick = $newnick;
H A Dnotice.class.php24 $nick = $ct->getNickname($u->nickid);
25 $res = $ct->write($recipient, $nick, "notice", $msg);
H A Dprivmsg.class.php46 $nick = $ct->getNickname($u->nickid);
H A Dquit.class.php19 $nick = $ct->getNickname($u->nickid);
H A Dunban.class.php23 $nick = isset($params[0]) ? $params[0] : '';
24 $nickid = $ct->getNickId($nick);
26 if ($nick == "")
54 $msg = "<p>"._pfc("%s has been unbanished", $nick)."</p>";
56 else if ($nick == "all") // @todo move the "/unban all" command in another command /unbanall
H A Dupdate.class.php20 if ($u->nick != '' && !$u->isOnline())
24 $cmdp['params'] = array($u->nick);
/plugin/freechat/phpfreechat/src/
H A Dpfccontainer.class.php104 function createNick($nickid, $nick) argument
108 if ($nick == '')
113 $this->setMeta("nickid-to-metadata", $nickid, 'nick', $nick);
114 $this->setMeta("metadata-to-nickid", 'nick', $this->encode($nick), $nickid);
255 function getNickId($nick) argument
257 $nickid = $this->getMeta("metadata-to-nickid", 'nick', $this->encode($nick), true);
269 $nick = $this->getMeta("nickid-to-metadata", $nickid, 'nick', true);
270 $nick = isset($nick["value"][0]) ? $this->decode($nick["value"][0]) : "";
271 return $nick;
378 function write($chan, $nick, $cmd, $param) argument
[all …]
/plugin/freechat/phpfreechat/src/proxies/
H A Dchecknickchange.class.php90 $oldnick != $c->nick &&
91 … $c->nick != '' && // don't change the nickname to empty or the asknick popup will loop indefinatly
96 $cmdp["param"] = $c->nick;
H A Dchecktimeout.class.php52 $nick = $disconnected_users["nick"][$i];
62 $cmdp["param"] = _pfc("%s quit (timeout)", $nick);
/plugin/freechat/phpfreechat/themes/default/
H A Dchat.js.tpl.php32 <?php $nick = $u->getNickname() != '' ? $json->encode($u->getNickname()) : $json->encode($c->nick);… variable
35 …hp echo ($GLOBALS["output_encoding"]=="UTF-8" ? $nick : iconv("UTF-8", $GLOBALS["output_encoding"]…
/plugin/freechat/phpfreechat/data/public/themes/default/
H A Dchat.html.tpl.php24 ><?php echo phpFreeChat::FilterSpecialChar($u->nick); ?></p>

12