52 lines
1.0 KiB
PHP
52 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* IrcClient class that contains all the Plugins
|
|
* @author jpt
|
|
* @package Client
|
|
* @depends Client_AbstractClient
|
|
*/
|
|
class Client_BotClient extends Client_AbstractClient {
|
|
|
|
/**
|
|
* Default constructor.
|
|
* @return void
|
|
*/
|
|
public function __construct() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Does all the hard work.
|
|
* @param string $data
|
|
* @return string
|
|
*/
|
|
public function processContentObject($contentObject) {
|
|
$return = "";
|
|
$data = $contentObject->rawData;
|
|
if(strpos($data, "-") !== FALSE ) {
|
|
$data = explode("-", $data);
|
|
$this->clientManager->sendToID((int) $data[0], $data[1]."\r\n");
|
|
$return = print_r($data, TRUE);
|
|
}
|
|
|
|
if(strpos($data, "+") !== FALSE ) {
|
|
$data = explode("+", $data);
|
|
$this->clientManager->sendToGroup($data[0], $data[1]."\r\n");
|
|
$return = print_r($data, TRUE);
|
|
}
|
|
|
|
//TODO: implement this correctly
|
|
$this->protocolHandler->sendRaw($return);
|
|
}
|
|
|
|
/**
|
|
* Loads the given configuration.
|
|
* @param array $config
|
|
* @return void
|
|
*/
|
|
public function loadConfig($config) {
|
|
|
|
}
|
|
|
|
}
|
|
?>
|