Index: feeds.api.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/feeds/feeds.api.php,v retrieving revision 1.12 diff -u -p -r1.12 feeds.api.php --- feeds.api.php 8 Jul 2010 17:19:16 -0000 1.12 +++ feeds.api.php 3 Aug 2010 04:32:35 -0000 @@ -195,6 +195,42 @@ function hook_feeds_data_processor_targe } } + /** + * Alter inheritors for user processor. Use this hook to add additional + * inheritors to the user processor. + * + * The inheritor callback takes two arguments, first the $new_user and second + * the $feed_user. The $new_user is the user being created (or updated) and + * $feed_node is the node that the importer is attached to. + */ +function hook_feeds_user_processor_inheritors(&$inheritors) { + $inheritors = array(); + //$inheritors['user'] = array( + // 'name' => t('Inherit author'), + // 'description' => t('Feed item nodes will be authored by the same user as the feed node.'), + // 'callback' => 'feeds_inherit_user', + //); +} + + + /** * @} */