X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=Uplink%2FEventHandler.interface.php;h=d4dc99cddbf58281c98e9efd5f6558884798a2d8;hp=b441841d26301d051cf175dd1ee20562c1eb4dcf;hb=d1fc76f5af98ff28ca6405cc5d6f50a3bbf0ac9b;hpb=17772362fe24245496732bcc759aa9775ba728a5 diff --git a/Uplink/EventHandler.interface.php b/Uplink/EventHandler.interface.php index b441841..d4dc99c 100644 --- a/Uplink/EventHandler.interface.php +++ b/Uplink/EventHandler.interface.php @@ -35,6 +35,7 @@ interface EventHandler { 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); @@ -42,9 +43,14 @@ interface EventHandler { 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);