You are here

function feeds_tests_feeds_processor_config_defaults in Feeds 7.2

Implements hook_feeds_PLUGIN_TYPE_config_defaults() for plugin 'processor'.

See also

feeds_tests_form_feedsnodeprocessor_feeds_form_alter()

File

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

Code

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