protected function Tables::getTableMapping in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Query/Sql/Tables.php \Drupal\Core\Entity\Query\Sql\Tables::getTableMapping()
- 9 core/lib/Drupal/Core/Entity/Query/Sql/Tables.php \Drupal\Core\Entity\Query\Sql\Tables::getTableMapping()
Gets the schema for the given table.
Parameters
string $table: The table name.
string $entity_type_id: The entity type ID.
Return value
array|false An associative array of table field mapping for the given table, keyed by columns name and values are just incrementing integers. If the table mapping is not available, FALSE is returned.
File
- core/
lib/ Drupal/ Core/ Entity/ Query/ Sql/ Tables.php, line 465
Class
- Tables
- Adds tables and fields to the SQL entity query.
Namespace
Drupal\Core\Entity\Query\SqlCode
protected function getTableMapping($table, $entity_type_id) {
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
if ($storage instanceof SqlEntityStorageInterface) {
$mapping = $storage
->getTableMapping()
->getAllColumns($table);
}
else {
return FALSE;
}
return array_flip($mapping);
}