You are here

function feeds_excel_feeds_plugins in Feeds Excel 7.2

Same name and namespace in other branches
  1. 6 feeds_excel.module \feeds_excel_feeds_plugins()
  2. 7 feeds_excel.module \feeds_excel_feeds_plugins()

Implements hook_feeds_plugins().

File

./feeds_excel.module, line 11
The main file of the feeds_excel module.

Code

function feeds_excel_feeds_plugins() {
  $info = array();
  $info['FeedsExcelParser'] = array(
    'name' => 'Excel parser',
    'description' => 'Parse data in xls, xlsx formats.',
    'handler' => array(
      'parent' => 'FeedsParser',
      'class' => 'FeedsExcelParser',
      'file' => 'FeedsExcelParser.inc',
      'path' => drupal_get_path('module', 'feeds_excel'),
    ),
  );
  return $info;
}