. */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } class RSSCloudQueueHandler extends QueueHandler { function transport() { return 'rsscloud'; } function handle($notice) { try { $profile = $notice->getProfile(); } catch (Exception $e) { common_log(LOG_ERR, "Dropping RSSCloud item for notice with bogus profile: " . $e->getMessage()); return true; } $notifier = new RSSCloudNotifier(); return $notifier->notify($profile); } }