function aggregator_page_source_form

Form constructor to show all items captured from a feed.

Parameters

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

Return value

string The rendered list of items for the feed.

See also

aggregator_menu()

aggregator_page_source()

Related topics

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

File

drupal/core/modules/aggregator/aggregator.pages.inc, line 45
User page callbacks for the Aggregator module.

Code

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