You are here

protected function Tables::getTableMapping in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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.

Return value

array|bool The table field mapping for the given table or FALSE if not available.

1 call to Tables::getTableMapping()
Tables::addField in core/lib/Drupal/Core/Entity/Query/Sql/Tables.php
Adds a field to a database query.

File

core/lib/Drupal/Core/Entity/Query/Sql/Tables.php, line 302
Contains \Drupal\Core\Entity\Query\Sql\Tables.

Class

Tables
Adds tables and fields to the SQL entity query.

Namespace

Drupal\Core\Entity\Query\Sql

Code

protected function getTableMapping($table, $entity_type_id) {
  $storage = $this->entityManager
    ->getStorage($entity_type_id);
  if ($storage instanceof SqlEntityStorageInterface) {
    $mapping = $storage
      ->getTableMapping()
      ->getAllColumns($table);
  }
  else {
    return FALSE;
  }
  return array_flip($mapping);
}