1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class FacebookQueueHandler extends QueueHandler
- {
- function transport()
- {
- return 'facebook';
- }
- function handle($notice)
- {
- if ($this->_isLocal($notice)) {
- return Facebookclient::facebookBroadcastNotice($notice);
- }
- return true;
- }
-
- function _isLocal($notice)
- {
- return ($notice->is_local == Notice::LOCAL_PUBLIC ||
- $notice->is_local == Notice::LOCAL_NONPUBLIC);
- }
- }
|