You are here

protected function FeedsExQueryPathXml::getRawValue in Feeds extensible parsers 7

Same name and namespace in other branches
  1. 7.2 src/FeedsExQueryPathXml.inc \FeedsExQueryPathXml::getRawValue()

Returns the raw value.

Parameters

QueryPath $node: The QueryPath object to return a raw value for.

Return value

string A raw string value.

1 call to FeedsExQueryPathXml::getRawValue()
FeedsExQueryPathXml::executeSourceExpression in src/FeedsExQueryPathXml.inc
Executes a single source expression.
1 method overrides FeedsExQueryPathXml::getRawValue()
FeedsExQueryPathHtml::getRawValue in src/FeedsExQueryPathHtml.inc
Returns the raw value.

File

src/FeedsExQueryPathXml.inc, line 96
Contains FeedsExXml.

Class

FeedsExQueryPathXml
Parses XML documents with QueryPath.

Code

protected function getRawValue(QueryPath $node) {
  return $node
    ->xml();
}