You are here

public function ParserBase::configDefaults in Feeds XPath Parser 8

File

lib/Drupal/feeds_xpathparser/ParserBase.php, line 387
Contains \Drupal\feeds_xpathparser\ParserBase.

Class

ParserBase
Base class for the HTML and XML parsers.

Namespace

Drupal\feeds_xpathparser

Code

public function configDefaults() {
  return array(
    'sources' => array(),
    'raw_xml' => array(),
    'context' => '',
    'debug' => array(),
    'errors' => FALSE,
    'tidy' => FALSE,
    'tidy_encoding' => 'UTF8',
    'allow_override' => FALSE,
  );
}