Search for update

  1. Search 7.x for update
  2. Search 9.5.x for update
  3. Search 10.3.x for update
  4. Search 11.x for update
  5. Other projects

Exact matches

These are exact matches according to your search
Title Object type File name Summary
Update class core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php MySQL test implementation of \Drupal\Core\Database\Query\Update.
Update class core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php PostgreSQL implementation of \Drupal\Core\Database\Query\Update.
Update class core/lib/Drupal/Core/Database/Driver/sqlite/Update.php SQLite implementation of \Drupal\Core\Database\Query\Update.
Update class core/lib/Drupal/Core/Database/Driver/mysql/Update.php MySQL implementation of \Drupal\Core\Database\Query\Update.
Update class core/lib/Drupal/Core/Database/Driver/pgsql/Update.php PostgreSQL implementation of \Drupal\Core\Database\Query\Update.
Update class core/lib/Drupal/Core/Database/Query/Update.php General class for an abstracted UPDATE operation.

All search results

Title Object type File name Summary
UpdateRegistryFactory.php file core/lib/Drupal/Core/Update/UpdateRegistryFactory.php
UpdateRegistryFactory::create function core/lib/Drupal/Core/Update/UpdateRegistryFactory.php Creates a new UpdateRegistry instance.
UpdateRegistryTest class core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @coversDefaultClass \Drupal\Core\Update\UpdateRegistry
@group Update
UpdateRegistryTest.php file core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php
UpdateRegistryTest::setUp function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php
UpdateRegistryTest::setupBasicModules function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php Sets up some modules with some update functions.
UpdateRegistryTest::testFilterOutInvokedUpdatesByModule function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::filterOutInvokedUpdatesByModule
UpdateRegistryTest::testGetModuleUpdateFunctions function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getModuleUpdateFunctions
UpdateRegistryTest::testGetPendingUpdateFunctionsExistingUpdates function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getPendingUpdateFunctions
UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getPendingUpdateFunctions
UpdateRegistryTest::testGetPendingUpdateFunctionsWithLoadedModulesButNotEnabled function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getPendingUpdateFunctions
UpdateRegistryTest::testGetPendingUpdateInformation function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getPendingUpdateInformation
UpdateRegistryTest::testGetPendingUpdateInformationWithExistingUpdates function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getPendingUpdateInformation
UpdateRegistryTest::testGetPendingUpdateInformationWithRemovedUpdates function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::getPendingUpdateInformation
UpdateRegistryTest::testRegisterInvokedUpdatesWithExistingUpdates function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::registerInvokedUpdates
UpdateRegistryTest::testRegisterInvokedUpdatesWithMultiple function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::registerInvokedUpdates
UpdateRegistryTest::testRegisterInvokedUpdatesWithoutExistingUpdates function core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php @covers ::registerInvokedUpdates
UpdateRemovedPostUpdateTest class core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php Tests hook_removed_post_updates().
UpdateRemovedPostUpdateTest.php file core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
UpdateRemovedPostUpdateTest::$defaultTheme property core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php The theme to install as the default for testing.
UpdateRemovedPostUpdateTest::setUp function core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php
UpdateRemovedPostUpdateTest::testRemovedPostUpdate function core/modules/system/tests/src/Functional/UpdateSystem/UpdateRemovedPostUpdateTest.php Tests hook_post_update_NAME().
UpdateReportTest class core/modules/update/tests/src/Kernel/UpdateReportTest.php Tests update report functionality.
UpdateReportTest.php file core/modules/update/tests/src/Kernel/UpdateReportTest.php
UpdateReportTest::$modules property core/modules/update/tests/src/Kernel/UpdateReportTest.php Modules to enable.
UpdateReportTest::providerTemplatePreprocessUpdateReport function core/modules/update/tests/src/Kernel/UpdateReportTest.php Provides data for testTemplatePreprocessUpdateReport().
UpdateReportTest::testTemplatePreprocessUpdateReport function core/modules/update/tests/src/Kernel/UpdateReportTest.php @dataProvider providerTemplatePreprocessUpdateReport
UpdaterException class core/lib/Drupal/Core/Updater/UpdaterException.php Defines a Exception class for the Drupal\Core\Updater\Updater class
hierarchy.
UpdaterException.php file core/lib/Drupal/Core/Updater/UpdaterException.php
UpdaterFileTransferException class core/lib/Drupal/Core/Updater/UpdaterFileTransferException.php Defines a child class of Drupal\Core\Updater\UpdaterException that indicates
a Drupal\Core\FileTransfer\FileTransfer exception.
UpdaterFileTransferException.php file core/lib/Drupal/Core/Updater/UpdaterFileTransferException.php
UpdaterInterface interface core/lib/Drupal/Core/Updater/UpdaterInterface.php Defines an interface for a class which can update a Drupal project.
UpdaterInterface.php file core/lib/Drupal/Core/Updater/UpdaterInterface.php
UpdaterInterface::canUpdateDirectory function core/lib/Drupal/Core/Updater/UpdaterInterface.php Determines if the Updater can handle the project provided in $directory.
UpdaterInterface::getInstallDirectory function core/lib/Drupal/Core/Updater/UpdaterInterface.php Returns the path to the default install location for the current project.
UpdaterInterface::getProjectName function core/lib/Drupal/Core/Updater/UpdaterInterface.php Returns the system name of the project.
UpdaterInterface::getRootDirectoryRelativePath function core/lib/Drupal/Core/Updater/UpdaterInterface.php Returns the name of the root directory under which projects will be copied.
UpdaterInterface::isInstalled function core/lib/Drupal/Core/Updater/UpdaterInterface.php Checks if the project is installed.
UpdaterInterface::postInstall function core/lib/Drupal/Core/Updater/UpdaterInterface.php Actions to run after an install has occurred.
UpdaterInterface::postUpdate function core/lib/Drupal/Core/Updater/UpdaterInterface.php Actions to run after an update has occurred.
UpdateRootFactory class core/modules/update/src/UpdateRootFactory.php Gets the root path used by the Update Manager to install or update projects.
UpdateRootFactory.php file core/modules/update/src/UpdateRootFactory.php
UpdateRootFactory::$drupalKernel property core/modules/update/src/UpdateRootFactory.php The Drupal kernel.
UpdateRootFactory::$requestStack property core/modules/update/src/UpdateRootFactory.php The request stack.
UpdateRootFactory::get function core/modules/update/src/UpdateRootFactory.php Gets the root path under which projects are installed or updated.
UpdateRootFactory::__construct function core/modules/update/src/UpdateRootFactory.php Constructs an UpdateRootFactory instance.
UpdaterTest class core/tests/Drupal/KernelTests/Core/Updater/UpdaterTest.php Tests InfoParser class and exception.
UpdaterTest.php file core/tests/Drupal/KernelTests/Core/Updater/UpdaterTest.php
UpdaterTest::testGetProjectTitleWithChild function core/tests/Drupal/KernelTests/Core/Updater/UpdaterTest.php Tests project and child project showing correct title.
UpdateSchemaTest class core/modules/system/tests/src/Functional/UpdateSystem/UpdateSchemaTest.php Tests that update hooks are properly run.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.