You are here

public function RdfMapping::setFieldMapping 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::setFieldMapping()

Sets the mapping config for a field.

Parameters

string $field_name: The name of the field.

array $mapping: The field mapping.

Return value

\Drupal\rdf\Entity\RdfMapping The RdfMapping object.

Overrides RdfMappingInterface::setFieldMapping

File

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

Class

RdfMapping
Config entity for working with RDF mappings.

Namespace

Drupal\rdf\Entity

Code

public function setFieldMapping($field_name, array $mapping = array()) {
  $this->fieldMappings[$field_name] = $mapping;
  return $this;
}