Create IM plugin, Pluginize XMPP, Create AIM plugin

This commit is contained in:
Craig Andrews
2010-01-23 01:25:27 -05:00
parent 5224c7d6c2
commit e9995b0f6a
42 changed files with 4968 additions and 1416 deletions

View File

@@ -36,20 +36,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
class QueueHandler
{
/**
* Return transport keyword which identifies items this queue handler
* services; must be defined for all subclasses.
*
* Must be 8 characters or less to fit in the queue_item database.
* ex "email", "jabber", "sms", "irc", ...
*
* @return string
*/
function transport()
{
return null;
}
/**
* Here's the meat of your queue handler -- you're handed a Notice
* or other object, which you may do as you will with.