2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2001-10-20 18:57:09 +00:00
|
|
|
// $Id$
|
2000-05-18 19:51:59 +00:00
|
|
|
|
2004-08-21 06:42:38 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* The PHP page that serves all page requests on a Drupal installation.
|
|
|
|
*
|
|
|
|
* The routines here dispatch control to the appropriate handler, which then
|
|
|
|
* prints the appropriate page.
|
2007-12-26 08:46:48 +00:00
|
|
|
*
|
|
|
|
* All Drupal code is released under the GNU General Public License.
|
|
|
|
* See COPYRIGHT.txt and LICENSE.txt.
|
2004-08-21 06:42:38 +00:00
|
|
|
*/
|
|
|
|
|
2008-09-20 20:22:25 +00:00
|
|
|
/**
|
|
|
|
* Root directory of Drupal installation.
|
|
|
|
*/
|
2009-02-08 20:27:51 +00:00
|
|
|
define('DRUPAL_ROOT', getcwd());
|
2008-09-20 20:22:25 +00:00
|
|
|
|
|
|
|
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
|
2005-07-23 05:57:27 +00:00
|
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
2009-10-15 14:07:30 +00:00
|
|
|
menu_execute_active_handler();
|