12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
- class ImQueueHandler extends QueueHandler
- {
- function __construct($plugin)
- {
- $this->plugin = $plugin;
- }
-
- function handle($notice)
- {
- $this->plugin->broadcastNotice($notice);
- if ($notice->is_local == Notice::LOCAL_PUBLIC ||
- $notice->is_local == Notice::LOCAL_NONPUBLIC) {
- $this->plugin->publicNotice($notice);
- }
- return true;
- }
- }
|