update.php

Same filename in this branch
  1. 10 core/modules/sqlite/src/Driver/Database/sqlite/Update.php
  2. 10 core/modules/mysql/src/Driver/Database/mysql/Update.php
  3. 10 core/modules/pgsql/src/Driver/Database/pgsql/Update.php
  4. 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
  5. 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Update.php
  6. 10 core/assets/scaffold/files/update.php
  7. 10 core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
  8. 10 core/lib/Drupal/Core/Database/Query/Update.php
Same filename and directory in other branches
  1. 7.x update.php
  2. 9 update.php
  3. 9 core/modules/sqlite/src/Driver/Database/sqlite/Update.php
  4. 9 core/modules/mysql/src/Driver/Database/mysql/Update.php
  5. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php
  6. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Update.php
  7. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php
  8. 9 core/modules/pgsql/src/Driver/Database/pgsql/Update.php
  9. 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
  10. 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Update.php
  11. 9 core/assets/scaffold/files/update.php
  12. 9 core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
  13. 9 core/lib/Drupal/Core/Database/Query/Update.php
  14. 8.9.x update.php
  15. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php
  16. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php
  17. 8.9.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
  18. 8.9.x core/assets/scaffold/files/update.php
  19. 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Update.php
  20. 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Update.php
  21. 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
  22. 8.9.x core/lib/Drupal/Core/Database/Query/Update.php
  23. 11.x update.php
  24. 11.x core/modules/sqlite/src/Driver/Database/sqlite/Update.php
  25. 11.x core/modules/mysql/src/Driver/Database/mysql/Update.php
  26. 11.x core/modules/pgsql/src/Driver/Database/pgsql/Update.php
  27. 11.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
  28. 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Update.php
  29. 11.x core/assets/scaffold/files/update.php
  30. 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

./update.php

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.