Initial Commit
This commit is contained in:
85
application/core/chat.iControl.php
Normal file
85
application/core/chat.iControl.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace iControl;
|
||||
|
||||
/**
|
||||
* Class for chat methods
|
||||
*
|
||||
* @author steeffeen
|
||||
*/
|
||||
class Chat {
|
||||
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $iControl = null;
|
||||
|
||||
private $config = null;
|
||||
|
||||
private $prefix = 'iControl>';
|
||||
|
||||
/**
|
||||
* Construct iControl chat
|
||||
*/
|
||||
public function __construct($iControl) {
|
||||
$this->iControl = $iControl;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('chat.iControl.xml');
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a chat message to the given login
|
||||
*
|
||||
* @param string $login
|
||||
* @param string $message
|
||||
* @param bool $prefix
|
||||
*/
|
||||
public function sendChat($message, $login = null, $prefix = false) {
|
||||
if (!$this->iControl->client) return false;
|
||||
if ($login === null) {
|
||||
return $this->iControl->client->query('ChatSendServerMessage', ($prefix ? $this->prefix : '') . $message);
|
||||
}
|
||||
else {
|
||||
return $this->iControl->client->query('ChatSendServerMessageToLogin', ($prefix ? $this->prefix : '') . $message, $login);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Send an information message to the given login
|
||||
*
|
||||
* @param string $login
|
||||
* @param string $message
|
||||
* @param bool $prefix
|
||||
*/
|
||||
public function sendInformation($message, $login = null, $prefix = false) {
|
||||
$format = (string) $this->config->messages->information;
|
||||
return $this->sendChat($format . $message, $login);
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a success message to the given login
|
||||
*
|
||||
* @param string $message
|
||||
* @param string $login
|
||||
* @param bool $prefix
|
||||
*/
|
||||
public function sendSuccess($message, $login = null, $prefix = false) {
|
||||
$format = (string) $this->config->messages->success;
|
||||
return $this->sendChat($format . $message, $login);
|
||||
}
|
||||
|
||||
/**
|
||||
* Send an error message to the given login
|
||||
*
|
||||
* @param string $login
|
||||
* @param string $message
|
||||
* @param bool $prefix
|
||||
*/
|
||||
public function sendError($message, $login = null, $prefix = false) {
|
||||
$format = (string) $this->config->messages->error;
|
||||
return $this->sendChat($format . $message, $login);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user