]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
enqueue_outgoing_raw -> enqueueOutgoingRaw
authorCraig Andrews <candrews@integralblue.com>
Tue, 31 Aug 2010 04:05:03 +0000 (00:05 -0400)
committerCraig Andrews <candrews@integralblue.com>
Fri, 3 Sep 2010 21:50:28 +0000 (17:50 -0400)
lib/immanager.php
lib/implugin.php
plugins/Aim/AimPlugin.php
plugins/Irc/IrcPlugin.php
plugins/Msn/MsnPlugin.php
plugins/Xmpp/Queued_XMPP.php

index da80b74b7f71b3311dacd0171a04a76c257976ee..9563a53262d786cb2dc1ff3b56d59db5feb643ea 100644 (file)
@@ -31,7 +31,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
  * 2) override handleInput() with what to do when data is waiting on
  *    one of the sockets
  * 3) override idle($timeout) to do keepalives (if necessary)
- * 4) implement send_raw_message() to send raw data that ImPlugin::enqueue_outgoing_raw
+ * 4) implement send_raw_message() to send raw data that ImPlugin::enqueueOutgoingRaw
  *      enqueued
  */
 
index 8a208221af342c997a153e3d300e76a6ad855657..32aed28edf2f5955245f0fb1638452f8bb7e0007 100644 (file)
@@ -79,7 +79,7 @@ abstract class ImPlugin extends Plugin
     /**
      * send a single notice to a given screenname
      * The implementation should put raw data, ready to send, into the outgoing
-     *   queue using enqueue_outgoing_raw()
+     *   queue using enqueueOutgoingRaw()
      *
      * @param string $screenname screenname to send to
      * @param Notice $notice notice to send
@@ -94,7 +94,7 @@ abstract class ImPlugin extends Plugin
     /**
      * send a message (text) to a given screenname
      * The implementation should put raw data, ready to send, into the outgoing
-     *   queue using enqueue_outgoing_raw()
+     *   queue using enqueueOutgoingRaw()
      *
      * @param string $screenname screenname to send to
      * @param Notice $body text to send
@@ -144,7 +144,7 @@ abstract class ImPlugin extends Plugin
      *
      * @param object $data
      */
-    function enqueue_outgoing_raw($data)
+    function enqueueOutgoingRaw($data)
     {
         $qm = QueueManager::get();
         $qm->enqueue($data, $this->transport . '-out');
index 231dc0b271db5bd29ac8bad1936803882f363c09..3f394a7404ac21ddc218bb930a706c5c3b21adab 100644 (file)
@@ -122,7 +122,7 @@ class AimPlugin extends ImPlugin
     function sendMessage($screenname, $body)
     {
         $this->fake_aim->sendIm($screenname, $body);
-           $this->enqueue_outgoing_raw($this->fake_aim->would_be_sent);
+           $this->enqueueOutgoingRaw($this->fake_aim->would_be_sent);
         return true;
     }
 
index bebd0eaf3ab9c905ee6dabef9f57ed01ab086e13..87cd8f72cf8be4ac0a55cb8776963a39cfa8123a 100644 (file)
@@ -193,7 +193,7 @@ class IrcPlugin extends ImPlugin {
         $lines = explode("\n", $body);
         foreach ($lines as $line) {
             $this->fake_irc->doPrivmsg($screenname, $line);
-            $this->enqueue_outgoing_raw(array('type' => 'message', 'prioritise' => 0, 'data' => $this->fake_irc->would_be_sent));
+            $this->enqueueOutgoingRaw(array('type' => 'message', 'prioritise' => 0, 'data' => $this->fake_irc->would_be_sent));
         }
         return true;
     }
@@ -316,7 +316,7 @@ class IrcPlugin extends ImPlugin {
     */
     public function checked_send_confirmation_code($screenname, $code, $user) {
         $this->fake_irc->doPrivmsg('NickServ', 'INFO '.$screenname);
-        $this->enqueue_outgoing_raw(
+        $this->enqueueOutgoingRaw(
             array(
                 'type' => 'nickcheck',
                 'prioritise' => 1,
index 68e57fa09eda86e4131fa987629a6922d8b3a531..9912021d75b69ffddb6265e989fc3fa3f17cf7ef 100644 (file)
@@ -162,7 +162,7 @@ class MsnPlugin extends ImPlugin {
      * @return boolean success value\r
      */\r
     public function sendMessage($screenname, $body) {\r
-        $this->enqueue_outgoing_raw(array('to' => $screenname, 'message' => $body));\r
+        $this->enqueueOutgoingRaw(array('to' => $screenname, 'message' => $body));\r
         return true;\r
     }\r
 \r
index 73eff22467b52e8a38354a131c077f7af0248059..24f542805b2a068139e889ad78ade80a26f428a5 100644 (file)
@@ -79,7 +79,7 @@ class Queued_XMPP extends XMPPHP_XMPP
      */
     public function send($msg, $timeout=NULL)
     {
-        $this->plugin->enqueue_outgoing_raw($msg);
+        $this->plugin->enqueueOutgoingRaw($msg);
     }
 
     //@{