You are here

protected function ParserBase::hasConfigurableContext in Feeds extensible parsers 8

Returns whether or not this parser uses a context query.

Sub-classes can return false here if they don't require a user-configured context query.

Return value

bool True if the parser uses a context query and false if not.

2 calls to ParserBase::hasConfigurableContext()
ParserBase::mappingFormAlter in src/Feeds/Parser/ParserBase.php
Alter mapping form.
ParserBase::mappingFormValidate in src/Feeds/Parser/ParserBase.php
Validate handler for the mapping form.
2 methods override ParserBase::hasConfigurableContext()
JmesPathLinesParser::hasConfigurableContext in src/Feeds/Parser/JmesPathLinesParser.php
Returns whether or not this parser uses a context query.
JsonPathLinesParser::hasConfigurableContext in src/Feeds/Parser/JsonPathLinesParser.php
Returns whether or not this parser uses a context query.

File

src/Feeds/Parser/ParserBase.php, line 201

Class

ParserBase
The Feeds extensible parser.

Namespace

Drupal\feeds_ex\Feeds\Parser

Code

protected function hasConfigurableContext() {
  return TRUE;
}