You are here

protected function IntColumnHandlerPostgreSQL::getPrefixedTable in Dynamic Entity Reference 8.2

Gets the prefxied table name.

Parameters

string $table: The name of the table.

Return value

string The prefixed table name.

2 calls to IntColumnHandlerPostgreSQL::getPrefixedTable()
IntColumnHandlerPostgreSQL::createTrigger in src/Storage/IntColumnHandlerPostgreSQL.php
Creates the trigger.
IntColumnHandlerPostgreSQL::getFunctionName in src/Storage/IntColumnHandlerPostgreSQL.php
Returns an appropriate plpgsql function name.

File

src/Storage/IntColumnHandlerPostgreSQL.php, line 142

Class

IntColumnHandlerPostgreSQL
PostgreSQL implementation of denormalizing into integer columns.

Namespace

Drupal\dynamic_entity_reference\Storage

Code

protected function getPrefixedTable($table) {
  return trim($this->connection
    ->prefixTables('{' . $table . '}'), '"');
}