| Versionen | |
|---|---|
| drupal6 – drupal7 | drupal_is_front_page() |
Check if the current page is the front page.
Boolean value: TRUE if the current page is the front page; FALSE if otherwise.
includes/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen