1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- class PingQueueHandler extends QueueHandler {
- function transport() {
- return 'ping';
- }
- function handle($notice) {
- require_once INSTALLDIR . '/lib/ping.php';
- return ping_broadcast_notice($notice);
- }
- }
|