function drupal_path_initialize

7.x path.inc drupal_path_initialize()

Initialize the $_GET['q'] variable to the proper normal path.

1 call to drupal_path_initialize()
_drupal_bootstrap_full in drupal-7.x/includes/common.inc

File

drupal-7.x/includes/path.inc, line 15
Functions to handle paths in Drupal, including path aliasing.

Code

function drupal_path_initialize() {
  // Ensure $_GET['q'] is set before calling drupal_normal_path(), to support
  // path caching with hook_url_inbound_alter().
  if (empty($_GET['q'])) {
    $_GET['q'] = variable_get('site_frontpage', 'node');
  }
  $_GET['q'] = drupal_get_normal_path($_GET['q']);
}