On this page
function aggregator_page_source
aggregator_page_source($feed)
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
File
- modules/aggregator/aggregator.pages.inc, line 33
- User page callbacks for the Aggregator module.
Code
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);
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!aggregator!aggregator.pages.inc/function/aggregator_page_source/7.x