receive_raw_message -> receiveRawMessage

This commit is contained in:
Craig Andrews 2010-08-31 00:03:37 -04:00
parent 80176b0b2c
commit 764e0ab962
6 changed files with 6 additions and 6 deletions

View File

@ -117,7 +117,7 @@ abstract class ImPlugin extends Plugin
* *
* @return boolean true if processing completed, false for temporary failures * @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 * get the screenname of the daemon that sends and receives message for this service

View File

@ -37,6 +37,6 @@ class ImReceiverQueueHandler extends QueueHandler
*/ */
function handle($data) function handle($data)
{ {
return $this->plugin->receive_raw_message($data); return $this->plugin->receiveRawMessage($data);
} }
} }

View File

@ -131,7 +131,7 @@ class AimPlugin extends ImPlugin
* *
* @return true if processing completed, false if message should be reprocessed * @return true if processing completed, false if message should be reprocessed
*/ */
function receive_raw_message($message) function receiveRawMessage($message)
{ {
$info=Aim::getMessageInfo($message); $info=Aim::getMessageInfo($message);
$from = $info['from']; $from = $info['from'];

View File

@ -203,7 +203,7 @@ class IrcPlugin extends ImPlugin {
* *
* @return boolean true if processing completed, false if message should be reprocessed * @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) { if (strpos($data['source'], '#') === 0) {
$message = $data['message']; $message = $data['message'];
$parts = explode(' ', $message, 2); $parts = explode(' ', $message, 2);

View File

@ -172,7 +172,7 @@ class MsnPlugin extends ImPlugin {
* @param array $data Data * @param array $data Data
* @return true if processing completed, false if message should be reprocessed * @return true if processing completed, false if message should be reprocessed
*/ */
public function receive_raw_message($data) { public function receiveRawMessage($data) {
$this->handle_incoming($data['sender'], $data['message']); $this->handle_incoming($data['sender'], $data['message']);
return true; return true;
} }

View File

@ -364,7 +364,7 @@ class XmppPlugin extends ImPlugin
return $html . ' ' . $entry; return $html . ' ' . $entry;
} }
function receive_raw_message($pl) function receiveRawMessage($pl)
{ {
$from = $this->normalize($pl['from']); $from = $this->normalize($pl['from']);