public DefaultTableMapping::allowsSharedTableStorage(FieldStorageDefinitionInterface $storage_definition)
Checks whether the given field can be stored in a shared table.
Parameters
\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field storage definition.
Return value
bool TRUE if the field can be stored in a dedicated table, FALSE otherwise.
File
- core/lib/Drupal/Core/Entity/Sql/DefaultTableMapping.php, line 274
Class
- DefaultTableMapping
- Defines a default table mapping class.
Namespace
Drupal\Core\Entity\Sql
Code
1 2 3 | public function allowsSharedTableStorage(FieldStorageDefinitionInterface $storage_definition ) { return ! $storage_definition ->hasCustomStorage() && $storage_definition ->isBaseField() && ! $storage_definition ->isMultiple(); } |
Please login to continue.