protected function EasyRdf_Serialiser::addPrefix

Keep track of the prefixes used while serialising @ignore

4 calls to EasyRdf_Serialiser::addPrefix()

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Serialiser.php, line 54

Class

EasyRdf_Serialiser
Parent class for the EasyRdf serialiser

Code

protected function addPrefix($qname) {
  list($prefix) = explode(':', $qname);
  $this->prefixes[$prefix] = true;
}