function lock_init
Same name in this branch
- 6.x drupal-6.x/includes/lock-install.inc \lock_init()
- 6.x drupal-6.x/includes/lock.inc \lock_init()
Initialize the locking system.
2 calls to lock_init()
- install_main in drupal-6.x/
install.php - The Drupal installation happens in a series of steps. We begin by verifying that the current environment meets our minimum requirements. We then go on to verify that settings.php is properly configured. From there we connect to the configured database…
- _drupal_bootstrap in drupal-6.x/
includes/ bootstrap.inc
Archivo
- drupal-6.x/
includes/ lock-install.inc, line 14 - A stub lock implementation to be used during the installation process when database access is not yet available. Because Drupal's install system should never be running in more than on concurrant request, we can bypass any need for locking.
Código
function lock_init() {
}