Lines Matching +full:run +full:- +full:script
20 * Boston, MA 02110-1301 USA
33 function run(&$xml_reponse, $p) function in pfcProxyCommand_auth
45 // do not allow someone to run a command if he is not online
46 if ( !$u->isOnline() &&
47 $this->name != 'error' &&
48 $this->name != 'connect' &&
49 $this->name != 'update' )
54 $cmd->run($xml_reponse, $cmdp);
61 if ( in_array($this->name, $admincmd) )
64 $nickid = $u->nickid;
65 $isadmin = $container->getUserMeta($nickid, 'isadmin');
68 …$xml_reponse->script("alert('".addslashes(_pfc("You are not allowed to run '%s' command", $this->n…
74 if ($this->name == "join" ||
75 $this->name == "join2")
83 $banlist = $container->getChanMeta($chan, 'banlist_nickid');
85 $nickid = $u->nickid;
90 …$xml_reponse->script("pfc.handleResponse('".$this->proxyname."', 'ban', '".addslashes($msg)."');");
94 if (count($c->frozen_channels)>0)
96 if (!in_array($channame,$c->frozen_channels))
100 …$xml_reponse->script("pfc.handleResponse('".$this->proxyname."', 'frozen', '".addslashes($msg)."')…
112 return $this->next->run($xml_reponse, $p);