function aggregator_aggregator_fetch_info

7.x aggregator.fetcher.inc aggregator_aggregator_fetch_info()

Implements hook_aggregator_fetch_info().

File

drupal-7.x/modules/aggregator/aggregator.fetcher.inc, line 11
Fetcher functions for the aggregator module.

Code

function aggregator_aggregator_fetch_info() {
  return array(
    'title' => t('Default fetcher'),
    'description' => t('Downloads data from a URL using Drupal\'s HTTP request handler.'),
  );
}