aggregator_aggregator_fetch_info

  1. drupal
    1. 7
Versions
7 aggregator_aggregator_fetch_info()

Implements hook_aggregator_fetch_info().

Code

drupal/modules/aggregator/aggregator.fetcher.inc, line 12

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