function feeds_crawler_feeds_plugins in Feeds Crawler 7
Same name and namespace in other branches
- 7.2 feeds_crawler.feeds.inc \feeds_crawler_feeds_plugins()
Implements hook_feeds_plugings().
File
- ./
feeds_crawler.module, line 11 - Feeds crawler.module
Code
function feeds_crawler_feeds_plugins() {
$info = array();
$info['FeedsCrawler'] = array(
'name' => 'Crawling Fetcher',
'description' => 'Fetches multiple pages.',
'help' => 'Download content from a URL or many.',
'handler' => array(
'parent' => 'FeedsHTTPFetcher',
'class' => 'FeedsCrawler',
'file' => 'FeedsCrawler.inc',
'path' => drupal_get_path('module', 'feeds_crawler'),
),
);
return $info;
}