You are here

public function FeedsCommentProcessor::configDefaults in Feeds Comment Processor 6

Same name and namespace in other branches
  1. 7 FeedsCommentProcessor.inc \FeedsCommentProcessor::configDefaults()

Override parent::configDefaults().

Overrides FeedsProcessor::configDefaults

File

./FeedsCommentProcessor.inc, line 155
Class definition of FeedsCommentProcessor.

Class

FeedsCommentProcessor
Creates comments from feed items.

Code

public function configDefaults() {
  return array(
    'input_format' => FILTER_FORMAT_DEFAULT,
    'update_existing' => FEEDS_SKIP_EXISTING,
    'expire' => FEEDS_EXPIRE_NEVER,
    'mappings' => array(),
    'author' => 0,
    'authorize' => 0,
  );
}