You are here

public function RdfMapping::getBundleMapping in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/rdf/src/Entity/RdfMapping.php \Drupal\rdf\Entity\RdfMapping::getBundleMapping()

Gets the mapping config for the bundle-level data.

This function returns the bundle mapping as stored in config, which may contain CURIE arrays. If the mapping is needed for output in a serialization format, such as RDFa, then getPreparedBundleMapping() should be used instead.

Return value

array The bundle mapping, or an empty array if there is no mapping.

Overrides RdfMappingInterface::getBundleMapping

File

core/modules/rdf/src/Entity/RdfMapping.php, line 80
Contains \Drupal\rdf\Entity\RdfMapping.

Class

RdfMapping
Config entity for working with RDF mappings.

Namespace

Drupal\rdf\Entity

Code

public function getBundleMapping() {
  if (!empty($this->types)) {
    return array(
      'types' => $this->types,
    );
  }
  return array();
}