public function EasyRdf_Literal::dumpValue

Return pretty-print view of the literal

Parameters

bool $html Set to true to format the dump using HTML:

string $color The colour of the text:

Return value

string

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal.php, line 311

Class

EasyRdf_Literal
Class that represents an RDF Literal

Code

public function dumpValue($html = true, $color = 'black') {
  return EasyRdf_Utils::dumpLiteralValue($this, $html, $color);
}