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);
 }
Пример #2
0
 function handle($notice)
 {
     $profile = $notice->getProfile();
     $notifier = new RSSCloudNotifier();
     return $notifier->notify($profile);
 }