public function Connection::getUnprefixedTablesMap in Drupal 9
Same name and namespace in other branches
- 8 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 552
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function getUnprefixedTablesMap() {
return $this->unprefixedTablesMap;
}