Mercurial > hg > rr-repo
annotate index.php @ 11:b0ee71395280
deleted .DS_Store files
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Mon, 28 Oct 2013 16:12:13 +0000 |
parents | ff03f76ab3fe |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 <?php |
danielebarchiesi@0 | 2 |
danielebarchiesi@0 | 3 /** |
danielebarchiesi@0 | 4 * @file |
danielebarchiesi@0 | 5 * The PHP page that serves all page requests on a Drupal installation. |
danielebarchiesi@0 | 6 * |
danielebarchiesi@0 | 7 * The routines here dispatch control to the appropriate handler, which then |
danielebarchiesi@0 | 8 * prints the appropriate page. |
danielebarchiesi@0 | 9 * |
danielebarchiesi@0 | 10 * All Drupal code is released under the GNU General Public License. |
danielebarchiesi@0 | 11 * See COPYRIGHT.txt and LICENSE.txt. |
danielebarchiesi@0 | 12 */ |
danielebarchiesi@0 | 13 |
danielebarchiesi@0 | 14 /** |
danielebarchiesi@0 | 15 * Root directory of Drupal installation. |
danielebarchiesi@0 | 16 */ |
danielebarchiesi@0 | 17 define('DRUPAL_ROOT', getcwd()); |
danielebarchiesi@0 | 18 |
danielebarchiesi@0 | 19 require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; |
danielebarchiesi@0 | 20 drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); |
danielebarchiesi@0 | 21 menu_execute_active_handler(); |