| Commit | Line | Data |
|---|---|---|
| accd5f0c | 1 | <?php |
| 008612ad | 2 | |
| 94e30bf7 DB |
3 | /** |
| 4 | * @file | |
| 5 | * The PHP page that serves all page requests on a Drupal installation. | |
| 6 | * | |
| 7 | * The routines here dispatch control to the appropriate handler, which then | |
| 8 | * prints the appropriate page. | |
| 362cade1 DB |
9 | * |
| 10 | * All Drupal code is released under the GNU General Public License. | |
| 11 | * See COPYRIGHT.txt and LICENSE.txt. | |
| 94e30bf7 DB |
12 | */ |
| 13 | ||
| a3bb66e4 AB |
14 | /** |
| 15 | * Root directory of Drupal installation. | |
| 16 | */ | |
| d802c69a | 17 | define('DRUPAL_ROOT', getcwd()); |
| a3bb66e4 AB |
18 | |
| 19 | require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; | |
| ba166016 | 20 | drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); |
| f42bca3b | 21 | menu_execute_active_handler(); |