Method |
Description |
|
doAction ( string $target, string $text ) : void |
Sends a CTCP ACTION (/me) command to a nick or channel. |
|
doConnect ( ) : void |
Initiates a connection with the server. |
|
doFinger ( string $nick, string $finger = null ) : void |
Sends a CTCP FINGER request to a user. |
|
doInvite ( string $nick, string $channel ) : void |
Invites a user to an invite-only channel. |
|
doJoin ( string $channels, string $keys = null ) : void |
Joins a channel. |
|
doKick ( string $nick, string $channel, string $reason = null ) : void |
Kicks a user from a channel. |
|
doList ( string $channels = null ) : void |
Obtains a list of channel names and topics. |
|
doMode ( string $target, string $mode = null, string $param = null ) : void |
Retrieves or changes a channel or user mode. |
|
doNames ( string $channels ) : void |
Obtains a list of nicks of users in specified channels. |
|
doNick ( string $nick ) : void |
Changes the client nick. |
|
doNotice ( string $target, string $text ) : void |
Sends a notice to a nick or channel. |
|
doPart ( string $channels ) : void |
Leaves a channel. |
|
doPing ( string $nick, string $hash ) : void |
Sends a CTCP PING request to a user. |
|
doPong ( string $daemon ) : void |
Responds to a server test of client responsiveness. |
|
doPrivmsg ( string $target, string $text ) : void |
Sends a message to a nick or channel. |
|
doQuit ( string $reason = null ) : void |
Terminates the connection with the server. |
|
doRaw ( string $command ) : void |
Sends a raw command to the server. |
|
doTime ( string $nick, string $time = null ) : void |
Sends a CTCP TIME request to a user. |
|
doTopic ( string $channel, string $topic = null ) : void |
Retrieves or changes a channel topic. |
|
doVersion ( string $nick, string $version = null ) : void |
Sends a CTCP VERSION request or response to a user. |
|
doWhois ( string $nick ) : void |
Retrieves information about a nick. |
|
getConnection ( ) : Phergie_Connection |
Returns the currently active connection. |
|
getEvent ( ) : Phergie_Event_Interface | null |
Returns an event if one has been received from the server. |
|
setConnection ( Phergie_Connection $connection ) : Phergie_Driver_Abstract |
Sets the currently active connection. |
|