You are here

protected function FeedsExQueryPathHtml::getRawValue in Feeds extensible parsers 7

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

Returns the raw value.

Parameters

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

Return value

string A raw string value.

Overrides FeedsExQueryPathXml::getRawValue

File

src/FeedsExQueryPathHtml.inc, line 29
Contains FeedsExQueryPathHtml.

Class

FeedsExQueryPathHtml
Parses HTML documents with QueryPath.

Code

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