You are here

function feeds_tests_feeds_fetcher_config_defaults in Feeds 7.2

Implements hook_feeds_PLUGIN_TYPE_config_defaults() for plugin 'fetcher'.

See also

feeds_tests_form_feedshttpfetcher_feeds_form_alter()

File

tests/feeds_tests.feeds.inc, line 51
Feeds hooks implementations.

Code

function feeds_tests_feeds_fetcher_config_defaults(FeedsPlugin $plugin) {
  if (!variable_get('feeds_tests_hook_config_defaults', FALSE)) {
    return;
  }
  return array(
    'feeds_tests_fetcher_extra_setting' => FALSE,
  );
}