Mercurial > hg > drupalISMI
view relation_processor/relation_processor.module @ 25:5bdcb5805d29
updated openmind-networkx-neo4j conversion with dates, locations and links.
author | casties |
---|---|
date | Thu, 24 Sep 2015 18:17:41 +0200 |
parents | 1c73c660c2f2 |
children |
line wrap: on
line source
<?php /** * Implements hook_feeds_plugins(). */ function relation_processor_feeds_plugins() { $path = drupal_get_path('module', 'relation_processor'); $info = array(); $info['FeedsRelationProcessor'] = array( 'name' => 'Relation processor', 'description' => 'Create and update relations.', 'help' => 'Create and update relations from parsed content. (II)', 'handler' => array( 'parent' => 'FeedsProcessor', 'class' => 'FeedsRelationProcessor', 'file' => 'FeedsRelationProcessor.inc', 'path' => $path, ), ); return $info; }