RdfMapping::setFieldMapping

public RdfMapping::setFieldMapping($field_name, array $mapping = array())

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 122

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;
}
doc_Drupal
2016-10-29 09:36:29
Comments
Leave a Comment

Please login to continue.