X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=Uplink%2FEventHandler.interface.php;h=e0b20e2969485a9b46de51e0c0729d30e272db6f;hp=a7665f6ebca02f2d2f2b6f5bf88e5d39b0013229;hb=0f30e96ae37491aee19e72b89cc54a6798d1f254;hpb=533697794c0f7fc54dd0c567da740b2b87338f43 diff --git a/Uplink/EventHandler.interface.php b/Uplink/EventHandler.interface.php index a7665f6..e0b20e2 100644 --- a/Uplink/EventHandler.interface.php +++ b/Uplink/EventHandler.interface.php @@ -1,22 +1,19 @@ . * * * ************************************************************************ * @@ -32,17 +29,28 @@ interface EventHandler { public function event_squit($server); public function event_connect($user, $isBurst); + public function event_nick($user, $newNick); + public function event_usermode($user, $modes); public function event_quit($user, $reason); + public function event_away($user, $away); public function event_join($user, $channel, $isBurst); public function event_part($user, $channel, $reason); public function event_kick($user, $target, $channel, $reason); - public function event_mode($user, $channel, $modes); + public function event_chanmode($user, $channel, $modes); public function event_chanmessage($user, $channel, $message); - public function event_channotice($user, $channel, $message); - public function event_privmessage($user, $channel, $message); - public function event_privnotice($user, $channel, $message); + public function event_channotice($user, $channel, $message); + public function event_chanctcp($user, $channel, $command, $text); + public function event_chanctcpreply($user, $target, $command, $text); + public function event_privmessage($user, $target, $message); + public function event_privnotice($user, $target, $message); + public function event_privctcp($user, $target, $command, $text); + public function event_privctcpreply($user, $target, $command, $text); + + + public function event_preparse($from, $command, $arguments); + public function event_unknown_cmd($from, $command, $arguments); }