Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Tasks.php

function Tasks::checkEncoding

Check encoding is UTF8.

File

core/modules/pgsql/src/Driver/Database/pgsql/Install/Tasks.php, line 128

Class

Tasks
Specifies installation tasks for PostgreSQL databases.

Namespace

Drupal\pgsql\Driver\Database\pgsql\Install

Code

protected function checkEncoding() {
    try {
        if (Database::getConnection()->query('SHOW server_encoding')
            ->fetchField() == 'UTF8') {
            $this->pass(t('Database is encoded in UTF-8'));
        }
        else {
            $this->fail(t('The %driver database must use %encoding encoding to work with Drupal. Recreate the database with %encoding encoding. See <a href="INSTALL.pgsql.txt">INSTALL.pgsql.txt</a> for more details.', [
                '%encoding' => 'UTF8',
                '%driver' => $this->name(),
            ]));
        }
    } catch (\Exception) {
        $this->fail(t('Drupal could not determine the encoding of the database was set to UTF-8'));
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal