function log_feeds_plugins in Log entity 7
Implements hook_feed_plugins().
File
- ./
log.module, line 1203 - Log - A general purpose record keeping system.
Code
function log_feeds_plugins() {
$info = array();
$info['LogProcessor'] = array(
'name' => 'Log processor',
'description' => 'Create and update logs.',
'help' => 'Create and update logs from parsed content.',
'handler' => array(
'parent' => 'FeedsProcessor',
'class' => 'LogProcessor',
'file' => 'LogProcessor.inc',
'path' => drupal_get_path('module', 'log') . '/includes/feeds/plugins',
),
);
return $info;
}