index.php 529 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * The PHP page that serves all page requests on a Drupal installation.
  5. *
  6. * The routines here dispatch control to the appropriate handler, which then
  7. * prints the appropriate page.
  8. *
  9. * All Drupal code is released under the GNU General Public License.
  10. * See COPYRIGHT.txt and LICENSE.txt.
  11. */
  12. /**
  13. * Root directory of Drupal installation.
  14. */
  15. define('DRUPAL_ROOT', getcwd());
  16. require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
  17. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  18. menu_execute_active_handler();