Delete.php in Drupal 10
Same filename in this branch
- 10 core/lib/Drupal/Core/Database/Query/Delete.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Delete.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Delete.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Delete.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Delete.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Delete.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Delete.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Delete.php
Same filename and directory in other branches
Namespace
Drupal\Core\Database\Driver\pgsqlFile
core/lib/Drupal/Core/Database/Driver/pgsql/Delete.phpView source
<?php
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\pgsql\Driver\Database\pgsql\Delete as PgsqlDelete;
@trigger_error('\\Drupal\\Core\\Database\\Driver\\pgsql\\Delete 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);
/**
* PostgreSQL implementation of \Drupal\Core\Database\Query\Delete.
*
* @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 Delete extends PgsqlDelete {
}
Classes
Name | Description |
---|---|
Delete Deprecated | PostgreSQL implementation of \Drupal\Core\Database\Query\Delete. |