public function DatabaseConnection::utf8mb4IsConfigurable in Drupal 7
Checks whether utf8mb4 support is configurable in settings.php.
Return value
bool
1 method overrides DatabaseConnection::utf8mb4IsConfigurable()
- DatabaseConnection_mysql::utf8mb4IsConfigurable in includes/
database/ mysql/ database.inc - Checks whether utf8mb4 support is configurable in settings.php.
File
- includes/
database/ database.inc, line 1392 - 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;
}