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
1 2 3 4 | public function setFieldMapping( $field_name , array $mapping = array ()) { $this ->fieldMappings[ $field_name ] = $mapping ; return $this ; } |
Please login to continue.