protected function DatabaseSchema_mysql::getPrefixInfo

protected DatabaseSchema_mysql::getPrefixInfo($table = 'default', $add_prefix = TRUE)

Get information about the table and database name from the prefix.

Return value

A keyed array with information about the database, table name and prefix.

Overrides DatabaseSchema::getPrefixInfo

File

includes/database/mysql/schema.inc, line 32
Database schema code for MySQL database servers.

Class

DatabaseSchema_mysql

Code

protected function getPrefixInfo($table = 'default', $add_prefix = TRUE) {
  $info = array('prefix' => $this->connection->tablePrefix($table));
  if ($add_prefix) {
    $table = $info['prefix'] . $table;
  }
  if (($pos = strpos($table, '.')) !== FALSE) {
    $info['database'] = substr($table, 0, $pos);
    $info['table'] = substr($table, ++$pos);
  }
  else {
    $db_info = $this->connection->getConnectionOptions();
    $info['database'] = $db_info['database'];
    $info['table'] = $table;
  }
  return $info;
}

© 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/includes!database!mysql!schema.inc/function/DatabaseSchema_mysql::getPrefixInfo/7.x