5 * The PHP page that serves all page requests on a Drupal installation.
7 * The routines here dispatch control to the appropriate handler, which then
8 * prints the appropriate page.
10 * All Drupal code is released under the GNU General Public License.
11 * See COPYRIGHT.txt and LICENSE.txt.
15 * Root directory of Drupal installation.
17 define('DRUPAL_ROOT', getcwd());
19 require_once DRUPAL_ROOT .
'/includes/bootstrap.inc';
20 drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL
);
21 menu_execute_active_handler();