You are here

public function Connection::getUnprefixedTablesMap in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::getUnprefixedTablesMap()

Gets a list of individually prefixed table names.

Return value

array An array of un-prefixed table names, keyed by their fully qualified table names (i.e. prefix + table_name).

File

core/lib/Drupal/Core/Database/Connection.php, line 371

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function getUnprefixedTablesMap() {
  return $this->unprefixedTablesMap;
}