You are here

class FeedsTestsPreprocess in Feeds 7.2

Helper class to ensure callbacks can be objects.

Hierarchy

Expanded class hierarchy of FeedsTestsPreprocess

1 string reference to 'FeedsTestsPreprocess'
feeds_tests_feeds_processor_targets in tests/feeds_tests.module
Implements hook_feeds_processor_targets().

File

tests/feeds_tests.module, line 635
Helper module for Feeds tests.

View source
class FeedsTestsPreprocess {

  /**
   * Preprocess callback for test_target.
   *
   * @see feeds_tests_feeds_processor_targets()
   */
  public static function callback(array $target, array &$mapping) {
    $mapping['required_value'] = TRUE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FeedsTestsPreprocess::callback public static function Preprocess callback for test_target.