Same name and namespace in other branches
  1. 4.7.x includes/path.inc \drupal_is_front_page()
  2. 5.x includes/path.inc \drupal_is_front_page()
  3. 7.x includes/path.inc \drupal_is_front_page()

Check if the current page is the front page.

Return value

Boolean value: TRUE if the current page is the front page; FALSE if otherwise.

1 call to drupal_is_front_page()
template_preprocess in includes/theme.inc
Adds a default set of helper variables for preprocess functions and templates. This comes in before any other preprocess function which makes it possible to be used in default theme implementations (non-overriden theme functions).

File

includes/path.inc, line 221
Functions to handle paths in Drupal, including path aliasing.

Code

function drupal_is_front_page() {
  static $is_front_page;
  if (!isset($is_front_page)) {

    // As drupal_init_path updates $_GET['q'] with the 'site_frontpage' path,
    // we can check it against the 'site_frontpage' variable.
    $is_front_page = $_GET['q'] == drupal_get_normal_path(variable_get('site_frontpage', 'node'));
  }
  return $is_front_page;
}