function aggregator_page_source
Same name and namespace in other branches
- 6.x drupal-6.x/modules/aggregator/aggregator.pages.inc \aggregator_page_source()
Page callback: Displays all the items captured from the particular feed.
Parameters
$feed: The feed for which to display all items.
Return value
The rendered list of items for a feed.
See also
1 call to aggregator_page_source()
- aggregator_page_source_form in drupal-7.x/
modules/ aggregator/ aggregator.pages.inc - Page callback: Displays a form with all items captured from a feed.
1 string reference to 'aggregator_page_source'
- aggregator_menu in drupal-7.x/
modules/ aggregator/ aggregator.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ aggregator/ aggregator.pages.inc, line 33 - User page callbacks for the Aggregator module.
Código
function aggregator_page_source($feed) {
drupal_set_title($feed->title);
$feed_source = theme('aggregator_feed_source', array('feed' => $feed));
// It is safe to include the fid in the query because it's loaded from the
// database by aggregator_feed_load.
$items = aggregator_feed_items_load('source', $feed);
return _aggregator_page_list($items, arg(3), $feed_source);
}