protected SqlContentEntityStorage::mapToDataStorageRecord(EntityInterface $entity, $table_name = NULL)
Maps from an entity object to the storage record of the field data.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object.
string $table_name: (optional) The table name to map records to. Defaults to the data table.
Return value
\stdClass The record to store.
File
- core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 1016
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\Sql
Code
1 2 3 4 5 6 7 | protected function mapToDataStorageRecord(EntityInterface $entity , $table_name = NULL) { if (!isset( $table_name )) { $table_name = $this ->dataTable; } $record = $this ->mapToStorageRecord( $entity , $table_name ); return $record ; } |
Please login to continue.