You are here

public function Connection::escapeAlias in Drupal 8

Same name in this branch
  1. 8 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::escapeAlias()
  2. 8 core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::escapeAlias()
  3. 8 core/lib/Drupal/Core/Database/Driver/mysql/Connection.php \Drupal\Core\Database\Driver\mysql\Connection::escapeAlias()

Escapes an alias name string.

Force all alias names to be strictly alphanumeric-plus-underscore. In contrast to DatabaseConnection::escapeField() / DatabaseConnection::escapeTable(), this doesn't allow the period (".") because that is not allowed in aliases.

Parameters

string $field: An unsanitized alias name.

Return value

string The sanitized alias name.

Overrides Connection::escapeAlias

1 call to Connection::escapeAlias()
Connection::escapeField in core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
Escapes a field name string.

File

core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php, line 258

Class

Connection
PostgreSQL implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\Core\Database\Driver\pgsql

Code

public function escapeAlias($field) {
  $escaped = preg_replace('/[^A-Za-z0-9_]+/', '', $field);
  $escaped = $this
    ->doEscape($escaped);
  return $escaped;
}