public 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 355
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\Database
Code
public function getUnprefixedTablesMap() { return $this->unprefixedTablesMap; }
Please login to continue.