You are here

function biblio_filter_feed in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 biblio.module \biblio_filter_feed()
  2. 6 biblio.module \biblio_filter_feed()
  3. 7.2 biblio.module \biblio_filter_feed()
1 call to biblio_filter_feed()
biblio_page in includes/biblio.pages.inc

File

./biblio.module, line 2076
Bibliography Module for Drupal.

Code

function biblio_filter_feed($rss_info, $nids) {
  $base = variable_get('biblio_base', 'biblio');
  $channel['title'] = $rss_info['title'];
  $channel['link'] = url($base . $rss_info['link'], array(
    'absolute' => TRUE,
  ));
  $channel['description'] = $rss_info['description'];
  node_feed($nids, $channel);
}