You are here

public function FeedsQueryPathParser::configDefaults in Feeds QueryPath Parser 6

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

Define config defaults.

Overrides FeedsConfigurable::configDefaults

1 call to FeedsQueryPathParser::configDefaults()
FeedsQueryPathParser::sourceDefaults in ./FeedsQueryPathParser.inc
Define source defaults.

File

./FeedsQueryPathParser.inc, line 222
Provides the class for FeedsQueryPathParser.

Class

FeedsQueryPathParser
@file

Code

public function configDefaults() {
  return array(
    'context' => '',
    'sources' => array(),
    'attrs' => array(),
    'rawXML' => array(),
    'options' => array(
      'errors' => FALSE,
      'tidy' => FALSE,
      'debug' => array(),
    ),
  );
}