You are here

protected function FeedsExJmesPathLines::hasConfigurableContext in Feeds extensible parsers 7.2

Same name and namespace in other branches
  1. 7 src/FeedsExJmesPathLines.inc \FeedsExJmesPathLines::hasConfigurableContext()

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.

Overrides FeedsExBase::hasConfigurableContext

File

src/FeedsExJmesPathLines.inc, line 30
Contains FeedsExJmesPathLines.

Class

FeedsExJmesPathLines
Parses JSON Lines documents with JMESPath.

Code

protected function hasConfigurableContext() {
  return FALSE;
}