9 calls to drupal_bootstrap()
- cron.php in drupal-6.x/cron.php
- Handles incoming requests to fire off regularly-scheduled tasks (cron jobs).
- drupal_install_system in drupal-6.x/includes/install.inc
- Callback to install the system module.
- index.php in drupal-6.x/index.php
- The PHP page that serves all page requests on a Drupal installation.
- init_theme in drupal-6.x/includes/theme.inc
- Initialize the theme system by loading the theme.
- 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…
- install_tasks in drupal-6.x/install.php
- Tasks performed after the database is initialized.
- statistics_exit in drupal-6.x/modules/statistics/statistics.module
- Implementation of hook_exit().
- update.php in drupal-6.x/update.php
- Administrative page for handling updates from one Drupal version to another.
- xmlrpc.php in drupal-6.x/xmlrpc.php
- PHP page for handling incoming XML-RPC requests from clients.