You are here

function feeds_xls_feeds_plugins in Feeds XLS 7

Implementation of hook_feeds_plugins().

File

./feeds_xls.module, line 6

Code

function feeds_xls_feeds_plugins() {
  $info = array();
  $info['FeedsExcelParser'] = array(
    'name' => 'Excel parser',
    'description' => 'Parses an excel file.',
    'handler' => array(
      'parent' => 'FeedsParser',
      'class' => 'FeedsExcelParser',
      'file' => 'FeedsExcelParser.inc',
      'path' => drupal_get_path('module', 'feeds_xls'),
    ),
  );
  return $info;
}