Connection::escapeAlias

public Connection::escapeAlias($field)

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.

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function escapeAlias($field) {
  return preg_replace('/[^A-Za-z0-9_]+/', '', $field);
}
doc_Drupal
2016-10-29 08:55:47
Comments
Leave a Comment

Please login to continue.