You are here

protected function EasyRdf_Parser_RdfXml::cdataHandler in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php \EasyRdf_Parser_RdfXml::cdataHandler()

@ignore

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php, line 249

Class

EasyRdf_Parser_RdfXml
A pure-php class to parse RDF/XML.

Code

protected function cdataHandler($p, $d) {
  switch ($this->state) {
    case 4:
      return $this
        ->cdataState4($d);
    case 6:
      return $this
        ->cdataState6($d);
    default:
      return false;
  }
}