function Schema::prefixNonTable

Schema::prefixNonTable($table)

Create names for indexes, primary keys and constraints.

This prevents using {} around non-table names like indexes and keys.

File

core/lib/Drupal/Core/Database/Schema.php, line 108

Class

Schema
Provides a base implementation for Database Schema.

Namespace

Drupal\Core\Database

Code

function prefixNonTable($table) {
  $args = func_get_args();
  $info = $this->getPrefixInfo($table);
  $args[0] = $info['table'];
  return implode('_', $args);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Schema.php/function/Schema::prefixNonTable/8.1.x