X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=Uplink%2FEventHandler.interface.php;h=c33ce38eb975b0c82bbd691bf4a5bbbca61a0be7;hp=d4dc99cddbf58281c98e9efd5f6558884798a2d8;hb=7f51193ddac01b0540000c756c50167ff015e02a;hpb=d1fc76f5af98ff28ca6405cc5d6f50a3bbf0ac9b diff --git a/Uplink/EventHandler.interface.php b/Uplink/EventHandler.interface.php index d4dc99c..c33ce38 100644 --- a/Uplink/EventHandler.interface.php +++ b/Uplink/EventHandler.interface.php @@ -1,12 +1,10 @@ . * * * ************************************************************************ - * + * * Uplink/EventHandler.interface.php * * This file contains the Uplink EventHandler interface. @@ -27,21 +24,21 @@ */ interface EventHandler { - + public function event_newserver($server, $isBurst); 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_chanmode($user, $channel, $modes); - + public function event_chanmessage($user, $channel, $message); public function event_channotice($user, $channel, $message); public function event_chanctcp($user, $channel, $command, $text); @@ -50,11 +47,11 @@ interface EventHandler { 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); - + } ?> \ No newline at end of file