Page callback: Displays a form with all items captured from a feed.

Parameters

$feed: The feed for which to list all of the aggregated items.

Return value

The rendered list of items for the feed.

See also

aggregator_page_source()

1 string reference to 'aggregator_page_source_form'
aggregator_menu in modules/aggregator/aggregator.module
Implements hook_menu().

File

modules/aggregator/aggregator.pages.inc, line 55
User page callbacks for the Aggregator module.

Code

function aggregator_page_source_form($form, $form_state, $feed) {
  return aggregator_page_source($feed);
}