update.php
Same filename in this branch
- 9 core/modules/sqlite/src/Driver/Database/sqlite/Update.php
- 9 core/modules/mysql/src/Driver/Database/mysql/Update.php
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Update.php
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php
- 9 core/modules/pgsql/src/Driver/Database/pgsql/Update.php
- 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
- 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Update.php
- 9 core/assets/scaffold/files/update.php
- 9 core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
- 9 core/lib/Drupal/Core/Database/Query/Update.php
Same filename in other branches
- 7.x update.php
- 8.9.x update.php
- 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php
- 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php
- 8.9.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
- 8.9.x core/assets/scaffold/files/update.php
- 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Update.php
- 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Update.php
- 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
- 8.9.x core/lib/Drupal/Core/Database/Query/Update.php
- 10 update.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Update.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Update.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Update.php
- 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
- 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Update.php
- 10 core/assets/scaffold/files/update.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
- 10 core/lib/Drupal/Core/Database/Query/Update.php
- 11.x update.php
- 11.x core/modules/sqlite/src/Driver/Database/sqlite/Update.php
- 11.x core/modules/mysql/src/Driver/Database/mysql/Update.php
- 11.x core/modules/pgsql/src/Driver/Database/pgsql/Update.php
- 11.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
- 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Update.php
- 11.x core/assets/scaffold/files/update.php
- 11.x core/lib/Drupal/Core/Database/Query/Update.php
The PHP page that handles updating the Drupal installation.
All Drupal code is released under the GNU General Public License. See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
File
View source
<?php
/**
* @file
* The PHP page that handles updating the Drupal installation.
*
* All Drupal code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
*/
use Drupal\Core\Update\UpdateKernel;
use Symfony\Component\HttpFoundation\Request;
$autoloader = (require_once 'autoload.php');
// Disable garbage collection during test runs. Under certain circumstances the
// update path will create so many objects that garbage collection causes
// segmentation faults.
if (drupal_valid_test_ua()) {
gc_collect_cycles();
gc_disable();
}
$kernel = new UpdateKernel('prod', $autoloader, FALSE);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.