*
* @return boolean true if processing completed, false for temporary failures
*/
- abstract function receive_raw_message($data);
+ abstract function receiveRawMessage($data);
/**
* get the screenname of the daemon that sends and receives message for this service
*/
function handle($data)
{
- return $this->plugin->receive_raw_message($data);
+ return $this->plugin->receiveRawMessage($data);
}
}
*
* @return true if processing completed, false if message should be reprocessed
*/
- function receive_raw_message($message)
+ function receiveRawMessage($message)
{
$info=Aim::getMessageInfo($message);
$from = $info['from'];
*
* @return boolean true if processing completed, false if message should be reprocessed
*/
- public function receive_raw_message($data) {
+ public function receiveRawMessage($data) {
if (strpos($data['source'], '#') === 0) {
$message = $data['message'];
$parts = explode(' ', $message, 2);
* @param array $data Data\r
* @return true if processing completed, false if message should be reprocessed\r
*/\r
- public function receive_raw_message($data) {\r
+ public function receiveRawMessage($data) {\r
$this->handle_incoming($data['sender'], $data['message']);\r
return true;\r
}\r
return $html . ' ' . $entry;
}
- function receive_raw_message($pl)
+ function receiveRawMessage($pl)
{
$from = $this->normalize($pl['from']);