function aggregator_page_category_form

Page callback: Displays a form containing items aggregated in a category.

Parameters

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

Return value

The rendered list of items for the feed.

See also

aggregator_page_category()

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

File

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

Code

function aggregator_page_category_form($form, $form_state, $category) {
  return aggregator_page_category($category);
}