You are here

interface FeedsExJsonPathParserInterface in Feeds extensible parsers 7

Normalizes various JSONPath implementations.

Hierarchy

Expanded class hierarchy of FeedsExJsonPathParserInterface

All classes that implement FeedsExJsonPathParserInterface

File

src/FeedsExJsonPath.inc, line 158
Contains FeedsExJsonPath.

View source
interface FeedsExJsonPathParserInterface {

  /**
   * Searches an array via JSONPath.
   *
   * @param array $data
   *   The array to search.
   * @param string $expression
   *   The JSONPath expression.
   *
   * @return mixed
   *   The search results.
   */
  public function search(array $data, $expression);

}

Members

Namesort descending Modifiers Type Description Overrides
FeedsExJsonPathParserInterface::search public function Searches an array via JSONPath. 1