public function DatabaseConnection::utf8mb4IsConfigurable

Checks whether utf8mb4 support is configurable in settings.php.

Return value

bool

1 method overrides DatabaseConnection::utf8mb4IsConfigurable()
DatabaseConnection_mysql::utf8mb4IsConfigurable in drupal/includes/database/mysql/database.inc
Checks whether utf8mb4 support is configurable in settings.php.

File

drupal/includes/database/database.inc, line 1345
Core systems for the database layer.

Class

DatabaseConnection
Base Database API class.

Code

public function utf8mb4IsConfigurable() {

  // Since 4 byte UTF-8 is not supported by default, there is nothing to
  // configure.
  return FALSE;
}