You are here

function feeds_ex_test_feeds_plugins in Feeds extensible parsers 7.2

Same name and namespace in other branches
  1. 7 tests/feeds_ex_test.module \feeds_ex_test_feeds_plugins()

Implements hook_feeds_plugins().

File

tests/feeds_ex_test.module, line 11
Test module for feeds_ex.

Code

function feeds_ex_test_feeds_plugins() {
  return array(
    'FeedsExTestUi' => array(
      'name' => 'Test UI parser',
      'description' => 'Do not use this.',
      'handler' => array(
        'parent' => 'FeedsExBase',
        'class' => 'FeedsExTestUi',
        'file' => 'FeedsExTestUi.inc',
      ),
    ),
  );
}