You are here

Tasks.php in Drupal 10

Same filename in this branch
  1. 10 core/lib/Drupal/Core/Database/Install/Tasks.php
  2. 10 core/tests/fixtures/database_drivers/custom/corefake/Install/Tasks.php
  3. 10 core/tests/fixtures/database_drivers/custom/fake/Install/Tasks.php
  4. 10 core/tests/fixtures/database_drivers/core/corefake/Install/Tasks.php
  5. 10 core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
  6. 10 core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
  7. 10 core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php
  8. 10 core/modules/sqlite/src/Driver/Database/sqlite/Install/Tasks.php
  9. 10 core/modules/pgsql/src/Driver/Database/pgsql/Install/Tasks.php
  10. 10 core/modules/mysql/src/Driver/Database/mysql/Install/Tasks.php
  11. 10 core/modules/system/tests/modules/database_statement_monitoring_test/src/sqlite/Install/Tasks.php
  12. 10 core/modules/system/tests/modules/database_statement_monitoring_test/src/pgsql/Install/Tasks.php
  13. 10 core/modules/system/tests/modules/database_statement_monitoring_test/src/mysql/Install/Tasks.php
  14. 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefake/Install/Tasks.php
  15. 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Install/Tasks.php
  16. 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Install/Tasks.php
  17. 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Install/Tasks.php
  18. 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Install/Tasks.php
Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
  2. 9 core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php

File

core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
View source
<?php

namespace Drupal\Core\Database\Driver\pgsql\Install;

use Drupal\pgsql\Driver\Database\pgsql\Install\Tasks as PgsqlTasks;
@trigger_error('\\Drupal\\Core\\Database\\Driver\\pgsql\\Install\\Tasks is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL database driver has been moved to the pgsql module. See https://www.drupal.org/node/3129492', E_USER_DEPRECATED);

/**
 * Specifies installation tasks for PostgreSQL databases.
 *
 * @deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL
 *   database driver has been moved to the pgsql module.
 *
 * @see https://www.drupal.org/node/3129492
 */
class Tasks extends PgsqlTasks {

}

Classes

Namesort descending Description
Tasks Deprecated Specifies installation tasks for PostgreSQL databases.